{
  "nbformat": 4,
  "nbformat_minor": 0,
  "metadata": {
    "colab": {
      "provenance": [],
      "toc_visible": true,
      "collapsed_sections": [
        "3RGdjQnN7J8A"
      ]
    },
    "kernelspec": {
      "name": "python3",
      "display_name": "Python 3"
    },
    "language_info": {
      "name": "python"
    }
  },
  "cells": [
    {
      "cell_type": "markdown",
      "source": [
        "# **Install `dlt`⏳**"
      ],
      "metadata": {
        "id": "3RGdjQnN7J8A"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "What is dlt?\n",
        "\n",
        "* dlt is an open-source library that you can add to your Python scripts to load data from various and often messy data sources into well-structured, live datasets.\n",
        "* You can install it using pip and there's no need to start any backends or containers. You can simply import dlt in your Python script and write a simple pipeline to load data from sources like APIs, databases, files, etc. into a destination of your choice.\n",
        "\n",
        "Here are a few reasons why you should use dlt:\n",
        "\n",
        "* Automated maintenance: With schema inference and evolution and alerts, and with short declarative code, maintenance becomes simple.\n",
        "* Run it where Python runs: You can use dlt on Airflow, serverless functions, notebooks. It doesn't require external APIs, backends or containers, and scales on both micro and large infrastructures.\n",
        "* User-friendly, declarative interface: dlt provides a user-friendly interface that removes knowledge obstacles for beginners while empowering senior professionals.\n",
        "\n",
        "Benefits: As a data engineer, dlt offers several benefits:\n",
        "\n",
        "* Efficient Data Extraction and Loading: dlt simplifies the process of extracting and loading data. It allows you to decorate your data-producing functions with loading or incremental extraction metadata, enabling dlt to extract and load data according to your custom logic. This is particularly useful when dealing with large datasets, as dlt supports scalability through iterators, chunking, and parallelization. Read more\n",
        "\n",
        "* Automated Schema Management: dlt automatically infers a schema from data and loads the data to the destination. It can easily adapt and structure data as it evolves, reducing the time spent on maintenance and development. This ensures data consistency and quality. Read more\n",
        "* Data Governance Support: dlt pipelines offer robust governance support through pipeline metadata utilization, schema enforcement and curation, and schema change alerts. This promotes data consistency, traceability, and control throughout the data processing lifecycle. Read more\n",
        "\n",
        "* Flexibility and Scalability: dlt can be used on Airflow, serverless functions, notebooks, and scales on both micro and large infrastructures. It also offers several mechanisms and configuration options to scale up and fine-tune pipelines. Read more\n",
        "\n",
        "* Post-Loading Transformations: dlt provides several options for transformations after loading the data, including using dbt, the dlt SQL client, or Pandas. This allows you to shape and manipulate the data before or after loading it, allowing you to meet specific requirements and ensure data quality and consistency. Read more\n",
        "\n"
      ],
      "metadata": {
        "id": "Pai77xXpOyhU"
      }
    },
    {
      "cell_type": "code",
      "execution_count": null,
      "metadata": {
        "id": "7UvUQO__kgUP"
      },
      "outputs": [],
      "source": [
        "%%capture\n",
        "!pip install dlt[duckdb] # Install dlt with all the necessary DuckDB dependencies"
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "# Part 1: Data Extraction\n"
      ],
      "metadata": {
        "id": "QYweO0LGOQjZ"
      }
    },
    {
      "cell_type": "markdown",
      "source": [],
      "metadata": {
        "id": "Awoh5o-Yo_Ve"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Example 1: Extracting API data with a generator\n",
        "\n",
        "Premise:\n",
        "\n",
        "For this example, we created a simple http api that returns json \"page by page\",  1000 records per page.\n",
        "\n",
        "It accepts a parameter called `page`, representing the page number.\n",
        "If we request a larger page number than there is data, we get an empty response.\n",
        "\n",
        "To get the pages, we write a loop that asks for pages starting from 1 and increasing, until we receive an empty page.\n",
        "\n",
        "As we do not know ahead of time how many pages have data and if they fit in memory, yielding the data so it can be handled page by page scales better than first collecting all pages in memory and then returning them."
      ],
      "metadata": {
        "id": "UqFgA2AipT-f"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import requests\n",
        "\n",
        "\n",
        "\n",
        "BASE_API_URL = \"https://us-central1-dlthub-analytics.cloudfunctions.net/data_engineering_zoomcamp_api\"\n",
        "\n",
        "# I call this a paginated getter\n",
        "# as it's a function that gets data\n",
        "# and also paginates until there is no more data\n",
        "# by yielding pages, we \"microbatch\", which speeds up downstream processing\n",
        "\n",
        "def paginated_getter():\n",
        "    page_number = 1\n",
        "\n",
        "    while True:\n",
        "        # Set the query parameters\n",
        "        params = {'page': page_number}\n",
        "\n",
        "        # Make the GET request to the API\n",
        "        response = requests.get(BASE_API_URL, params=params)\n",
        "        response.raise_for_status()  # Raise an HTTPError for bad responses\n",
        "        page_json = response.json()\n",
        "        print(f'got page number {page_number} with {len(page_json)} records')\n",
        "\n",
        "        # if the page has no records, stop iterating\n",
        "        if page_json:\n",
        "            yield page_json\n",
        "            page_number += 1\n",
        "        else:\n",
        "            # No more data, break the loop\n",
        "            break\n",
        "\n",
        "\n",
        "if __name__ == '__main__':\n",
        "    # Use the generator to iterate over pages\n",
        "    for page_data in paginated_getter():\n",
        "        # Process each page as needed\n",
        "        print(page_data)\n"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "1zBFy18_Sa6d",
        "outputId": "46a21b1c-eb8a-46f9-f323-c59a5e0b4228"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "got page number 1 with 1000 records\n",
            "[{'End_Lat': 40.742963, 'End_Lon': -73.980072, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.641525, 'Start_Lon': -73.787442, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 17.52, 'Trip_Dropoff_DateTime': '2009-06-14 23:48:00', 'Trip_Pickup_DateTime': '2009-06-14 23:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740187, 'End_Lon': -74.005698, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722065, 'Start_Lon': -74.009767, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-18 17:43:00', 'Trip_Pickup_DateTime': '2009-06-18 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718043, 'End_Lon': -74.004745, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761945, 'Start_Lon': -73.983038, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-10 18:27:00', 'Trip_Pickup_DateTime': '2009-06-10 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739637, 'End_Lon': -73.985233, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749802, 'Start_Lon': -73.992247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-14 23:58:00', 'Trip_Pickup_DateTime': '2009-06-14 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730032, 'End_Lon': -73.852693, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776825, 'Start_Lon': -73.949233, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85, 'Trip_Distance': 11.09, 'Trip_Dropoff_DateTime': '2009-06-13 13:23:00', 'Trip_Pickup_DateTime': '2009-06-13 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777537, 'End_Lon': -73.97686, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790582, 'Start_Lon': -73.953652, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-10 19:52:00', 'Trip_Pickup_DateTime': '2009-06-10 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770277, 'End_Lon': -73.962125, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767147, 'Start_Lon': -73.966408, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.2, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-10 20:09:00', 'Trip_Pickup_DateTime': '2009-06-10 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774043, 'End_Lon': -73.951465, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76175, 'Start_Lon': -73.977773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-14 21:08:00', 'Trip_Pickup_DateTime': '2009-06-14 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777985, 'End_Lon': -73.943683, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766355, 'Start_Lon': -73.959832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-14 12:56:00', 'Trip_Pickup_DateTime': '2009-06-14 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720052, 'End_Lon': -74.009823, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751327, 'Start_Lon': -73.987588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-10 18:13:00', 'Trip_Pickup_DateTime': '2009-06-10 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758588, 'End_Lon': -73.981827, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764112, 'Start_Lon': -73.98861, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-14 11:27:00', 'Trip_Pickup_DateTime': '2009-06-14 11:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727343, 'End_Lon': -73.993425, 'Fare_Amt': 2.5, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727343, 'Start_Lon': -73.993425, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-13 19:17:00', 'Trip_Pickup_DateTime': '2009-06-13 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763403, 'End_Lon': -73.982693, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763875, 'Start_Lon': -73.982592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.05, 'Trip_Dropoff_DateTime': '2009-06-10 19:39:00', 'Trip_Pickup_DateTime': '2009-06-10 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.881595, 'End_Lon': -73.864513, 'Fare_Amt': 33.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759188, 'Start_Lon': -73.992023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.8, 'Trip_Distance': 14.86, 'Trip_Dropoff_DateTime': '2009-06-14 03:00:00', 'Trip_Pickup_DateTime': '2009-06-14 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741075, 'End_Lon': -73.986537, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752078, 'Start_Lon': -73.9786, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-16 12:59:00', 'Trip_Pickup_DateTime': '2009-06-16 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728683, 'End_Lon': -73.981595, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75907, 'Start_Lon': -73.984905, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-16 12:58:00', 'Trip_Pickup_DateTime': '2009-06-16 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745173, 'End_Lon': -73.998107, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76032, 'Start_Lon': -73.964637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-15 20:18:00', 'Trip_Pickup_DateTime': '2009-06-15 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779377, 'End_Lon': -73.987643, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761615, 'Start_Lon': -73.966648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-16 12:59:00', 'Trip_Pickup_DateTime': '2009-06-16 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761275, 'End_Lon': -73.972752, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752203, 'Start_Lon': -73.97372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-10 18:10:00', 'Trip_Pickup_DateTime': '2009-06-10 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749855, 'End_Lon': -73.993482, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754173, 'Start_Lon': -73.993775, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-14 17:58:00', 'Trip_Pickup_DateTime': '2009-06-14 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741707, 'End_Lon': -74.004725, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74109, 'Start_Lon': -73.99796, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-14 11:19:00', 'Trip_Pickup_DateTime': '2009-06-14 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761607, 'End_Lon': -73.969057, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754082, 'Start_Lon': -73.96608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-18 17:11:00', 'Trip_Pickup_DateTime': '2009-06-18 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7641, 'End_Lon': -73.98259, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742647, 'Start_Lon': -73.993013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-14 19:09:00', 'Trip_Pickup_DateTime': '2009-06-14 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772295, 'End_Lon': -73.96665, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769087, 'Start_Lon': -73.965202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-15 19:19:00', 'Trip_Pickup_DateTime': '2009-06-15 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756328, 'End_Lon': -73.964167, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750137, 'Start_Lon': -73.99092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-10 19:28:00', 'Trip_Pickup_DateTime': '2009-06-10 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739487, 'End_Lon': -73.999645, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752395, 'Start_Lon': -74.004405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-10 20:09:00', 'Trip_Pickup_DateTime': '2009-06-10 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714525, 'End_Lon': -73.997617, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72343, 'Start_Lon': -74.007843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-12 01:17:00', 'Trip_Pickup_DateTime': '2009-06-12 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747393, 'End_Lon': -74.003257, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751342, 'Start_Lon': -73.993282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-16 12:16:00', 'Trip_Pickup_DateTime': '2009-06-16 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736473, 'End_Lon': -73.978778, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71557, 'Start_Lon': -74.01102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-11 22:40:00', 'Trip_Pickup_DateTime': '2009-06-11 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759115, 'End_Lon': -73.97897, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756065, 'Start_Lon': -73.9911, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-11 22:51:00', 'Trip_Pickup_DateTime': '2009-06-11 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758668, 'End_Lon': -73.990978, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758737, 'Start_Lon': -73.919247, 'Tip_Amt': 3.92, 'Tolls_Amt': 0.0, 'Total_Amt': 19.62, 'Trip_Distance': 5.04, 'Trip_Dropoff_DateTime': '2009-06-14 14:48:00', 'Trip_Pickup_DateTime': '2009-06-14 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717167, 'End_Lon': -73.99879, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719118, 'Start_Lon': -74.008793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-11 23:10:00', 'Trip_Pickup_DateTime': '2009-06-11 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728728, 'End_Lon': -74.007225, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75745, 'Start_Lon': -73.985397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-18 16:21:00', 'Trip_Pickup_DateTime': '2009-06-18 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752195, 'End_Lon': -73.977895, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752195, 'Start_Lon': -73.977895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-10 18:49:00', 'Trip_Pickup_DateTime': '2009-06-10 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763517, 'End_Lon': -73.965395, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75727, 'Start_Lon': -73.97007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-18 16:17:00', 'Trip_Pickup_DateTime': '2009-06-18 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.64393, 'End_Lon': -73.782998, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758123, 'Start_Lon': -73.989907, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 50.0, 'Trip_Distance': 16.91, 'Trip_Dropoff_DateTime': '2009-06-18 16:24:00', 'Trip_Pickup_DateTime': '2009-06-18 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731338, 'End_Lon': -74.005428, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744898, 'Start_Lon': -73.980695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-18 15:18:00', 'Trip_Pickup_DateTime': '2009-06-18 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716315, 'End_Lon': -74.012675, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7299, 'Start_Lon': -74.004068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-10 18:19:00', 'Trip_Pickup_DateTime': '2009-06-10 18:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74886, 'End_Lon': -73.988012, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728555, 'Start_Lon': -73.999718, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-12 01:28:00', 'Trip_Pickup_DateTime': '2009-06-12 01:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7801, 'End_Lon': -73.950063, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78218, 'Start_Lon': -73.957393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-10 18:12:00', 'Trip_Pickup_DateTime': '2009-06-10 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805542, 'End_Lon': -73.961878, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757243, 'Start_Lon': -73.969688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-15 19:23:00', 'Trip_Pickup_DateTime': '2009-06-15 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752172, 'End_Lon': -73.971932, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755125, 'Start_Lon': -73.983062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-12 01:51:00', 'Trip_Pickup_DateTime': '2009-06-12 01:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.687622, 'End_Lon': -73.95763, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.693903, 'Start_Lon': -73.992148, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-12 00:56:00', 'Trip_Pickup_DateTime': '2009-06-12 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766405, 'End_Lon': -73.9886, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750982, 'Start_Lon': -73.991153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-16 11:37:00', 'Trip_Pickup_DateTime': '2009-06-16 11:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76286, 'End_Lon': -73.984875, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71895, 'Start_Lon': -74.008722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-14 01:09:00', 'Trip_Pickup_DateTime': '2009-06-14 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782977, 'End_Lon': -73.97378, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751155, 'Start_Lon': -73.9943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-14 15:29:00', 'Trip_Pickup_DateTime': '2009-06-14 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768777, 'End_Lon': -73.967463, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77084, 'Start_Lon': -73.9823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-16 11:33:00', 'Trip_Pickup_DateTime': '2009-06-16 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716892, 'End_Lon': -74.01236, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762633, 'Start_Lon': -73.970215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.9, 'Trip_Distance': 7.28, 'Trip_Dropoff_DateTime': '2009-06-15 19:42:00', 'Trip_Pickup_DateTime': '2009-06-15 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757157, 'End_Lon': -73.98138, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760952, 'Start_Lon': -73.989045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-18 15:39:00', 'Trip_Pickup_DateTime': '2009-06-18 15:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761542, 'End_Lon': -73.982648, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780972, 'Start_Lon': -73.972577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-18 15:20:00', 'Trip_Pickup_DateTime': '2009-06-18 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754867, 'End_Lon': -73.980448, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646228, 'Start_Lon': -73.786898, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.4, 'Trip_Dropoff_DateTime': '2009-06-18 15:23:00', 'Trip_Pickup_DateTime': '2009-06-18 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720128, 'End_Lon': -74.007968, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7413, 'Start_Lon': -73.993145, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-11 21:25:00', 'Trip_Pickup_DateTime': '2009-06-11 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764333, 'End_Lon': -73.947417, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741185, 'Start_Lon': -73.98139, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.73, 'Trip_Dropoff_DateTime': '2009-06-11 21:37:00', 'Trip_Pickup_DateTime': '2009-06-11 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77285, 'End_Lon': -73.955657, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79219, 'Start_Lon': -73.975575, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-15 19:25:00', 'Trip_Pickup_DateTime': '2009-06-15 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751167, 'End_Lon': -73.990927, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751722, 'Start_Lon': -73.980043, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-12 00:18:00', 'Trip_Pickup_DateTime': '2009-06-12 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644997, 'End_Lon': -73.95831, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.67553, 'Start_Lon': -73.971278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-12 00:18:00', 'Trip_Pickup_DateTime': '2009-06-12 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736633, 'End_Lon': -73.997162, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760705, 'Start_Lon': -73.975773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-11 22:37:00', 'Trip_Pickup_DateTime': '2009-06-11 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764413, 'End_Lon': -73.982798, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75815, 'Start_Lon': -73.988412, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-11 21:25:00', 'Trip_Pickup_DateTime': '2009-06-11 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780232, 'End_Lon': -73.954977, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79524, 'Start_Lon': -73.972953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-11 21:37:00', 'Trip_Pickup_DateTime': '2009-06-11 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772748, 'End_Lon': -73.977523, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77888, 'Start_Lon': -73.960317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-11 19:03:00', 'Trip_Pickup_DateTime': '2009-06-11 18:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719995, 'End_Lon': -74.00249, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716017, 'Start_Lon': -73.986753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-11 21:16:00', 'Trip_Pickup_DateTime': '2009-06-11 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748867, 'End_Lon': -73.971922, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740265, 'Start_Lon': -73.986325, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-11 19:14:00', 'Trip_Pickup_DateTime': '2009-06-11 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.828803, 'End_Lon': -73.944953, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753842, 'Start_Lon': -73.995943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.82, 'Trip_Dropoff_DateTime': '2009-06-21 09:47:00', 'Trip_Pickup_DateTime': '2009-06-21 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729455, 'End_Lon': -74.00515, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753515, 'Start_Lon': -73.988575, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.19, 'Trip_Dropoff_DateTime': '2009-06-11 19:41:00', 'Trip_Pickup_DateTime': '2009-06-11 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763553, 'End_Lon': -73.968903, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779167, 'Start_Lon': -73.962228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-15 15:50:00', 'Trip_Pickup_DateTime': '2009-06-15 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720752, 'End_Lon': -73.99853, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73541, 'Start_Lon': -73.982627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-20 21:10:00', 'Trip_Pickup_DateTime': '2009-06-20 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766073, 'End_Lon': -73.954993, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754478, 'Start_Lon': -73.97818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-11 22:07:00', 'Trip_Pickup_DateTime': '2009-06-11 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77411, 'End_Lon': -73.870942, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757035, 'Start_Lon': -73.984008, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.45, 'Trip_Distance': 9.3, 'Trip_Dropoff_DateTime': '2009-06-15 18:27:00', 'Trip_Pickup_DateTime': '2009-06-15 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-11 20:12:00', 'Trip_Pickup_DateTime': '2009-06-11 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771533, 'End_Lon': -73.950752, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759603, 'Start_Lon': -73.972178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-11 19:47:00', 'Trip_Pickup_DateTime': '2009-06-11 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722923, 'End_Lon': -73.998707, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76541, 'Start_Lon': -73.98019, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-11 20:37:00', 'Trip_Pickup_DateTime': '2009-06-11 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759995, 'End_Lon': -73.974755, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766353, 'Start_Lon': -73.954052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-15 17:42:00', 'Trip_Pickup_DateTime': '2009-06-15 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719315, 'End_Lon': -74.000057, 'Fare_Amt': 10.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.683432, 'Start_Lon': -73.997623, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-18 10:16:00', 'Trip_Pickup_DateTime': '2009-06-18 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769613, 'End_Lon': -73.984548, 'Fare_Amt': 10.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735007, 'Start_Lon': -73.979578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-11 05:58:00', 'Trip_Pickup_DateTime': '2009-06-11 05:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758003, 'End_Lon': -73.96268, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750223, 'Start_Lon': -73.976692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-11 19:56:00', 'Trip_Pickup_DateTime': '2009-06-11 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720905, 'End_Lon': -74.004993, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71411, 'Start_Lon': -73.997407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-11 20:43:00', 'Trip_Pickup_DateTime': '2009-06-11 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777605, 'End_Lon': -73.988787, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760833, 'Start_Lon': -73.973323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-15 17:28:00', 'Trip_Pickup_DateTime': '2009-06-15 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737633, 'End_Lon': -74.008133, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728135, 'Start_Lon': -73.984967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-11 18:34:00', 'Trip_Pickup_DateTime': '2009-06-11 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782993, 'End_Lon': -73.971832, 'Fare_Amt': 15.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731832, 'Start_Lon': -74.007675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.74, 'Trip_Dropoff_DateTime': '2009-06-21 16:39:00', 'Trip_Pickup_DateTime': '2009-06-21 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759452, 'End_Lon': -73.985238, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77408, 'Start_Lon': -73.874592, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 35.25, 'Trip_Distance': 11.0, 'Trip_Dropoff_DateTime': '2009-06-11 19:20:00', 'Trip_Pickup_DateTime': '2009-06-11 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774185, 'End_Lon': -73.981028, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78469, 'Start_Lon': -73.95029, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-15 17:57:00', 'Trip_Pickup_DateTime': '2009-06-15 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790673, 'End_Lon': -73.977787, 'Fare_Amt': 14.1, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742133, 'Start_Lon': -74.00456, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-18 14:00:00', 'Trip_Pickup_DateTime': '2009-06-18 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732535, 'End_Lon': -73.999095, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732562, 'Start_Lon': -73.999088, 'Tip_Amt': 11.25, 'Tolls_Amt': 4.15, 'Total_Amt': 60.4, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-11 20:27:00', 'Trip_Pickup_DateTime': '2009-06-11 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756588, 'End_Lon': -73.993898, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760487, 'Start_Lon': -73.987627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-15 16:18:00', 'Trip_Pickup_DateTime': '2009-06-15 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769605, 'End_Lon': -73.959607, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764683, 'Start_Lon': -73.955253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-11 20:18:00', 'Trip_Pickup_DateTime': '2009-06-11 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752842, 'End_Lon': -73.99679, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765095, 'Start_Lon': -73.977032, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-18 13:53:00', 'Trip_Pickup_DateTime': '2009-06-18 13:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756378, 'End_Lon': -73.981927, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7256, 'Start_Lon': -74.005305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-15 16:12:00', 'Trip_Pickup_DateTime': '2009-06-15 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744617, 'End_Lon': -73.996953, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732353, 'Start_Lon': -73.986952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-11 19:58:00', 'Trip_Pickup_DateTime': '2009-06-11 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747983, 'End_Lon': -74.000732, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765048, 'Start_Lon': -73.972397, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-11 20:07:00', 'Trip_Pickup_DateTime': '2009-06-11 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733092, 'End_Lon': -73.991198, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739017, 'Start_Lon': -73.983133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-16 10:00:00', 'Trip_Pickup_DateTime': '2009-06-16 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729937, 'End_Lon': -73.989708, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727483, 'Start_Lon': -73.98347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-15 14:41:00', 'Trip_Pickup_DateTime': '2009-06-15 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77173, 'End_Lon': -73.982943, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761858, 'Start_Lon': -73.970348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-11 19:09:00', 'Trip_Pickup_DateTime': '2009-06-11 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797515, 'End_Lon': -73.97251, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762943, 'Start_Lon': -73.971907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-15 13:36:00', 'Trip_Pickup_DateTime': '2009-06-15 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780632, 'End_Lon': -73.949747, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755745, 'Start_Lon': -73.968562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-18 14:31:00', 'Trip_Pickup_DateTime': '2009-06-18 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784372, 'End_Lon': -73.950163, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7641, 'Start_Lon': -73.969535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-18 14:31:00', 'Trip_Pickup_DateTime': '2009-06-18 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781435, 'End_Lon': -73.948682, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770978, 'Start_Lon': -73.981992, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-13 23:00:00', 'Trip_Pickup_DateTime': '2009-06-13 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779568, 'End_Lon': -73.973688, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762097, 'Start_Lon': -73.974188, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-15 13:54:00', 'Trip_Pickup_DateTime': '2009-06-15 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733292, 'End_Lon': -73.992972, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750017, 'Start_Lon': -73.972953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-11 18:00:00', 'Trip_Pickup_DateTime': '2009-06-11 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774317, 'End_Lon': -73.873153, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770728, 'Start_Lon': -73.981028, 'Tip_Amt': 5.78, 'Tolls_Amt': 4.15, 'Total_Amt': 38.83, 'Trip_Distance': 10.98, 'Trip_Dropoff_DateTime': '2009-06-15 15:34:00', 'Trip_Pickup_DateTime': '2009-06-15 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766395, 'End_Lon': -73.964998, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77744, 'Start_Lon': -73.957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-15 16:01:00', 'Trip_Pickup_DateTime': '2009-06-15 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75339, 'End_Lon': -73.985633, 'Fare_Amt': 32.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769092, 'Start_Lon': -73.862828, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 36.65, 'Trip_Distance': 12.34, 'Trip_Dropoff_DateTime': '2009-06-15 11:36:00', 'Trip_Pickup_DateTime': '2009-06-15 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74138, 'End_Lon': -73.985473, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64989, 'Start_Lon': -73.809345, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 18.24, 'Trip_Dropoff_DateTime': '2009-06-15 12:13:00', 'Trip_Pickup_DateTime': '2009-06-15 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752575, 'End_Lon': -73.972663, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756447, 'Start_Lon': -73.967208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-16 10:02:00', 'Trip_Pickup_DateTime': '2009-06-16 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73267, 'End_Lon': -73.991198, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779402, 'Start_Lon': -73.98111, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 4.31, 'Trip_Dropoff_DateTime': '2009-06-15 15:10:00', 'Trip_Pickup_DateTime': '2009-06-15 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752725, 'End_Lon': -73.986827, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750013, 'Start_Lon': -73.9916, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-15 12:53:00', 'Trip_Pickup_DateTime': '2009-06-15 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705692, 'End_Lon': -74.013345, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751493, 'Start_Lon': -73.991762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.51, 'Trip_Dropoff_DateTime': '2009-06-16 10:07:00', 'Trip_Pickup_DateTime': '2009-06-16 09:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806272, 'End_Lon': -74.303723, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.818795, 'Start_Lon': -74.310373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-11 17:44:00', 'Trip_Pickup_DateTime': '2009-06-11 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761425, 'End_Lon': -73.970058, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764167, 'Start_Lon': -73.966868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-15 12:37:00', 'Trip_Pickup_DateTime': '2009-06-15 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765055, 'End_Lon': -73.953092, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74409, 'Start_Lon': -73.9859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-11 18:19:00', 'Trip_Pickup_DateTime': '2009-06-11 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76464, 'End_Lon': -73.953957, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757115, 'Start_Lon': -73.978802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-15 12:00:00', 'Trip_Pickup_DateTime': '2009-06-15 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758173, 'End_Lon': -73.98623, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7593, 'Start_Lon': -73.968087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-11 17:57:00', 'Trip_Pickup_DateTime': '2009-06-11 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77508, 'End_Lon': -73.982897, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766413, 'Start_Lon': -73.982987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-11 16:46:00', 'Trip_Pickup_DateTime': '2009-06-11 16:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791677, 'End_Lon': -73.971582, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79393, 'Start_Lon': -73.97204, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-16 09:44:00', 'Trip_Pickup_DateTime': '2009-06-16 09:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775975, 'End_Lon': -73.95306, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76521, 'Start_Lon': -73.972382, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-21 10:21:00', 'Trip_Pickup_DateTime': '2009-06-21 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741783, 'End_Lon': -73.989408, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749193, 'Start_Lon': -73.979837, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-11 12:50:00', 'Trip_Pickup_DateTime': '2009-06-11 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738558, 'End_Lon': -73.99572, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7456, 'Start_Lon': -74.002017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-15 12:54:00', 'Trip_Pickup_DateTime': '2009-06-15 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755018, 'End_Lon': -73.98404, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749918, 'Start_Lon': -73.991233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-10 06:35:00', 'Trip_Pickup_DateTime': '2009-06-10 06:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761845, 'End_Lon': -73.976302, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79439, 'Start_Lon': -73.973393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-15 12:29:00', 'Trip_Pickup_DateTime': '2009-06-15 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76681, 'End_Lon': -73.983312, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75857, 'Start_Lon': -73.986278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-15 10:52:00', 'Trip_Pickup_DateTime': '2009-06-15 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732468, 'End_Lon': -73.917053, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727215, 'Start_Lon': -73.916367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-18 13:42:00', 'Trip_Pickup_DateTime': '2009-06-18 13:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727173, 'End_Lon': -73.999768, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740955, 'Start_Lon': -73.991545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-15 11:53:00', 'Trip_Pickup_DateTime': '2009-06-15 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773225, 'End_Lon': -73.98232, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802955, 'Start_Lon': -73.967763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-20 18:15:00', 'Trip_Pickup_DateTime': '2009-06-20 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72919, 'End_Lon': -74.000007, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709313, 'Start_Lon': -74.010063, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-14 00:36:00', 'Trip_Pickup_DateTime': '2009-06-14 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720868, 'End_Lon': -73.993762, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757182, 'Start_Lon': -73.96388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-20 20:48:00', 'Trip_Pickup_DateTime': '2009-06-20 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723432, 'End_Lon': -74.006158, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742395, 'Start_Lon': -73.980628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-16 07:04:00', 'Trip_Pickup_DateTime': '2009-06-16 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72619, 'End_Lon': -73.98347, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734203, 'Start_Lon': -73.998888, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 6.95, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-20 11:01:00', 'Trip_Pickup_DateTime': '2009-06-20 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720637, 'End_Lon': -74.010197, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750843, 'Start_Lon': -73.982747, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-15 11:53:00', 'Trip_Pickup_DateTime': '2009-06-15 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761688, 'End_Lon': -73.966345, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793805, 'Start_Lon': -73.974327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 4.18, 'Trip_Dropoff_DateTime': '2009-06-11 13:24:00', 'Trip_Pickup_DateTime': '2009-06-11 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777978, 'End_Lon': -73.958777, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772317, 'Start_Lon': -73.98215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-15 09:44:00', 'Trip_Pickup_DateTime': '2009-06-15 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726037, 'End_Lon': -74.005562, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728508, 'Start_Lon': -73.987693, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-15 10:32:00', 'Trip_Pickup_DateTime': '2009-06-15 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737748, 'End_Lon': -74.000032, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718493, 'Start_Lon': -73.990612, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-18 13:39:00', 'Trip_Pickup_DateTime': '2009-06-18 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773965, 'End_Lon': -73.874732, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773965, 'Start_Lon': -73.874732, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-11 15:36:00', 'Trip_Pickup_DateTime': '2009-06-11 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735138, 'End_Lon': -73.979867, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73529, 'Start_Lon': -73.979552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-11 14:27:00', 'Trip_Pickup_DateTime': '2009-06-11 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759538, 'End_Lon': -73.987158, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750973, 'Start_Lon': -73.975085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 13:00:00', 'Trip_Pickup_DateTime': '2009-06-18 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74879, 'End_Lon': -73.973745, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751677, 'Start_Lon': -73.993923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-13 23:24:00', 'Trip_Pickup_DateTime': '2009-06-13 23:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775012, 'End_Lon': -73.962973, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77486, 'Start_Lon': -73.954122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-11 14:05:00', 'Trip_Pickup_DateTime': '2009-06-11 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776678, 'End_Lon': -73.984657, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753065, 'Start_Lon': -73.984877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-11 13:41:00', 'Trip_Pickup_DateTime': '2009-06-11 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763582, 'End_Lon': -73.983288, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763582, 'Start_Lon': -73.983288, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-15 09:10:00', 'Trip_Pickup_DateTime': '2009-06-15 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740188, 'End_Lon': -74.005308, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743533, 'Start_Lon': -73.976853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-15 10:37:00', 'Trip_Pickup_DateTime': '2009-06-15 10:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779422, 'End_Lon': -73.957558, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767845, 'Start_Lon': -73.961952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-15 09:25:00', 'Trip_Pickup_DateTime': '2009-06-15 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71936, 'End_Lon': -73.97878, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726213, 'Start_Lon': -73.992202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-14 01:38:00', 'Trip_Pickup_DateTime': '2009-06-14 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74418, 'End_Lon': -73.98758, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760918, 'Start_Lon': -73.982502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-10 19:17:00', 'Trip_Pickup_DateTime': '2009-06-10 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769565, 'End_Lon': -73.957755, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78412, 'Start_Lon': -73.947295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-10 22:36:00', 'Trip_Pickup_DateTime': '2009-06-10 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780862, 'End_Lon': -73.95915, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774642, 'Start_Lon': -73.963607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-11 13:13:00', 'Trip_Pickup_DateTime': '2009-06-11 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775625, 'End_Lon': -73.954482, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76519, 'Start_Lon': -73.973643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-17 12:07:00', 'Trip_Pickup_DateTime': '2009-06-17 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777078, 'End_Lon': -73.982075, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789992, 'Start_Lon': -73.970562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-19 15:45:00', 'Trip_Pickup_DateTime': '2009-06-19 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7639, 'End_Lon': -73.98159, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713232, 'Start_Lon': -74.003877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-19 16:19:00', 'Trip_Pickup_DateTime': '2009-06-19 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720505, 'End_Lon': -73.989572, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713673, 'Start_Lon': -74.003558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-27 23:18:00', 'Trip_Pickup_DateTime': '2009-06-27 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760648, 'End_Lon': -73.961242, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750183, 'Start_Lon': -73.991283, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-28 09:43:00', 'Trip_Pickup_DateTime': '2009-06-28 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752988, 'End_Lon': -73.983045, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762882, 'Start_Lon': -73.982028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-17 12:25:00', 'Trip_Pickup_DateTime': '2009-06-17 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.909158, 'End_Lon': -73.905935, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75209, 'Start_Lon': -73.993615, 'Tip_Amt': 2.25, 'Tolls_Amt': 2.75, 'Total_Amt': 35.6, 'Trip_Distance': 13.27, 'Trip_Dropoff_DateTime': '2009-06-16 22:25:00', 'Trip_Pickup_DateTime': '2009-06-16 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792578, 'End_Lon': -73.966632, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78597, 'Start_Lon': -73.955077, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-16 22:12:00', 'Trip_Pickup_DateTime': '2009-06-16 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729158, 'End_Lon': -73.990118, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73074, 'Start_Lon': -73.998985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-26 16:27:00', 'Trip_Pickup_DateTime': '2009-06-26 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75465, 'End_Lon': -73.98267, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750525, 'Start_Lon': -73.986103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-28 20:28:00', 'Trip_Pickup_DateTime': '2009-06-28 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802263, 'End_Lon': -73.961638, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770443, 'Start_Lon': -73.983898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-27 00:52:00', 'Trip_Pickup_DateTime': '2009-06-27 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.637113, 'End_Lon': -74.03507, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.637113, 'Start_Lon': -74.03507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-30 01:20:00', 'Trip_Pickup_DateTime': '2009-06-30 01:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773547, 'End_Lon': -73.945913, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782313, 'Start_Lon': -73.955898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-27 12:33:00', 'Trip_Pickup_DateTime': '2009-06-27 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795207, 'End_Lon': -73.970803, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756725, 'Start_Lon': -73.9939, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-29 20:27:00', 'Trip_Pickup_DateTime': '2009-06-29 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762683, 'End_Lon': -73.973167, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773085, 'Start_Lon': -73.962407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-17 12:39:00', 'Trip_Pickup_DateTime': '2009-06-17 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747825, 'End_Lon': -74.008085, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757245, 'Start_Lon': -73.99003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-26 10:57:00', 'Trip_Pickup_DateTime': '2009-06-26 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761707, 'End_Lon': -73.97243, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74975, 'Start_Lon': -73.993377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-19 15:57:00', 'Trip_Pickup_DateTime': '2009-06-19 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720838, 'End_Lon': -73.987988, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750027, 'Start_Lon': -73.992048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-26 11:48:00', 'Trip_Pickup_DateTime': '2009-06-26 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648182, 'End_Lon': -73.974737, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736835, 'Start_Lon': -73.984793, 'Tip_Amt': 5.16, 'Tolls_Amt': 0.0, 'Total_Amt': 30.96, 'Trip_Distance': 9.82, 'Trip_Dropoff_DateTime': '2009-06-25 23:30:00', 'Trip_Pickup_DateTime': '2009-06-25 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725423, 'End_Lon': -73.996693, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755052, 'Start_Lon': -73.986778, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-26 12:24:00', 'Trip_Pickup_DateTime': '2009-06-26 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656955, 'End_Lon': -73.998003, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.666095, 'Start_Lon': -73.988903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-26 23:08:00', 'Trip_Pickup_DateTime': '2009-06-26 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735905, 'End_Lon': -73.98363, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.811802, 'Start_Lon': -73.961293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 7.5, 'Trip_Dropoff_DateTime': '2009-06-17 12:20:00', 'Trip_Pickup_DateTime': '2009-06-17 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808302, 'End_Lon': -73.948813, 'Fare_Amt': 23.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730102, 'Start_Lon': -73.980713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.2, 'Trip_Distance': 9.07, 'Trip_Dropoff_DateTime': '2009-06-27 01:48:00', 'Trip_Pickup_DateTime': '2009-06-27 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705047, 'End_Lon': -74.0064, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718683, 'Start_Lon': -73.997487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-24 21:48:00', 'Trip_Pickup_DateTime': '2009-06-24 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69009, 'End_Lon': -73.993592, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756153, 'Start_Lon': -73.96809, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.7, 'Trip_Distance': 7.18, 'Trip_Dropoff_DateTime': '2009-06-19 15:58:00', 'Trip_Pickup_DateTime': '2009-06-19 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783623, 'End_Lon': -73.983412, 'Fare_Amt': 7.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76739, 'Start_Lon': -73.968592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-24 18:06:00', 'Trip_Pickup_DateTime': '2009-06-24 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778028, 'End_Lon': -73.948627, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784713, 'Start_Lon': -73.977028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-26 22:24:00', 'Trip_Pickup_DateTime': '2009-06-26 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757293, 'End_Lon': -73.97052, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762048, 'Start_Lon': -73.985415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-26 04:07:00', 'Trip_Pickup_DateTime': '2009-06-26 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770392, 'End_Lon': -73.864888, 'Fare_Amt': 30.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717547, 'Start_Lon': -74.005742, 'Tip_Amt': 6.1, 'Tolls_Amt': 0.0, 'Total_Amt': 36.6, 'Trip_Distance': 12.81, 'Trip_Dropoff_DateTime': '2009-06-28 12:13:00', 'Trip_Pickup_DateTime': '2009-06-28 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771533, 'End_Lon': -73.962452, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75633, 'Start_Lon': -73.970595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-19 14:57:00', 'Trip_Pickup_DateTime': '2009-06-19 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745855, 'End_Lon': -73.998027, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727977, 'Start_Lon': -74.005407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-27 10:11:00', 'Trip_Pickup_DateTime': '2009-06-27 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786553, 'End_Lon': -73.976477, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79963, 'Start_Lon': -73.968353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-23 21:49:00', 'Trip_Pickup_DateTime': '2009-06-23 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761995, 'End_Lon': -73.986007, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744855, 'Start_Lon': -73.985835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-26 12:30:00', 'Trip_Pickup_DateTime': '2009-06-26 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725935, 'End_Lon': -73.992043, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741958, 'Start_Lon': -73.989907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-27 23:52:00', 'Trip_Pickup_DateTime': '2009-06-27 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71464, 'End_Lon': -74.015342, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775727, 'Start_Lon': -73.980078, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 5.55, 'Trip_Dropoff_DateTime': '2009-06-26 09:51:00', 'Trip_Pickup_DateTime': '2009-06-26 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763087, 'End_Lon': -73.964943, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767912, 'Start_Lon': -73.970197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-17 11:52:00', 'Trip_Pickup_DateTime': '2009-06-17 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786318, 'End_Lon': -73.971893, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757317, 'Start_Lon': -73.96366, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-19 14:15:00', 'Trip_Pickup_DateTime': '2009-06-19 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738677, 'End_Lon': -73.982945, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74689, 'Start_Lon': -73.981902, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-25 11:09:00', 'Trip_Pickup_DateTime': '2009-06-25 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754705, 'End_Lon': -74.007027, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759152, 'Start_Lon': -73.987388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-17 11:34:00', 'Trip_Pickup_DateTime': '2009-06-17 11:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728715, 'End_Lon': -74.006653, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773522, 'Start_Lon': -73.945903, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 6.13, 'Trip_Dropoff_DateTime': '2009-06-26 08:10:00', 'Trip_Pickup_DateTime': '2009-06-26 07:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737988, 'End_Lon': -74.006498, 'Fare_Amt': 15.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773257, 'Start_Lon': -73.96646, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-17 10:33:00', 'Trip_Pickup_DateTime': '2009-06-17 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780353, 'End_Lon': -73.946777, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756017, 'Start_Lon': -73.975667, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-25 20:19:00', 'Trip_Pickup_DateTime': '2009-06-25 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745612, 'End_Lon': -73.994995, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740702, 'Start_Lon': -73.990082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-17 10:56:00', 'Trip_Pickup_DateTime': '2009-06-17 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759467, 'End_Lon': -73.978987, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759283, 'Start_Lon': -73.992078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-26 07:49:00', 'Trip_Pickup_DateTime': '2009-06-26 07:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754955, 'End_Lon': -73.978312, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754955, 'Start_Lon': -73.978312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-25 19:31:00', 'Trip_Pickup_DateTime': '2009-06-25 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78757, 'End_Lon': -73.976853, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769322, 'Start_Lon': -73.965532, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-25 20:04:00', 'Trip_Pickup_DateTime': '2009-06-25 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.82458, 'End_Lon': -73.92254, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740142, 'Start_Lon': -73.986535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 8.61, 'Trip_Dropoff_DateTime': '2009-06-27 16:47:00', 'Trip_Pickup_DateTime': '2009-06-27 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764505, 'End_Lon': -73.953302, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765937, 'Start_Lon': -73.95644, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-17 11:11:00', 'Trip_Pickup_DateTime': '2009-06-17 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751732, 'End_Lon': -73.969622, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77673, 'Start_Lon': -73.949797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-26 06:28:00', 'Trip_Pickup_DateTime': '2009-06-26 06:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772325, 'End_Lon': -73.96773, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775437, 'Start_Lon': -73.956365, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-26 00:28:00', 'Trip_Pickup_DateTime': '2009-06-26 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.64535, 'End_Lon': -73.776662, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645358, 'Start_Lon': -73.77663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-25 22:18:00', 'Trip_Pickup_DateTime': '2009-06-25 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760713, 'End_Lon': -73.962667, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768533, 'Start_Lon': -73.984782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-27 20:49:00', 'Trip_Pickup_DateTime': '2009-06-27 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747272, 'End_Lon': -74.007173, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737467, 'Start_Lon': -73.984153, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-26 08:57:00', 'Trip_Pickup_DateTime': '2009-06-26 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747738, 'End_Lon': -73.99458, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777852, 'Start_Lon': -73.978467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-27 11:47:00', 'Trip_Pickup_DateTime': '2009-06-27 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737742, 'End_Lon': -73.97384, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743785, 'Start_Lon': -73.973385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-25 17:42:00', 'Trip_Pickup_DateTime': '2009-06-25 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764468, 'End_Lon': -73.998667, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769895, 'Start_Lon': -73.991345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-19 03:11:00', 'Trip_Pickup_DateTime': '2009-06-19 03:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756428, 'End_Lon': -73.978752, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761075, 'Start_Lon': -73.961398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-10 08:49:00', 'Trip_Pickup_DateTime': '2009-06-10 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740228, 'End_Lon': -74.005658, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736523, 'Start_Lon': -73.988702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-25 18:46:00', 'Trip_Pickup_DateTime': '2009-06-25 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750812, 'End_Lon': -73.990765, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75391, 'Start_Lon': -73.978335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-08 19:45:00', 'Trip_Pickup_DateTime': '2009-06-08 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76563, 'End_Lon': -73.98829, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770193, 'Start_Lon': -73.984807, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-25 19:19:00', 'Trip_Pickup_DateTime': '2009-06-25 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763087, 'End_Lon': -73.977717, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764092, 'Start_Lon': -73.958878, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-23 08:21:00', 'Trip_Pickup_DateTime': '2009-06-23 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75365, 'End_Lon': -73.932328, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739895, 'Start_Lon': -73.958607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-08 19:39:00', 'Trip_Pickup_DateTime': '2009-06-08 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786672, 'End_Lon': -73.95273, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767087, 'Start_Lon': -73.962672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-24 14:21:00', 'Trip_Pickup_DateTime': '2009-06-24 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800465, 'End_Lon': -73.96769, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763965, 'Start_Lon': -73.99235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-09 18:57:00', 'Trip_Pickup_DateTime': '2009-06-09 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749988, 'End_Lon': -73.987633, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731598, 'Start_Lon': -73.994842, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-13 17:59:00', 'Trip_Pickup_DateTime': '2009-06-13 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687643, 'End_Lon': -73.951425, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714022, 'Start_Lon': -73.951503, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-16 22:00:00', 'Trip_Pickup_DateTime': '2009-06-16 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756135, 'End_Lon': -73.975203, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756282, 'Start_Lon': -73.99001, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-12 05:38:00', 'Trip_Pickup_DateTime': '2009-06-12 05:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75635, 'End_Lon': -73.994415, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741045, 'Start_Lon': -73.987113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-26 03:57:00', 'Trip_Pickup_DateTime': '2009-06-26 03:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74619, 'End_Lon': -73.982068, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747768, 'Start_Lon': -73.973598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-26 15:37:00', 'Trip_Pickup_DateTime': '2009-06-26 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79038, 'End_Lon': -73.941568, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778783, 'Start_Lon': -73.952448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-26 20:43:00', 'Trip_Pickup_DateTime': '2009-06-26 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760415, 'End_Lon': -73.961652, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737302, 'Start_Lon': -73.978183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-13 16:57:00', 'Trip_Pickup_DateTime': '2009-06-13 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752465, 'End_Lon': -73.99362, 'Fare_Amt': 29.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76925, 'Start_Lon': -73.863308, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 33.95, 'Trip_Distance': 12.76, 'Trip_Dropoff_DateTime': '2009-06-09 22:41:00', 'Trip_Pickup_DateTime': '2009-06-09 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730153, 'End_Lon': -73.98646, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760623, 'Start_Lon': -73.971768, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-23 20:41:00', 'Trip_Pickup_DateTime': '2009-06-23 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773752, 'End_Lon': -73.958233, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757365, 'Start_Lon': -73.974155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-24 18:46:00', 'Trip_Pickup_DateTime': '2009-06-24 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644808, 'End_Lon': -73.781813, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644782, 'Start_Lon': -73.78216, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-26 21:48:00', 'Trip_Pickup_DateTime': '2009-06-26 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753755, 'End_Lon': -73.971518, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76421, 'Start_Lon': -73.96181, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-17 09:31:00', 'Trip_Pickup_DateTime': '2009-06-17 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737813, 'End_Lon': -73.986417, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774092, 'Start_Lon': -73.95737, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-13 17:45:00', 'Trip_Pickup_DateTime': '2009-06-13 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.700408, 'End_Lon': -73.938682, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720028, 'Start_Lon': -73.993327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-26 02:10:00', 'Trip_Pickup_DateTime': '2009-06-26 01:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771407, 'End_Lon': -73.981812, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748387, 'Start_Lon': -73.970058, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-24 09:47:00', 'Trip_Pickup_DateTime': '2009-06-24 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755932, 'End_Lon': -73.97532, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71642, 'Start_Lon': -73.995928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-25 22:57:00', 'Trip_Pickup_DateTime': '2009-06-25 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774512, 'End_Lon': -73.981337, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75028, 'Start_Lon': -73.967492, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-25 11:11:00', 'Trip_Pickup_DateTime': '2009-06-25 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76217, 'End_Lon': -73.981215, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736358, 'Start_Lon': -74.000945, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-19 13:05:00', 'Trip_Pickup_DateTime': '2009-06-19 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759858, 'End_Lon': -73.974902, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763747, 'Start_Lon': -73.978597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-24 00:49:00', 'Trip_Pickup_DateTime': '2009-06-24 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754243, 'End_Lon': -73.994132, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764977, 'Start_Lon': -73.997833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-28 09:39:00', 'Trip_Pickup_DateTime': '2009-06-28 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776458, 'End_Lon': -73.94825, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763713, 'Start_Lon': -73.965945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-22 19:01:00', 'Trip_Pickup_DateTime': '2009-06-22 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748867, 'End_Lon': -73.991797, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734637, 'Start_Lon': -73.988135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-26 02:10:00', 'Trip_Pickup_DateTime': '2009-06-26 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702307, 'End_Lon': -74.013152, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739722, 'Start_Lon': -73.99872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.57, 'Trip_Dropoff_DateTime': '2009-06-19 20:25:00', 'Trip_Pickup_DateTime': '2009-06-19 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764107, 'End_Lon': -73.968783, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752072, 'Start_Lon': -73.98601, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-08 10:17:00', 'Trip_Pickup_DateTime': '2009-06-08 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783983, 'End_Lon': -73.977702, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77734, 'Start_Lon': -73.978507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-19 19:21:00', 'Trip_Pickup_DateTime': '2009-06-19 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763943, 'End_Lon': -73.976713, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74833, 'Start_Lon': -74.005555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-19 19:39:00', 'Trip_Pickup_DateTime': '2009-06-19 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761328, 'End_Lon': -73.960388, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7738, 'Start_Lon': -73.95985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-29 10:57:00', 'Trip_Pickup_DateTime': '2009-06-29 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761983, 'End_Lon': -73.974092, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783892, 'Start_Lon': -73.981583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-19 18:28:00', 'Trip_Pickup_DateTime': '2009-06-19 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724368, 'End_Lon': -74.005432, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719632, 'Start_Lon': -73.991258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-28 01:35:00', 'Trip_Pickup_DateTime': '2009-06-28 01:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781024, 'End_Lon': -73.958876, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769594, 'Start_Lon': -73.980937, 'Tip_Amt': 1.86, 'Tolls_Amt': 0.0, 'Total_Amt': 11.16, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-04 09:30:00', 'Trip_Pickup_DateTime': '2009-06-04 09:16:26', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.761388, 'End_Lon': -73.98388, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771353, 'Start_Lon': -73.982222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-19 19:19:00', 'Trip_Pickup_DateTime': '2009-06-19 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760425, 'End_Lon': -73.983678, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754132, 'Start_Lon': -73.977355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-05 08:30:00', 'Trip_Pickup_DateTime': '2009-06-05 08:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729975, 'End_Lon': -73.980725, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748258, 'Start_Lon': -74.007422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-06 02:57:00', 'Trip_Pickup_DateTime': '2009-06-06 02:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754165, 'End_Lon': -73.989125, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.807607, 'Start_Lon': -73.96285, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.25, 'Trip_Dropoff_DateTime': '2009-06-12 06:44:00', 'Trip_Pickup_DateTime': '2009-06-12 06:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759983, 'End_Lon': -73.972748, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7563, 'Start_Lon': -73.990187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-08 06:24:00', 'Trip_Pickup_DateTime': '2009-06-08 06:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745982, 'End_Lon': -74.005347, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737347, 'Start_Lon': -73.99668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-28 19:44:00', 'Trip_Pickup_DateTime': '2009-06-28 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75714, 'End_Lon': -73.98993, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752602, 'Start_Lon': -73.972538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-08 19:45:00', 'Trip_Pickup_DateTime': '2009-06-08 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762755, 'End_Lon': -73.920125, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764653, 'Start_Lon': -73.914422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-04 04:09:00', 'Trip_Pickup_DateTime': '2009-06-04 04:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77351, 'End_Lon': -73.949577, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775683, 'Start_Lon': -73.962615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-04 18:48:00', 'Trip_Pickup_DateTime': '2009-06-04 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7584, 'End_Lon': -73.97799, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750177, 'Start_Lon': -73.991237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-04 11:09:00', 'Trip_Pickup_DateTime': '2009-06-04 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.671618, 'End_Lon': -73.984477, 'Fare_Amt': 29.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738157, 'Start_Lon': -74.003783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.7, 'Trip_Distance': 6.15, 'Trip_Dropoff_DateTime': '2009-06-28 19:22:00', 'Trip_Pickup_DateTime': '2009-06-28 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746692, 'End_Lon': -74.008343, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80229, 'Start_Lon': -73.9502, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 6.26, 'Trip_Dropoff_DateTime': '2009-06-19 18:39:00', 'Trip_Pickup_DateTime': '2009-06-19 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713212, 'End_Lon': -73.962092, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737803, 'Start_Lon': -74.004525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.59, 'Trip_Dropoff_DateTime': '2009-06-27 00:29:00', 'Trip_Pickup_DateTime': '2009-06-27 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758882, 'End_Lon': -73.970138, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749202, 'Start_Lon': -73.969127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-04 17:09:00', 'Trip_Pickup_DateTime': '2009-06-04 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723825, 'End_Lon': -73.99704, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719903, 'Start_Lon': -73.99872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-26 21:24:00', 'Trip_Pickup_DateTime': '2009-06-26 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731425, 'End_Lon': -74.00315, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768035, 'Start_Lon': -73.958888, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.8, 'Trip_Distance': 5.51, 'Trip_Dropoff_DateTime': '2009-06-07 21:13:00', 'Trip_Pickup_DateTime': '2009-06-07 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75155, 'End_Lon': -73.977583, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738455, 'Start_Lon': -73.988108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-04 06:42:00', 'Trip_Pickup_DateTime': '2009-06-04 06:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725555, 'End_Lon': -74.004038, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74759, 'Start_Lon': -73.97341, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-04 06:14:00', 'Trip_Pickup_DateTime': '2009-06-04 06:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768863, 'End_Lon': -73.960587, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741825, 'Start_Lon': -73.974782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-04 15:27:00', 'Trip_Pickup_DateTime': '2009-06-04 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764277, 'End_Lon': -73.967175, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73504, 'Start_Lon': -74.006777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-04 21:08:00', 'Trip_Pickup_DateTime': '2009-06-04 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775143, 'End_Lon': -73.947672, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739433, 'Start_Lon': -73.982618, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-04 23:26:00', 'Trip_Pickup_DateTime': '2009-06-04 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73623, 'End_Lon': -73.984348, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744397, 'Start_Lon': -73.979152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-02 18:53:00', 'Trip_Pickup_DateTime': '2009-06-02 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-04 22:16:00', 'Trip_Pickup_DateTime': '2009-06-04 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737535, 'End_Lon': -73.980097, 'Fare_Amt': 12.5, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745032, 'Start_Lon': -73.933267, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-03 18:21:00', 'Trip_Pickup_DateTime': '2009-06-03 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.689858, 'End_Lon': -73.980085, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.689858, 'Start_Lon': -73.980085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-07 05:29:00', 'Trip_Pickup_DateTime': '2009-06-07 05:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774962, 'End_Lon': -73.95832, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76895, 'Start_Lon': -73.965363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-04 12:21:00', 'Trip_Pickup_DateTime': '2009-06-04 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780462, 'End_Lon': -73.980125, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728788, 'Start_Lon': -73.990482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-07 07:14:00', 'Trip_Pickup_DateTime': '2009-06-07 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713708, 'End_Lon': -73.978945, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739603, 'Start_Lon': -73.976413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-19 19:52:00', 'Trip_Pickup_DateTime': '2009-06-19 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749027, 'End_Lon': -73.975967, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775408, 'Start_Lon': -73.95052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-02 19:41:00', 'Trip_Pickup_DateTime': '2009-06-02 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776498, 'End_Lon': -73.976245, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761917, 'Start_Lon': -73.997665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-06 08:35:00', 'Trip_Pickup_DateTime': '2009-06-06 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739502, 'End_Lon': -73.982425, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733653, 'Start_Lon': -73.98959, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-05 17:09:00', 'Trip_Pickup_DateTime': '2009-06-05 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761855, 'End_Lon': -73.979265, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74257, 'Start_Lon': -74.007298, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-19 17:37:00', 'Trip_Pickup_DateTime': '2009-06-19 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757902, 'End_Lon': -73.96405, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75965, 'Start_Lon': -73.980802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-02 20:36:00', 'Trip_Pickup_DateTime': '2009-06-02 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735478, 'End_Lon': -73.994518, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762168, 'Start_Lon': -73.985827, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-04 23:33:00', 'Trip_Pickup_DateTime': '2009-06-04 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768885, 'End_Lon': -73.99023, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730403, 'Start_Lon': -73.984487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-04 20:05:00', 'Trip_Pickup_DateTime': '2009-06-04 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751873, 'End_Lon': -73.992988, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747485, 'Start_Lon': -73.992018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-02 14:45:00', 'Trip_Pickup_DateTime': '2009-06-02 14:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756823, 'End_Lon': -73.982432, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780762, 'Start_Lon': -73.960672, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-06 23:33:00', 'Trip_Pickup_DateTime': '2009-06-06 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7369, 'End_Lon': -73.974413, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746542, 'Start_Lon': -74.00153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-29 12:46:00', 'Trip_Pickup_DateTime': '2009-06-29 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772512, 'End_Lon': -73.958377, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744187, 'Start_Lon': -74.006932, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 3.87, 'Trip_Dropoff_DateTime': '2009-06-05 09:02:00', 'Trip_Pickup_DateTime': '2009-06-05 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72992, 'End_Lon': -73.98667, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741232, 'Start_Lon': -73.978445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-05 18:31:00', 'Trip_Pickup_DateTime': '2009-06-05 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716913, 'End_Lon': -74.009097, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76365, 'Start_Lon': -73.971425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.48, 'Trip_Dropoff_DateTime': '2009-06-05 15:14:00', 'Trip_Pickup_DateTime': '2009-06-05 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764858, 'End_Lon': -73.972882, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753403, 'Start_Lon': -73.966488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-07 11:05:00', 'Trip_Pickup_DateTime': '2009-06-07 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.839212, 'End_Lon': -73.94127, 'Fare_Amt': 35.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717442, 'Start_Lon': -74.013972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.7, 'Trip_Distance': 9.94, 'Trip_Dropoff_DateTime': '2009-06-05 16:44:00', 'Trip_Pickup_DateTime': '2009-06-05 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73703, 'End_Lon': -73.992882, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760287, 'Start_Lon': -73.984597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-19 20:30:00', 'Trip_Pickup_DateTime': '2009-06-19 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765382, 'End_Lon': -74.053335, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770903, 'Start_Lon': -74.071902, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-03 22:30:00', 'Trip_Pickup_DateTime': '2009-06-03 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723742, 'End_Lon': -73.987978, 'Fare_Amt': 21.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772878, 'Start_Lon': -73.921133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.3, 'Trip_Distance': 9.22, 'Trip_Dropoff_DateTime': '2009-06-07 07:27:00', 'Trip_Pickup_DateTime': '2009-06-07 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781787, 'End_Lon': -73.953018, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756385, 'Start_Lon': -73.973767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-03 19:50:00', 'Trip_Pickup_DateTime': '2009-06-03 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736895, 'End_Lon': -74.012645, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734662, 'Start_Lon': -74.013478, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-03 10:19:00', 'Trip_Pickup_DateTime': '2009-06-03 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729232, 'End_Lon': -73.999947, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724863, 'Start_Lon': -73.994455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-05 22:02:00', 'Trip_Pickup_DateTime': '2009-06-05 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752185, 'End_Lon': -74.004517, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747512, 'Start_Lon': -73.989803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-29 02:54:00', 'Trip_Pickup_DateTime': '2009-06-29 02:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718232, 'End_Lon': -73.9877, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724488, 'Start_Lon': -73.993905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-25 11:50:00', 'Trip_Pickup_DateTime': '2009-06-25 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782583, 'End_Lon': -73.973163, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787893, 'Start_Lon': -73.975543, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-25 18:33:00', 'Trip_Pickup_DateTime': '2009-06-25 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781432, 'End_Lon': -73.954113, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736393, 'Start_Lon': -74.005762, 'Tip_Amt': 3.08, 'Tolls_Amt': 0.0, 'Total_Amt': 18.48, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-07 02:52:00', 'Trip_Pickup_DateTime': '2009-06-07 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72629, 'End_Lon': -73.98928, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74153, 'Start_Lon': -73.983312, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-04 19:18:00', 'Trip_Pickup_DateTime': '2009-06-04 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788122, 'End_Lon': -73.972063, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765803, 'Start_Lon': -73.99104, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-03 19:48:00', 'Trip_Pickup_DateTime': '2009-06-03 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.812323, 'End_Lon': -73.955265, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791337, 'Start_Lon': -73.943935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-29 15:49:00', 'Trip_Pickup_DateTime': '2009-06-29 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75998, 'End_Lon': -73.996835, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744605, 'Start_Lon': -73.998673, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-30 21:10:00', 'Trip_Pickup_DateTime': '2009-06-30 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.809142, 'End_Lon': -73.95933, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774725, 'Start_Lon': -73.980603, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-06 23:45:00', 'Trip_Pickup_DateTime': '2009-06-06 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644158, 'End_Lon': -73.782368, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80454, 'Start_Lon': -73.940253, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.96, 'Trip_Dropoff_DateTime': '2009-06-04 19:11:00', 'Trip_Pickup_DateTime': '2009-06-04 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72959, 'End_Lon': -73.986997, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714208, 'Start_Lon': -74.006242, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-27 23:24:00', 'Trip_Pickup_DateTime': '2009-06-27 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74721, 'End_Lon': -73.997082, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735172, 'Start_Lon': -73.990965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-02 00:43:00', 'Trip_Pickup_DateTime': '2009-06-02 00:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.84067, 'End_Lon': -73.943035, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75133, 'Start_Lon': -73.994018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.3, 'Trip_Distance': 8.28, 'Trip_Dropoff_DateTime': '2009-06-29 10:26:00', 'Trip_Pickup_DateTime': '2009-06-29 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744032, 'End_Lon': -73.993503, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75172, 'Start_Lon': -73.977565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.16, 'Trip_Dropoff_DateTime': '2009-06-02 16:19:00', 'Trip_Pickup_DateTime': '2009-06-02 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774823, 'End_Lon': -73.962253, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772535, 'Start_Lon': -73.978483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-08 10:57:00', 'Trip_Pickup_DateTime': '2009-06-08 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722935, 'End_Lon': -73.98917, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738427, 'Start_Lon': -73.999847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-28 02:38:00', 'Trip_Pickup_DateTime': '2009-06-28 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76481, 'End_Lon': -73.986975, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749377, 'Start_Lon': -73.990683, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-05 22:48:00', 'Trip_Pickup_DateTime': '2009-06-05 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775288, 'End_Lon': -73.95998, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771302, 'Start_Lon': -73.961233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-04 16:20:00', 'Trip_Pickup_DateTime': '2009-06-04 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648557, 'End_Lon': -73.961695, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728947, 'Start_Lon': -73.987368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.29, 'Trip_Dropoff_DateTime': '2009-06-28 23:29:00', 'Trip_Pickup_DateTime': '2009-06-28 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774602, 'End_Lon': -73.982202, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766507, 'Start_Lon': -73.959925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-08 11:20:00', 'Trip_Pickup_DateTime': '2009-06-08 11:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738227, 'End_Lon': -73.991845, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743925, 'Start_Lon': -73.995705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-25 18:02:00', 'Trip_Pickup_DateTime': '2009-06-25 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743223, 'End_Lon': -73.974378, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754402, 'Start_Lon': -73.984127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-27 16:15:00', 'Trip_Pickup_DateTime': '2009-06-27 16:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730452, 'End_Lon': -73.992567, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744213, 'Start_Lon': -73.987508, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-02 11:01:00', 'Trip_Pickup_DateTime': '2009-06-02 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746807, 'End_Lon': -74.00505, 'Fare_Amt': 10.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746807, 'Start_Lon': -74.00505, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-28 14:08:00', 'Trip_Pickup_DateTime': '2009-06-28 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.828555, 'End_Lon': -73.945187, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76446, 'Start_Lon': -73.976693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-29 05:11:00', 'Trip_Pickup_DateTime': '2009-06-29 04:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.80919, 'End_Lon': -73.959243, 'Fare_Amt': 20.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74053, 'Start_Lon': -73.998313, 'Tip_Amt': 4.28, 'Tolls_Amt': 0.0, 'Total_Amt': 25.68, 'Trip_Distance': 7.84, 'Trip_Dropoff_DateTime': '2009-06-27 03:36:00', 'Trip_Pickup_DateTime': '2009-06-27 03:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75692, 'End_Lon': -73.974515, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750575, 'Start_Lon': -73.979182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-23 12:04:00', 'Trip_Pickup_DateTime': '2009-06-23 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759252, 'End_Lon': -73.996488, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755112, 'Start_Lon': -73.994568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-19 16:32:00', 'Trip_Pickup_DateTime': '2009-06-19 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715342, 'End_Lon': -73.984812, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726523, 'Start_Lon': -73.991773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-28 17:40:00', 'Trip_Pickup_DateTime': '2009-06-28 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732912, 'End_Lon': -73.988217, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751895, 'Start_Lon': -73.99319, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-27 13:48:00', 'Trip_Pickup_DateTime': '2009-06-27 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74833, 'End_Lon': -73.99972, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769138, 'Start_Lon': -73.984693, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-29 08:36:00', 'Trip_Pickup_DateTime': '2009-06-29 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763508, 'End_Lon': -73.980788, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749987, 'Start_Lon': -73.991567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-19 18:12:00', 'Trip_Pickup_DateTime': '2009-06-19 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753618, 'End_Lon': -73.971452, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772513, 'Start_Lon': -73.950855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-02 07:35:00', 'Trip_Pickup_DateTime': '2009-06-02 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704295, 'End_Lon': -74.00917, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725035, 'Start_Lon': -74.007653, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-28 18:12:00', 'Trip_Pickup_DateTime': '2009-06-28 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745608, 'End_Lon': -73.978088, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745357, 'Start_Lon': -73.991165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-03 21:24:00', 'Trip_Pickup_DateTime': '2009-06-03 21:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754435, 'End_Lon': -73.97682, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772872, 'Start_Lon': -73.88526, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.9, 'Trip_Distance': 6.86, 'Trip_Dropoff_DateTime': '2009-06-17 12:05:00', 'Trip_Pickup_DateTime': '2009-06-17 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707848, 'End_Lon': -74.013595, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720992, 'Start_Lon': -74.000625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-27 18:46:00', 'Trip_Pickup_DateTime': '2009-06-27 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81735, 'End_Lon': -73.823517, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.844672, 'Start_Lon': -73.940405, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.4, 'Trip_Distance': 7.62, 'Trip_Dropoff_DateTime': '2009-06-27 03:21:00', 'Trip_Pickup_DateTime': '2009-06-27 03:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753647, 'End_Lon': -74.00703, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737402, 'Start_Lon': -74.006408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-17 12:28:00', 'Trip_Pickup_DateTime': '2009-06-17 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791422, 'End_Lon': -73.964887, 'Fare_Amt': 15.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744608, 'Start_Lon': -73.978987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.32, 'Trip_Dropoff_DateTime': '2009-06-26 13:35:00', 'Trip_Pickup_DateTime': '2009-06-26 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761405, 'End_Lon': -73.96724, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782052, 'Start_Lon': -73.953763, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-27 22:35:00', 'Trip_Pickup_DateTime': '2009-06-27 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805505, 'End_Lon': -73.964048, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751467, 'Start_Lon': -73.99024, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.41, 'Trip_Dropoff_DateTime': '2009-06-19 14:56:00', 'Trip_Pickup_DateTime': '2009-06-19 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751102, 'End_Lon': -74.010243, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749177, 'Start_Lon': -74.001878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-19 15:35:00', 'Trip_Pickup_DateTime': '2009-06-19 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773875, 'End_Lon': -73.959725, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768558, 'Start_Lon': -73.98474, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-05 07:18:00', 'Trip_Pickup_DateTime': '2009-06-05 07:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724372, 'End_Lon': -73.993653, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738972, 'Start_Lon': -73.991423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-05 02:47:00', 'Trip_Pickup_DateTime': '2009-06-05 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745277, 'End_Lon': -74.007873, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738078, 'Start_Lon': -74.008127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-02 09:55:00', 'Trip_Pickup_DateTime': '2009-06-02 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78108, 'End_Lon': -73.959378, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715382, 'Start_Lon': -74.015842, 'Tip_Amt': 4.74, 'Tolls_Amt': 0.0, 'Total_Amt': 28.44, 'Trip_Distance': 9.03, 'Trip_Dropoff_DateTime': '2009-06-05 12:01:00', 'Trip_Pickup_DateTime': '2009-06-05 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73448, 'End_Lon': -74.002257, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740272, 'Start_Lon': -73.984415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-05 22:15:00', 'Trip_Pickup_DateTime': '2009-06-05 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758035, 'End_Lon': -73.983852, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759852, 'Start_Lon': -73.981282, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 40.21, 'Trip_Dropoff_DateTime': '2009-06-04 20:17:00', 'Trip_Pickup_DateTime': '2009-06-04 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762788, 'End_Lon': -73.963552, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793933, 'Start_Lon': -73.970388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-08 16:31:00', 'Trip_Pickup_DateTime': '2009-06-08 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744683, 'End_Lon': -73.995062, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742033, 'Start_Lon': -73.974782, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-03 08:42:00', 'Trip_Pickup_DateTime': '2009-06-03 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803532, 'End_Lon': -73.968937, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75657, 'Start_Lon': -73.974372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-03 20:13:00', 'Trip_Pickup_DateTime': '2009-06-03 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.813241, 'End_Lon': -73.938715, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.749935, 'Start_Lon': -73.995262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.7, 'Trip_Dropoff_DateTime': '2009-06-28 03:45:23', 'Trip_Pickup_DateTime': '2009-06-28 03:27:30', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75425, 'End_Lon': -73.986088, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748542, 'Start_Lon': -73.984613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-06 11:56:00', 'Trip_Pickup_DateTime': '2009-06-06 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775368, 'End_Lon': -73.980085, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755997, 'Start_Lon': -73.989685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-08 15:19:00', 'Trip_Pickup_DateTime': '2009-06-08 15:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775983, 'End_Lon': -73.961418, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738165, 'Start_Lon': -73.987693, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-06 23:52:00', 'Trip_Pickup_DateTime': '2009-06-06 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765303, 'End_Lon': -73.978195, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76196, 'Start_Lon': -73.960142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-06 16:51:00', 'Trip_Pickup_DateTime': '2009-06-06 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779408, 'End_Lon': -73.955333, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7726, 'Start_Lon': -73.94647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-05 18:12:00', 'Trip_Pickup_DateTime': '2009-06-05 18:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764555, 'End_Lon': -73.974505, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733168, 'Start_Lon': -73.999922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-20 00:48:00', 'Trip_Pickup_DateTime': '2009-06-20 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728095, 'End_Lon': -74.002923, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763432, 'Start_Lon': -73.981413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 6.35, 'Trip_Dropoff_DateTime': '2009-06-20 04:37:00', 'Trip_Pickup_DateTime': '2009-06-20 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752843, 'End_Lon': -73.979357, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766052, 'Start_Lon': -73.981983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-03 18:08:00', 'Trip_Pickup_DateTime': '2009-06-03 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748458, 'End_Lon': -73.98427, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762978, 'Start_Lon': -73.974112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-02 17:58:00', 'Trip_Pickup_DateTime': '2009-06-02 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730317, 'End_Lon': -74.001382, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711745, 'Start_Lon': -74.007717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-20 00:46:00', 'Trip_Pickup_DateTime': '2009-06-20 00:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719023, 'End_Lon': -74.00215, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773025, 'Start_Lon': -73.964312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-04 07:46:00', 'Trip_Pickup_DateTime': '2009-06-04 07:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747368, 'End_Lon': -74.008218, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744462, 'Start_Lon': -73.999032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-20 01:03:00', 'Trip_Pickup_DateTime': '2009-06-20 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793978, 'End_Lon': -73.962892, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747612, 'Start_Lon': -73.978208, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.39, 'Trip_Dropoff_DateTime': '2009-06-05 02:37:00', 'Trip_Pickup_DateTime': '2009-06-05 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767043, 'End_Lon': -73.953658, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743287, 'Start_Lon': -73.98435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-03 20:27:00', 'Trip_Pickup_DateTime': '2009-06-03 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805478, 'End_Lon': -73.9476, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803297, 'Start_Lon': -73.953758, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-20 00:54:00', 'Trip_Pickup_DateTime': '2009-06-20 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791155, 'End_Lon': -73.965392, 'Fare_Amt': 12.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756402, 'Start_Lon': -73.964448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-04 17:24:00', 'Trip_Pickup_DateTime': '2009-06-04 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725457, 'End_Lon': -73.98391, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731543, 'Start_Lon': -74.003235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-05 22:09:00', 'Trip_Pickup_DateTime': '2009-06-05 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779388, 'End_Lon': -73.957695, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761787, 'Start_Lon': -73.983508, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-02 18:23:00', 'Trip_Pickup_DateTime': '2009-06-02 18:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7441, 'End_Lon': -73.988243, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751957, 'Start_Lon': -73.969327, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-20 00:32:00', 'Trip_Pickup_DateTime': '2009-06-20 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736697, 'End_Lon': -73.981963, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72191, 'Start_Lon': -73.988298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-05 04:09:00', 'Trip_Pickup_DateTime': '2009-06-05 04:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755223, 'End_Lon': -73.975767, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764838, 'Start_Lon': -73.984192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-03 09:02:00', 'Trip_Pickup_DateTime': '2009-06-03 08:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790078, 'End_Lon': -73.942797, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733047, 'Start_Lon': -73.999998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.75, 'Trip_Dropoff_DateTime': '2009-06-07 02:35:00', 'Trip_Pickup_DateTime': '2009-06-07 02:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773277, 'End_Lon': -73.959072, 'Fare_Amt': 4.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763702, 'Start_Lon': -73.959212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-04 15:53:00', 'Trip_Pickup_DateTime': '2009-06-04 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748595, 'End_Lon': -73.975555, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788953, 'Start_Lon': -73.976083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-02 22:41:00', 'Trip_Pickup_DateTime': '2009-06-02 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71034, 'End_Lon': -74.01748, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71816, 'Start_Lon': -74.002958, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-06 13:55:00', 'Trip_Pickup_DateTime': '2009-06-06 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750395, 'End_Lon': -73.994727, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739808, 'Start_Lon': -74.002457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-05 20:31:00', 'Trip_Pickup_DateTime': '2009-06-05 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761223, 'End_Lon': -73.969615, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756215, 'Start_Lon': -73.988178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-20 01:04:00', 'Trip_Pickup_DateTime': '2009-06-20 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722625, 'End_Lon': -74.003437, 'Fare_Amt': 10.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75826, 'Start_Lon': -73.969712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-02 16:58:00', 'Trip_Pickup_DateTime': '2009-06-02 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733355, 'End_Lon': -73.979707, 'Fare_Amt': 11.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765392, 'Start_Lon': -73.983743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-03 20:39:00', 'Trip_Pickup_DateTime': '2009-06-03 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750167, 'End_Lon': -73.998363, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727947, 'Start_Lon': -73.993005, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-03 20:21:00', 'Trip_Pickup_DateTime': '2009-06-03 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.888978, 'End_Lon': -73.892332, 'Fare_Amt': 35.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734052, 'Start_Lon': -74.004712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.8, 'Trip_Distance': 14.76, 'Trip_Dropoff_DateTime': '2009-06-07 06:05:00', 'Trip_Pickup_DateTime': '2009-06-07 05:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750568, 'End_Lon': -73.991097, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73907, 'Start_Lon': -73.980098, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-20 00:27:00', 'Trip_Pickup_DateTime': '2009-06-20 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72661, 'End_Lon': -73.989298, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739817, 'Start_Lon': -73.99874, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-20 01:07:00', 'Trip_Pickup_DateTime': '2009-06-20 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77111, 'End_Lon': -73.98694, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79856, 'Start_Lon': -73.970903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-19 22:30:00', 'Trip_Pickup_DateTime': '2009-06-19 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785688, 'End_Lon': -73.9525, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786435, 'Start_Lon': -73.952713, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-04 18:22:00', 'Trip_Pickup_DateTime': '2009-06-04 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774903, 'End_Lon': -73.957608, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751693, 'Start_Lon': -73.97432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-06 12:45:00', 'Trip_Pickup_DateTime': '2009-06-06 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786277, 'End_Lon': -73.951978, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756443, 'Start_Lon': -73.986995, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-03 09:49:00', 'Trip_Pickup_DateTime': '2009-06-03 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.84444, 'End_Lon': -73.911275, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797667, 'Start_Lon': -73.969778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.5, 'Trip_Dropoff_DateTime': '2009-06-06 22:36:00', 'Trip_Pickup_DateTime': '2009-06-06 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788182, 'End_Lon': -73.95353, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782098, 'Start_Lon': -73.955965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-04 08:21:00', 'Trip_Pickup_DateTime': '2009-06-04 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75116, 'End_Lon': -73.991622, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750477, 'Start_Lon': -73.994688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.28, 'Trip_Dropoff_DateTime': '2009-06-04 10:29:00', 'Trip_Pickup_DateTime': '2009-06-04 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762382, 'End_Lon': -73.990142, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744972, 'Start_Lon': -73.998713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-19 22:21:00', 'Trip_Pickup_DateTime': '2009-06-19 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781878, 'End_Lon': -73.957158, 'Fare_Amt': 24.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.692712, 'Start_Lon': -73.993092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.6, 'Trip_Distance': 9.25, 'Trip_Dropoff_DateTime': '2009-06-19 22:01:00', 'Trip_Pickup_DateTime': '2009-06-19 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74561, 'End_Lon': -73.982307, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734052, 'Start_Lon': -73.990755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-03 18:11:00', 'Trip_Pickup_DateTime': '2009-06-03 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76567, 'End_Lon': -73.957423, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780283, 'Start_Lon': -73.95314, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-03 20:14:00', 'Trip_Pickup_DateTime': '2009-06-03 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760925, 'End_Lon': -73.9233, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792715, 'Start_Lon': -73.975182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.02, 'Trip_Dropoff_DateTime': '2009-06-06 02:42:00', 'Trip_Pickup_DateTime': '2009-06-06 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751337, 'End_Lon': -73.976493, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727235, 'Start_Lon': -74.000803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-19 21:09:00', 'Trip_Pickup_DateTime': '2009-06-19 20:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764248, 'End_Lon': -73.988273, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750617, 'Start_Lon': -73.987223, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-02 20:00:00', 'Trip_Pickup_DateTime': '2009-06-02 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739213, 'End_Lon': -73.979893, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758707, 'Start_Lon': -73.98584, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-06 10:00:00', 'Trip_Pickup_DateTime': '2009-06-06 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769825, 'End_Lon': -73.957585, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777507, 'Start_Lon': -73.948975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-06 13:55:00', 'Trip_Pickup_DateTime': '2009-06-06 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740115, 'End_Lon': -74.003755, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750145, 'Start_Lon': -73.99801, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-19 22:29:00', 'Trip_Pickup_DateTime': '2009-06-19 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754975, 'End_Lon': -73.973282, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757648, 'Start_Lon': -73.961355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-04 15:36:00', 'Trip_Pickup_DateTime': '2009-06-04 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.679475, 'End_Lon': -73.964492, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720458, 'Start_Lon': -73.989852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.98, 'Trip_Dropoff_DateTime': '2009-06-03 22:56:00', 'Trip_Pickup_DateTime': '2009-06-03 22:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780255, 'End_Lon': -73.957523, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796687, 'Start_Lon': -73.970477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-02 21:42:00', 'Trip_Pickup_DateTime': '2009-06-02 21:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776465, 'End_Lon': -73.9786, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764367, 'Start_Lon': -73.97311, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-05 19:08:00', 'Trip_Pickup_DateTime': '2009-06-05 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762413, 'End_Lon': -73.961335, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741312, 'Start_Lon': -73.981123, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-05 17:02:00', 'Trip_Pickup_DateTime': '2009-06-05 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740255, 'End_Lon': -73.988212, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772317, 'Start_Lon': -73.978923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-04 22:35:00', 'Trip_Pickup_DateTime': '2009-06-04 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762571, 'End_Lon': -73.965236, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.776237, 'Start_Lon': -73.952888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-24 19:41:42', 'Trip_Pickup_DateTime': '2009-06-24 19:35:04', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.749213, 'End_Lon': -73.983773, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768987, 'Start_Lon': -73.862902, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.65, 'Trip_Distance': 9.06, 'Trip_Dropoff_DateTime': '2009-06-08 16:44:00', 'Trip_Pickup_DateTime': '2009-06-08 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.683845, 'End_Lon': -73.970998, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711165, 'Start_Lon': -74.015663, 'Tip_Amt': 3.08, 'Tolls_Amt': 0.0, 'Total_Amt': 18.48, 'Trip_Distance': 5.27, 'Trip_Dropoff_DateTime': '2009-06-04 00:46:00', 'Trip_Pickup_DateTime': '2009-06-04 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782878, 'End_Lon': -73.955018, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731235, 'Start_Lon': -73.982772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.36, 'Trip_Dropoff_DateTime': '2009-06-07 21:41:00', 'Trip_Pickup_DateTime': '2009-06-07 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73144, 'End_Lon': -74.003307, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709867, 'Start_Lon': -74.016415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-08 07:05:00', 'Trip_Pickup_DateTime': '2009-06-08 06:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768982, 'End_Lon': -73.963083, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78147, 'Start_Lon': -73.956368, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-02 13:12:00', 'Trip_Pickup_DateTime': '2009-06-02 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752758, 'End_Lon': -73.985767, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765675, 'Start_Lon': -73.954813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-03 11:05:00', 'Trip_Pickup_DateTime': '2009-06-03 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755262, 'End_Lon': -73.969437, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749762, 'Start_Lon': -73.981607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-07 00:06:00', 'Trip_Pickup_DateTime': '2009-06-06 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754617, 'End_Lon': -73.965708, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751227, 'Start_Lon': -73.973905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-07 16:22:00', 'Trip_Pickup_DateTime': '2009-06-07 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.624545, 'End_Lon': -74.006097, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.620942, 'Start_Lon': -74.001422, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-04 18:30:00', 'Trip_Pickup_DateTime': '2009-06-04 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734882, 'End_Lon': -73.988905, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748513, 'Start_Lon': -73.992483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-19 22:48:00', 'Trip_Pickup_DateTime': '2009-06-19 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723038, 'End_Lon': -73.979545, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74086, 'Start_Lon': -73.978737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-02 19:21:00', 'Trip_Pickup_DateTime': '2009-06-02 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.677302, 'End_Lon': -73.998417, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73592, 'Start_Lon': -73.98783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.87, 'Trip_Dropoff_DateTime': '2009-06-05 01:12:00', 'Trip_Pickup_DateTime': '2009-06-05 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765615, 'End_Lon': -73.963962, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737948, 'Start_Lon': -74.0056, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-07 10:16:00', 'Trip_Pickup_DateTime': '2009-06-07 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753395, 'End_Lon': -73.98533, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753395, 'Start_Lon': -73.98533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-05 21:44:00', 'Trip_Pickup_DateTime': '2009-06-05 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744613, 'End_Lon': -74.007915, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729818, 'Start_Lon': -73.981027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-07 23:03:00', 'Trip_Pickup_DateTime': '2009-06-07 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.701975, 'End_Lon': -74.010543, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768803, 'Start_Lon': -73.961528, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 20.0, 'Trip_Distance': 6.79, 'Trip_Dropoff_DateTime': '2009-06-02 08:40:00', 'Trip_Pickup_DateTime': '2009-06-02 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761373, 'End_Lon': -73.971132, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745578, 'Start_Lon': -73.990903, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-05 09:58:00', 'Trip_Pickup_DateTime': '2009-06-05 09:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73836, 'End_Lon': -73.993243, 'Fare_Amt': 13.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77046, 'Start_Lon': -73.957247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-19 19:44:00', 'Trip_Pickup_DateTime': '2009-06-19 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80236, 'End_Lon': -73.942595, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777795, 'Start_Lon': -73.951682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-06 22:17:00', 'Trip_Pickup_DateTime': '2009-06-06 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751785, 'End_Lon': -73.97465, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752625, 'Start_Lon': -73.982358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-02 14:42:00', 'Trip_Pickup_DateTime': '2009-06-02 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748273, 'End_Lon': -73.970915, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755868, 'Start_Lon': -73.98555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-03 11:56:00', 'Trip_Pickup_DateTime': '2009-06-03 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730545, 'End_Lon': -73.995203, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733525, 'Start_Lon': -73.999362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-04 09:14:00', 'Trip_Pickup_DateTime': '2009-06-04 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793527, 'End_Lon': -73.967237, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769195, 'Start_Lon': -73.954962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-02 11:18:00', 'Trip_Pickup_DateTime': '2009-06-02 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750598, 'End_Lon': -73.979047, 'Fare_Amt': 4.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754628, 'Start_Lon': -73.99134, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-03 14:50:00', 'Trip_Pickup_DateTime': '2009-06-03 14:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76205, 'End_Lon': -73.972702, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74592, 'Start_Lon': -74.005352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-04 13:45:00', 'Trip_Pickup_DateTime': '2009-06-04 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753975, 'End_Lon': -73.97724, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744182, 'Start_Lon': -73.992228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-07 14:28:00', 'Trip_Pickup_DateTime': '2009-06-07 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774765, 'End_Lon': -73.982517, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762053, 'Start_Lon': -73.968175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-05 19:42:00', 'Trip_Pickup_DateTime': '2009-06-05 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784688, 'End_Lon': -73.955978, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779915, 'Start_Lon': -73.950477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-06 21:53:00', 'Trip_Pickup_DateTime': '2009-06-06 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70571, 'End_Lon': -74.005502, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767233, 'Start_Lon': -73.953468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 6.12, 'Trip_Dropoff_DateTime': '2009-06-03 09:23:00', 'Trip_Pickup_DateTime': '2009-06-03 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75421, 'End_Lon': -73.980008, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764027, 'Start_Lon': -73.972912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-05 15:25:00', 'Trip_Pickup_DateTime': '2009-06-05 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755553, 'End_Lon': -73.984133, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.712585, 'Start_Lon': -74.015213, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.08, 'Trip_Dropoff_DateTime': '2009-06-03 06:47:00', 'Trip_Pickup_DateTime': '2009-06-03 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72455, 'End_Lon': -73.994475, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743583, 'Start_Lon': -73.989565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-06 23:09:00', 'Trip_Pickup_DateTime': '2009-06-06 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 3.1, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-29 18:19:00', 'Trip_Pickup_DateTime': '2009-06-29 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-17 20:58:00', 'Trip_Pickup_DateTime': '2009-06-17 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761107, 'End_Lon': -73.990568, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74318, 'Start_Lon': -73.984227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-17 21:10:00', 'Trip_Pickup_DateTime': '2009-06-17 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742933, 'End_Lon': -73.992668, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761717, 'Start_Lon': -73.967385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-06 17:05:00', 'Trip_Pickup_DateTime': '2009-06-06 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780268, 'End_Lon': -73.956892, 'Fare_Amt': 2.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780848, 'Start_Lon': -73.956855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-03 16:32:00', 'Trip_Pickup_DateTime': '2009-06-03 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714878, 'End_Lon': -74.01504, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75019, 'Start_Lon': -73.991588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-08 16:35:00', 'Trip_Pickup_DateTime': '2009-06-08 16:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761882, 'End_Lon': -74.000995, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711312, 'Start_Lon': -74.015843, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 3.93, 'Trip_Dropoff_DateTime': '2009-06-02 09:44:00', 'Trip_Pickup_DateTime': '2009-06-02 09:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737678, 'End_Lon': -74.00555, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745318, 'Start_Lon': -73.994747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-20 18:31:00', 'Trip_Pickup_DateTime': '2009-06-20 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756567, 'End_Lon': -73.985823, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763572, 'Start_Lon': -73.97295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-20 15:31:00', 'Trip_Pickup_DateTime': '2009-06-20 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721717, 'End_Lon': -74.001385, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75562, 'Start_Lon': -73.9888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-07 14:15:00', 'Trip_Pickup_DateTime': '2009-06-07 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771455, 'End_Lon': -73.982065, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77468, 'Start_Lon': -73.958163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-06 18:00:00', 'Trip_Pickup_DateTime': '2009-06-06 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784458, 'End_Lon': -73.98119, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784848, 'Start_Lon': -73.953905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-04 14:47:00', 'Trip_Pickup_DateTime': '2009-06-04 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778877, 'End_Lon': -73.947778, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761188, 'Start_Lon': -73.968862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-20 19:40:00', 'Trip_Pickup_DateTime': '2009-06-20 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75024, 'End_Lon': -73.991142, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781323, 'Start_Lon': -73.98332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-20 18:15:00', 'Trip_Pickup_DateTime': '2009-06-20 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747218, 'End_Lon': -74.00118, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72055, 'Start_Lon': -74.010703, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-02 18:39:00', 'Trip_Pickup_DateTime': '2009-06-02 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763942, 'End_Lon': -73.975848, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732407, 'Start_Lon': -73.990093, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-02 09:00:00', 'Trip_Pickup_DateTime': '2009-06-02 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809308, 'End_Lon': -73.964202, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790697, 'Start_Lon': -73.97473, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-04 17:22:00', 'Trip_Pickup_DateTime': '2009-06-04 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774283, 'End_Lon': -73.872188, 'Fare_Amt': 26.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788758, 'Start_Lon': -73.977947, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.65, 'Trip_Distance': 9.31, 'Trip_Dropoff_DateTime': '2009-06-03 14:20:00', 'Trip_Pickup_DateTime': '2009-06-03 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695798, 'End_Lon': -73.984417, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.687322, 'Start_Lon': -73.976833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-06 17:55:00', 'Trip_Pickup_DateTime': '2009-06-06 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761053, 'End_Lon': -73.997488, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734847, 'Start_Lon': -74.00701, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-02 21:17:00', 'Trip_Pickup_DateTime': '2009-06-02 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727126, 'End_Lon': -74.005957, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.739361, 'Start_Lon': -74.006522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-13 03:27:23', 'Trip_Pickup_DateTime': '2009-06-13 03:20:26', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.714715, 'End_Lon': -74.015685, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711163, 'Start_Lon': -74.000387, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-02 08:38:00', 'Trip_Pickup_DateTime': '2009-06-02 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765653, 'End_Lon': -73.976188, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769738, 'Start_Lon': -73.980602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-20 18:49:00', 'Trip_Pickup_DateTime': '2009-06-20 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.811693, 'End_Lon': -73.963062, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802652, 'Start_Lon': -73.967385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-07 14:00:00', 'Trip_Pickup_DateTime': '2009-06-07 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757175, 'End_Lon': -73.97682, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754097, 'Start_Lon': -73.971793, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-05 13:54:00', 'Trip_Pickup_DateTime': '2009-06-05 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729317, 'End_Lon': -74.001452, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727185, 'Start_Lon': -73.991918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-07 01:05:00', 'Trip_Pickup_DateTime': '2009-06-07 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750387, 'End_Lon': -73.99876, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734137, 'Start_Lon': -74.006388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-05 15:23:00', 'Trip_Pickup_DateTime': '2009-06-05 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762366, 'End_Lon': -73.996457, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.761198, 'Start_Lon': -73.995145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.1, 'Trip_Dropoff_DateTime': '2009-06-20 14:52:15', 'Trip_Pickup_DateTime': '2009-06-20 14:46:49', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.847928, 'End_Lon': -73.937498, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739808, 'Start_Lon': -73.994883, 'Tip_Amt': 5.7, 'Tolls_Amt': 0.0, 'Total_Amt': 34.2, 'Trip_Distance': 9.42, 'Trip_Dropoff_DateTime': '2009-06-02 16:47:00', 'Trip_Pickup_DateTime': '2009-06-02 15:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765087, 'End_Lon': -73.982378, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762825, 'Start_Lon': -73.979965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-05 18:35:00', 'Trip_Pickup_DateTime': '2009-06-05 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762263, 'End_Lon': -73.997337, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7647, 'Start_Lon': -73.988042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-20 16:50:00', 'Trip_Pickup_DateTime': '2009-06-20 16:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745307, 'End_Lon': -74.007948, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757413, 'Start_Lon': -73.982912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-20 15:25:00', 'Trip_Pickup_DateTime': '2009-06-20 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704195, 'End_Lon': -73.93878, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74984, 'Start_Lon': -73.992208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 6.18, 'Trip_Dropoff_DateTime': '2009-06-07 15:50:00', 'Trip_Pickup_DateTime': '2009-06-07 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761817, 'End_Lon': -73.971402, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758023, 'Start_Lon': -74.000722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-29 14:08:00', 'Trip_Pickup_DateTime': '2009-06-29 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757512, 'End_Lon': -73.88386, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74829, 'Start_Lon': -73.982537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-04 23:06:00', 'Trip_Pickup_DateTime': '2009-06-04 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764287, 'End_Lon': -73.971112, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72334, 'Start_Lon': -73.999595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-02 12:48:00', 'Trip_Pickup_DateTime': '2009-06-02 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765688, 'End_Lon': -73.980413, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778988, 'Start_Lon': -73.981878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-07 18:57:00', 'Trip_Pickup_DateTime': '2009-06-07 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782983, 'End_Lon': -73.978952, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78673, 'Start_Lon': -73.978382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-20 15:22:00', 'Trip_Pickup_DateTime': '2009-06-20 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783195, 'End_Lon': -73.974277, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735978, 'Start_Lon': -74.00482, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-06 23:54:00', 'Trip_Pickup_DateTime': '2009-06-06 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768538, 'End_Lon': -73.981855, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747623, 'Start_Lon': -73.972597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-20 15:32:00', 'Trip_Pickup_DateTime': '2009-06-20 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774797, 'End_Lon': -73.9509, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732013, 'Start_Lon': -73.982172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-07 19:49:00', 'Trip_Pickup_DateTime': '2009-06-07 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767815, 'End_Lon': -73.985475, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76111, 'Start_Lon': -73.998055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-05 13:15:00', 'Trip_Pickup_DateTime': '2009-06-05 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72427, 'End_Lon': -74.001272, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706307, 'Start_Lon': -74.016138, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-04 20:54:00', 'Trip_Pickup_DateTime': '2009-06-04 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-20 15:41:00', 'Trip_Pickup_DateTime': '2009-06-20 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774805, 'End_Lon': -73.981252, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777097, 'Start_Lon': -73.952385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-04 21:47:00', 'Trip_Pickup_DateTime': '2009-06-04 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.672587, 'End_Lon': -73.827222, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.670785, 'Start_Lon': -73.823545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-20 14:36:00', 'Trip_Pickup_DateTime': '2009-06-20 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737713, 'End_Lon': -73.986245, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753128, 'Start_Lon': -73.977062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-29 18:54:00', 'Trip_Pickup_DateTime': '2009-06-29 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745017, 'End_Lon': -73.979987, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740258, 'Start_Lon': -73.985498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-06 00:26:00', 'Trip_Pickup_DateTime': '2009-06-06 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.647902, 'End_Lon': -73.962585, 'Fare_Amt': 44.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771267, 'Start_Lon': -73.865622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 44.1, 'Trip_Distance': 19.39, 'Trip_Dropoff_DateTime': '2009-06-20 15:41:00', 'Trip_Pickup_DateTime': '2009-06-20 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746942, 'End_Lon': -73.990097, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760383, 'Start_Lon': -73.983323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-03 19:50:00', 'Trip_Pickup_DateTime': '2009-06-03 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725158, 'End_Lon': -73.941577, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750277, 'Start_Lon': -73.991558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.19, 'Trip_Dropoff_DateTime': '2009-06-03 01:36:00', 'Trip_Pickup_DateTime': '2009-06-03 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768303, 'End_Lon': -73.861645, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761783, 'Start_Lon': -73.978833, 'Tip_Amt': 3.0, 'Tolls_Amt': 4.15, 'Total_Amt': 33.35, 'Trip_Distance': 11.19, 'Trip_Dropoff_DateTime': '2009-06-02 05:15:00', 'Trip_Pickup_DateTime': '2009-06-02 04:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766852, 'End_Lon': -73.953647, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740758, 'Start_Lon': -74.004977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-03 19:48:00', 'Trip_Pickup_DateTime': '2009-06-03 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733815, 'End_Lon': -73.99936, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722438, 'Start_Lon': -74.003607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-02 17:32:00', 'Trip_Pickup_DateTime': '2009-06-02 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763902, 'End_Lon': -73.997698, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759355, 'Start_Lon': -73.965208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-07 23:38:00', 'Trip_Pickup_DateTime': '2009-06-07 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774045, 'End_Lon': -73.988757, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726223, 'Start_Lon': -73.991837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.41, 'Trip_Dropoff_DateTime': '2009-06-07 23:22:00', 'Trip_Pickup_DateTime': '2009-06-07 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.840555, 'End_Lon': -73.940303, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787068, 'Start_Lon': -73.968125, 'Tip_Amt': 2.25, 'Tolls_Amt': 0.0, 'Total_Amt': 16.75, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-04 08:31:00', 'Trip_Pickup_DateTime': '2009-06-04 08:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800977, 'End_Lon': -73.949262, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747577, 'Start_Lon': -73.989367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.81, 'Trip_Dropoff_DateTime': '2009-06-02 11:25:00', 'Trip_Pickup_DateTime': '2009-06-02 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74839, 'End_Lon': -73.980948, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757258, 'Start_Lon': -73.985782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-20 14:18:00', 'Trip_Pickup_DateTime': '2009-06-20 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793313, 'End_Lon': -73.970962, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761353, 'Start_Lon': -73.994255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-08 02:54:00', 'Trip_Pickup_DateTime': '2009-06-08 02:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791085, 'End_Lon': -73.944987, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75564, 'Start_Lon': -73.970795, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.25, 'Trip_Dropoff_DateTime': '2009-06-20 02:05:00', 'Trip_Pickup_DateTime': '2009-06-20 01:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731223, 'End_Lon': -73.985765, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706555, 'Start_Lon': -74.014078, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.84, 'Trip_Dropoff_DateTime': '2009-06-04 21:57:00', 'Trip_Pickup_DateTime': '2009-06-04 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.646907, 'End_Lon': -73.79027, 'Fare_Amt': 45.0, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753533, 'Start_Lon': -73.986758, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.07, 'Trip_Dropoff_DateTime': '2009-06-02 15:03:00', 'Trip_Pickup_DateTime': '2009-06-02 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792302, 'End_Lon': -73.946642, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794493, 'Start_Lon': -73.971475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-20 02:13:00', 'Trip_Pickup_DateTime': '2009-06-20 02:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773077, 'End_Lon': -73.916538, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767777, 'Start_Lon': -73.981112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-07 02:48:00', 'Trip_Pickup_DateTime': '2009-06-07 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.808627, 'End_Lon': -73.966032, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745457, 'Start_Lon': -73.978037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 5.63, 'Trip_Dropoff_DateTime': '2009-06-06 09:17:00', 'Trip_Pickup_DateTime': '2009-06-06 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800063, 'End_Lon': -73.944997, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800063, 'Start_Lon': -73.944997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-19 21:51:00', 'Trip_Pickup_DateTime': '2009-06-19 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749992, 'End_Lon': -74.0026, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729613, 'Start_Lon': -73.989675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-20 01:28:00', 'Trip_Pickup_DateTime': '2009-06-20 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751597, 'End_Lon': -73.993695, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755895, 'Start_Lon': -73.986782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-03 21:26:00', 'Trip_Pickup_DateTime': '2009-06-03 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76743, 'End_Lon': -73.996127, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751667, 'Start_Lon': -73.993955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-04 23:47:00', 'Trip_Pickup_DateTime': '2009-06-04 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708425, 'End_Lon': -74.004552, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730693, 'Start_Lon': -73.989092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-06 04:24:00', 'Trip_Pickup_DateTime': '2009-06-06 04:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762673, 'End_Lon': -74.001248, 'Fare_Amt': 11.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748223, 'Start_Lon': -73.98492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-08 15:22:00', 'Trip_Pickup_DateTime': '2009-06-08 15:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76615, 'End_Lon': -73.946777, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752012, 'Start_Lon': -73.977518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.26, 'Trip_Dropoff_DateTime': '2009-06-06 15:08:00', 'Trip_Pickup_DateTime': '2009-06-06 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763968, 'End_Lon': -73.976963, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755477, 'Start_Lon': -73.975315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-02 14:51:00', 'Trip_Pickup_DateTime': '2009-06-02 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771485, 'End_Lon': -73.956097, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742365, 'Start_Lon': -74.00437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.66, 'Trip_Dropoff_DateTime': '2009-06-20 04:14:00', 'Trip_Pickup_DateTime': '2009-06-20 03:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74475, 'End_Lon': -73.987352, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74475, 'Start_Lon': -73.987352, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-08 00:54:00', 'Trip_Pickup_DateTime': '2009-06-08 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73553, 'End_Lon': -73.979765, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74207, 'Start_Lon': -74.00779, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-07 00:25:00', 'Trip_Pickup_DateTime': '2009-06-07 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721342, 'End_Lon': -74.009915, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786423, 'Start_Lon': -73.968672, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 6.15, 'Trip_Dropoff_DateTime': '2009-06-05 07:31:00', 'Trip_Pickup_DateTime': '2009-06-05 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746273, 'End_Lon': -73.908067, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747947, 'Start_Lon': -73.985238, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.49, 'Trip_Dropoff_DateTime': '2009-06-05 03:00:00', 'Trip_Pickup_DateTime': '2009-06-05 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753313, 'End_Lon': -73.979077, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770645, 'Start_Lon': -73.978138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-03 06:11:00', 'Trip_Pickup_DateTime': '2009-06-03 06:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808113, 'End_Lon': -73.954675, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80268, 'Start_Lon': -73.964738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-20 03:56:00', 'Trip_Pickup_DateTime': '2009-06-20 03:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768325, 'End_Lon': -73.952757, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774415, 'Start_Lon': -73.963455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-03 15:15:00', 'Trip_Pickup_DateTime': '2009-06-03 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728495, 'End_Lon': -73.889153, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729947, 'Start_Lon': -73.992625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.9, 'Trip_Dropoff_DateTime': '2009-06-03 23:42:00', 'Trip_Pickup_DateTime': '2009-06-03 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75573, 'End_Lon': -73.974185, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758855, 'Start_Lon': -73.988583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-06 21:19:00', 'Trip_Pickup_DateTime': '2009-06-06 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749562, 'End_Lon': -73.987068, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745562, 'Start_Lon': -73.979572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-04 18:20:00', 'Trip_Pickup_DateTime': '2009-06-04 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783478, 'End_Lon': -73.945013, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731272, 'Start_Lon': -74.001348, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 6.08, 'Trip_Dropoff_DateTime': '2009-06-04 00:17:00', 'Trip_Pickup_DateTime': '2009-06-03 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748808, 'End_Lon': -73.971052, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76776, 'Start_Lon': -73.970498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-06 20:21:00', 'Trip_Pickup_DateTime': '2009-06-06 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787378, 'End_Lon': -73.968315, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784927, 'Start_Lon': -73.949567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-05 08:48:00', 'Trip_Pickup_DateTime': '2009-06-05 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743268, 'End_Lon': -74.000062, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75752, 'Start_Lon': -73.979078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-08 00:08:00', 'Trip_Pickup_DateTime': '2009-06-08 00:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754742, 'End_Lon': -73.97753, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761263, 'Start_Lon': -73.975222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-19 23:22:00', 'Trip_Pickup_DateTime': '2009-06-19 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805017, 'End_Lon': -73.939182, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791582, 'Start_Lon': -73.964582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-05 08:22:00', 'Trip_Pickup_DateTime': '2009-06-05 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755018, 'End_Lon': -73.973793, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76425, 'Start_Lon': -73.97648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-05 14:36:00', 'Trip_Pickup_DateTime': '2009-06-05 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751592, 'End_Lon': -73.97682, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769947, 'Start_Lon': -73.96869, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-06 15:42:00', 'Trip_Pickup_DateTime': '2009-06-06 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762805, 'End_Lon': -73.967983, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78585, 'Start_Lon': -73.957182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-08 05:54:00', 'Trip_Pickup_DateTime': '2009-06-08 05:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.687947, 'End_Lon': -73.962003, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713227, 'Start_Lon': -73.9584, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-20 03:54:00', 'Trip_Pickup_DateTime': '2009-06-20 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785873, 'End_Lon': -73.951062, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720153, 'Start_Lon': -73.9884, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 7.76, 'Trip_Dropoff_DateTime': '2009-06-20 04:26:00', 'Trip_Pickup_DateTime': '2009-06-20 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.830562, 'End_Lon': -73.927187, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764307, 'Start_Lon': -73.986988, 'Tip_Amt': 4.26, 'Tolls_Amt': 0.0, 'Total_Amt': 25.56, 'Trip_Distance': 8.19, 'Trip_Dropoff_DateTime': '2009-06-07 10:15:00', 'Trip_Pickup_DateTime': '2009-06-07 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791753, 'End_Lon': -73.96483, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77638, 'Start_Lon': -73.9555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-20 03:13:00', 'Trip_Pickup_DateTime': '2009-06-20 03:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764313, 'End_Lon': -73.970175, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756312, 'Start_Lon': -73.98337, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-03 11:00:00', 'Trip_Pickup_DateTime': '2009-06-03 10:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763593, 'End_Lon': -73.986027, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773863, 'Start_Lon': -73.982195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-06 12:36:00', 'Trip_Pickup_DateTime': '2009-06-06 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73685, 'End_Lon': -73.973685, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731448, 'Start_Lon': -73.982442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-05 23:40:00', 'Trip_Pickup_DateTime': '2009-06-05 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760463, 'End_Lon': -74.002407, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.710202, 'Start_Lon': -74.01128, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-04 22:37:00', 'Trip_Pickup_DateTime': '2009-06-04 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75724, 'End_Lon': -73.960835, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759682, 'Start_Lon': -73.988092, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-02 22:43:00', 'Trip_Pickup_DateTime': '2009-06-02 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760305, 'End_Lon': -73.95797, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720493, 'Start_Lon': -73.996933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.47, 'Trip_Dropoff_DateTime': '2009-06-02 20:32:00', 'Trip_Pickup_DateTime': '2009-06-02 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749277, 'End_Lon': -73.992077, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763387, 'Start_Lon': -73.981837, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-05 15:30:00', 'Trip_Pickup_DateTime': '2009-06-05 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739063, 'End_Lon': -73.983063, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768315, 'Start_Lon': -73.9682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-05 22:50:00', 'Trip_Pickup_DateTime': '2009-06-05 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774307, 'End_Lon': -73.873227, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759275, 'Start_Lon': -73.987215, 'Tip_Amt': 7.38, 'Tolls_Amt': 0.0, 'Total_Amt': 31.98, 'Trip_Distance': 10.58, 'Trip_Dropoff_DateTime': '2009-06-07 05:19:00', 'Trip_Pickup_DateTime': '2009-06-07 04:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756317, 'End_Lon': -73.962508, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755262, 'Start_Lon': -73.974437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-03 19:11:00', 'Trip_Pickup_DateTime': '2009-06-03 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771192, 'End_Lon': -73.95337, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728793, 'Start_Lon': -73.984422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-08 15:28:00', 'Trip_Pickup_DateTime': '2009-06-08 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.813902, 'End_Lon': -73.954143, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.68773, 'Start_Lon': -73.986822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.6, 'Trip_Distance': 10.94, 'Trip_Dropoff_DateTime': '2009-06-20 22:59:00', 'Trip_Pickup_DateTime': '2009-06-20 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756713, 'End_Lon': -73.987838, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761825, 'Start_Lon': -73.986147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-03 09:21:00', 'Trip_Pickup_DateTime': '2009-06-03 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776925, 'End_Lon': -73.949203, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763353, 'Start_Lon': -73.965132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-08 14:47:00', 'Trip_Pickup_DateTime': '2009-06-08 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757792, 'End_Lon': -73.88867, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741437, 'Start_Lon': -73.981198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 6.92, 'Trip_Dropoff_DateTime': '2009-06-07 05:46:00', 'Trip_Pickup_DateTime': '2009-06-07 05:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780095, 'End_Lon': -73.95727, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77013, 'Start_Lon': -73.951392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-04 14:30:00', 'Trip_Pickup_DateTime': '2009-06-04 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766745, 'End_Lon': -73.98648, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780713, 'Start_Lon': -73.952622, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-02 09:20:00', 'Trip_Pickup_DateTime': '2009-06-02 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73551, 'End_Lon': -73.985685, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743535, 'Start_Lon': -73.984225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-05 13:45:00', 'Trip_Pickup_DateTime': '2009-06-05 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738583, 'End_Lon': -73.985137, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7225, 'Start_Lon': -73.999125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-05 15:59:00', 'Trip_Pickup_DateTime': '2009-06-05 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724557, 'End_Lon': -73.978662, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728042, 'Start_Lon': -73.993223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-07 01:04:00', 'Trip_Pickup_DateTime': '2009-06-07 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758975, 'End_Lon': -73.976947, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769833, 'Start_Lon': -73.95145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-04 08:16:00', 'Trip_Pickup_DateTime': '2009-06-04 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742917, 'End_Lon': -73.988385, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755267, 'Start_Lon': -73.979052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-07 03:21:00', 'Trip_Pickup_DateTime': '2009-06-07 03:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762397, 'End_Lon': -73.970588, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741787, 'Start_Lon': -73.993988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-04 09:59:00', 'Trip_Pickup_DateTime': '2009-06-04 09:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735273, 'End_Lon': -74.001742, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756033, 'Start_Lon': -73.9908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-03 19:03:00', 'Trip_Pickup_DateTime': '2009-06-03 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772355, 'End_Lon': -73.952852, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746387, 'Start_Lon': -73.985023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-02 13:18:00', 'Trip_Pickup_DateTime': '2009-06-02 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752963, 'End_Lon': -73.9384, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759893, 'Start_Lon': -73.931773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-02 14:54:00', 'Trip_Pickup_DateTime': '2009-06-02 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748762, 'End_Lon': -73.996163, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732525, 'Start_Lon': -74.008488, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-07 14:08:00', 'Trip_Pickup_DateTime': '2009-06-07 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777085, 'End_Lon': -73.957715, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725823, 'Start_Lon': -74.000872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.68, 'Trip_Dropoff_DateTime': '2009-06-07 18:14:00', 'Trip_Pickup_DateTime': '2009-06-07 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766527, 'End_Lon': -73.922827, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744093, 'Start_Lon': -73.988, 'Tip_Amt': 3.24, 'Tolls_Amt': 0.0, 'Total_Amt': 19.44, 'Trip_Distance': 5.68, 'Trip_Dropoff_DateTime': '2009-06-05 01:36:00', 'Trip_Pickup_DateTime': '2009-06-05 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.811918, 'End_Lon': -73.961395, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798733, 'Start_Lon': -73.963308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-07 13:32:00', 'Trip_Pickup_DateTime': '2009-06-07 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724287, 'End_Lon': -73.988815, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739047, 'Start_Lon': -73.983445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-03 23:45:00', 'Trip_Pickup_DateTime': '2009-06-03 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793248, 'End_Lon': -73.967302, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74335, 'Start_Lon': -73.98599, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-04 18:30:00', 'Trip_Pickup_DateTime': '2009-06-04 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769222, 'End_Lon': -73.982105, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778973, 'Start_Lon': -73.957917, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-02 19:27:00', 'Trip_Pickup_DateTime': '2009-06-02 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731063, 'End_Lon': -73.997733, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722962, 'Start_Lon': -74.008932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-03 17:38:00', 'Trip_Pickup_DateTime': '2009-06-03 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738265, 'End_Lon': -74.00205, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734718, 'Start_Lon': -73.990783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-20 18:56:00', 'Trip_Pickup_DateTime': '2009-06-20 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756402, 'End_Lon': -73.972673, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72894, 'Start_Lon': -74.005265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-06 18:38:00', 'Trip_Pickup_DateTime': '2009-06-06 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778167, 'End_Lon': -73.96244, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782978, 'Start_Lon': -73.953008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-03 09:21:00', 'Trip_Pickup_DateTime': '2009-06-03 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785323, 'End_Lon': -73.953868, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77457, 'Start_Lon': -73.960047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-20 21:49:00', 'Trip_Pickup_DateTime': '2009-06-20 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72525, 'End_Lon': -73.987452, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747345, 'Start_Lon': -73.972063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-05 21:37:00', 'Trip_Pickup_DateTime': '2009-06-05 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737306, 'End_Lon': -73.985163, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.744179, 'Start_Lon': -73.983475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-20 20:08:15', 'Trip_Pickup_DateTime': '2009-06-20 20:04:06', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.767713, 'End_Lon': -73.983173, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76135, 'Start_Lon': -73.999475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-20 10:06:00', 'Trip_Pickup_DateTime': '2009-06-20 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743067, 'End_Lon': -73.977117, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71449, 'Start_Lon': -73.981707, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-05 18:34:00', 'Trip_Pickup_DateTime': '2009-06-05 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726547, 'End_Lon': -73.994157, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725947, 'Start_Lon': -73.983637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-08 01:44:00', 'Trip_Pickup_DateTime': '2009-06-08 01:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764962, 'End_Lon': -73.97144, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731247, 'Start_Lon': -73.992062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-04 11:04:00', 'Trip_Pickup_DateTime': '2009-06-04 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741518, 'End_Lon': -73.99544, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763288, 'Start_Lon': -73.974542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-20 09:45:00', 'Trip_Pickup_DateTime': '2009-06-20 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804582, 'End_Lon': -73.955232, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755032, 'Start_Lon': -73.991588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-04 19:14:00', 'Trip_Pickup_DateTime': '2009-06-04 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789023, 'End_Lon': -73.973787, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773548, 'Start_Lon': -73.948058, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-08 01:34:00', 'Trip_Pickup_DateTime': '2009-06-08 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76198, 'End_Lon': -73.961715, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779695, 'Start_Lon': -73.95763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-20 19:57:00', 'Trip_Pickup_DateTime': '2009-06-20 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752198, 'End_Lon': -73.975402, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762542, 'Start_Lon': -73.96649, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-20 09:47:00', 'Trip_Pickup_DateTime': '2009-06-20 09:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742067, 'End_Lon': -73.97471, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753308, 'Start_Lon': -73.975075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-03 14:42:00', 'Trip_Pickup_DateTime': '2009-06-03 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761932, 'End_Lon': -73.979787, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716368, 'Start_Lon': -73.996282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-04 19:37:00', 'Trip_Pickup_DateTime': '2009-06-04 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786423, 'End_Lon': -73.968513, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772262, 'Start_Lon': -73.955912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-05 03:33:00', 'Trip_Pickup_DateTime': '2009-06-05 03:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737528, 'End_Lon': -73.987648, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766048, 'Start_Lon': -73.954365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-03 19:39:00', 'Trip_Pickup_DateTime': '2009-06-03 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776855, 'End_Lon': -73.961905, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762142, 'Start_Lon': -73.972955, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-20 09:37:00', 'Trip_Pickup_DateTime': '2009-06-20 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721807, 'End_Lon': -73.986427, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713762, 'Start_Lon': -73.972518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-07 03:11:00', 'Trip_Pickup_DateTime': '2009-06-07 03:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745945, 'End_Lon': -73.9821, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721612, 'Start_Lon': -73.99352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-04 22:17:00', 'Trip_Pickup_DateTime': '2009-06-04 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727078, 'End_Lon': -73.987952, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779478, 'Start_Lon': -73.950702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.27, 'Trip_Dropoff_DateTime': '2009-06-07 00:44:00', 'Trip_Pickup_DateTime': '2009-06-07 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764268, 'End_Lon': -73.963156, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.768265, 'Start_Lon': -73.982384, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-20 19:44:13', 'Trip_Pickup_DateTime': '2009-06-20 19:35:20', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.736073, 'End_Lon': -73.987288, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781152, 'Start_Lon': -73.959567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-04 20:01:00', 'Trip_Pickup_DateTime': '2009-06-04 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7617, 'End_Lon': -73.970012, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756452, 'Start_Lon': -73.97627, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-04 10:34:00', 'Trip_Pickup_DateTime': '2009-06-04 10:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760972, 'End_Lon': -73.984775, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752907, 'Start_Lon': -73.992643, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-20 06:49:00', 'Trip_Pickup_DateTime': '2009-06-20 06:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72197, 'End_Lon': -73.983238, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757712, 'Start_Lon': -73.989798, 'Tip_Amt': 3.06, 'Tolls_Amt': 0.0, 'Total_Amt': 18.36, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-06 20:03:00', 'Trip_Pickup_DateTime': '2009-06-06 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732888, 'End_Lon': -74.007127, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721865, 'Start_Lon': -74.004177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-20 21:28:00', 'Trip_Pickup_DateTime': '2009-06-20 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763615, 'End_Lon': -73.965407, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773738, 'Start_Lon': -73.964073, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-04 16:59:00', 'Trip_Pickup_DateTime': '2009-06-04 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734692, 'End_Lon': -73.974382, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737565, 'Start_Lon': -73.972398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-02 19:09:00', 'Trip_Pickup_DateTime': '2009-06-02 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708683, 'End_Lon': -74.002728, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722492, 'Start_Lon': -73.99329, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-03 21:46:00', 'Trip_Pickup_DateTime': '2009-06-03 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751728, 'End_Lon': -73.98638, 'Fare_Amt': 7.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737257, 'Start_Lon': -73.992648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-20 21:24:00', 'Trip_Pickup_DateTime': '2009-06-20 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739788, 'End_Lon': -73.99058, 'Fare_Amt': 35.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739897, 'Start_Lon': -73.990478, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-05 14:52:00', 'Trip_Pickup_DateTime': '2009-06-05 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75389, 'End_Lon': -73.977235, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756915, 'Start_Lon': -73.967405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-04 08:07:00', 'Trip_Pickup_DateTime': '2009-06-04 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76287, 'End_Lon': -73.9804, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751747, 'Start_Lon': -73.975533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-03 16:53:00', 'Trip_Pickup_DateTime': '2009-06-03 16:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776335, 'End_Lon': -73.954438, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734628, 'Start_Lon': -73.98624, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-06 23:13:00', 'Trip_Pickup_DateTime': '2009-06-06 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759967, 'End_Lon': -73.897972, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764535, 'Start_Lon': -73.980617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 7.64, 'Trip_Dropoff_DateTime': '2009-06-07 02:47:00', 'Trip_Pickup_DateTime': '2009-06-07 02:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751788, 'End_Lon': -73.977095, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736578, 'Start_Lon': -73.97882, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-20 08:21:00', 'Trip_Pickup_DateTime': '2009-06-20 08:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75, 'End_Lon': -73.991823, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784463, 'Start_Lon': -73.973677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-05 12:56:00', 'Trip_Pickup_DateTime': '2009-06-05 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730848, 'End_Lon': -73.988788, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760608, 'Start_Lon': -73.962748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-04 00:07:00', 'Trip_Pickup_DateTime': '2009-06-03 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751455, 'End_Lon': -73.971318, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76373, 'Start_Lon': -73.973508, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-05 13:23:00', 'Trip_Pickup_DateTime': '2009-06-05 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761192, 'End_Lon': -73.97967, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719258, 'Start_Lon': -73.999887, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-05 10:01:00', 'Trip_Pickup_DateTime': '2009-06-05 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723838, 'End_Lon': -74.000335, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705513, 'Start_Lon': -74.013493, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-20 20:19:00', 'Trip_Pickup_DateTime': '2009-06-20 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771623, 'End_Lon': -73.982578, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760195, 'Start_Lon': -73.9761, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-20 19:58:00', 'Trip_Pickup_DateTime': '2009-06-20 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743873, 'End_Lon': -73.999147, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75021, 'Start_Lon': -73.971332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-05 14:01:00', 'Trip_Pickup_DateTime': '2009-06-05 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778218, 'End_Lon': -73.980632, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767092, 'Start_Lon': -73.979317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-07 13:53:00', 'Trip_Pickup_DateTime': '2009-06-07 13:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753528, 'End_Lon': -73.977652, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76697, 'Start_Lon': -73.986523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-20 16:53:00', 'Trip_Pickup_DateTime': '2009-06-20 16:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751503, 'End_Lon': -73.987143, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776182, 'Start_Lon': -73.958, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-06 12:25:00', 'Trip_Pickup_DateTime': '2009-06-06 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759823, 'End_Lon': -73.991605, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785705, 'Start_Lon': -73.972683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-05 23:30:00', 'Trip_Pickup_DateTime': '2009-06-05 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773353, 'End_Lon': -73.982842, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800288, 'Start_Lon': -73.971268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-02 19:23:00', 'Trip_Pickup_DateTime': '2009-06-02 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760375, 'End_Lon': -73.96158, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78378, 'Start_Lon': -73.947407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-07 17:24:00', 'Trip_Pickup_DateTime': '2009-06-07 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758538, 'End_Lon': -73.971027, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773598, 'Start_Lon': -73.959897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-07 14:08:00', 'Trip_Pickup_DateTime': '2009-06-07 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765845, 'End_Lon': -73.955963, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755787, 'Start_Lon': -73.990743, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-04 22:14:00', 'Trip_Pickup_DateTime': '2009-06-04 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.812103, 'End_Lon': -73.930433, 'Fare_Amt': 27.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738013, 'Start_Lon': -73.981665, 'Tip_Amt': 5.56, 'Tolls_Amt': 0.0, 'Total_Amt': 33.36, 'Trip_Distance': 7.77, 'Trip_Dropoff_DateTime': '2009-06-05 01:13:00', 'Trip_Pickup_DateTime': '2009-06-05 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734297, 'End_Lon': -73.99385, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757715, 'Start_Lon': -73.97543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-05 20:08:00', 'Trip_Pickup_DateTime': '2009-06-05 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752128, 'End_Lon': -73.987058, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746, 'Start_Lon': -73.979355, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-04 08:26:00', 'Trip_Pickup_DateTime': '2009-06-04 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707228, 'End_Lon': -74.001685, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752365, 'Start_Lon': -73.978068, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.1, 'Trip_Dropoff_DateTime': '2009-06-07 16:29:00', 'Trip_Pickup_DateTime': '2009-06-07 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77853, 'End_Lon': -73.956965, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772163, 'Start_Lon': -73.978765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-07 14:28:00', 'Trip_Pickup_DateTime': '2009-06-07 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777444, 'End_Lon': -73.982546, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.785179, 'Start_Lon': -73.972868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-07 02:50:58', 'Trip_Pickup_DateTime': '2009-06-07 02:46:17', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.748873, 'End_Lon': -73.979647, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7558, 'Start_Lon': -73.97251, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-20 19:32:00', 'Trip_Pickup_DateTime': '2009-06-20 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77733, 'End_Lon': -73.9572, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736655, 'Start_Lon': -74.003783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-05 00:58:00', 'Trip_Pickup_DateTime': '2009-06-05 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737858, 'End_Lon': -73.98823, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748665, 'Start_Lon': -73.978173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-05 00:32:00', 'Trip_Pickup_DateTime': '2009-06-05 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779407, 'End_Lon': -73.987728, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765627, 'Start_Lon': -73.954817, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-05 12:18:00', 'Trip_Pickup_DateTime': '2009-06-05 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.684542, 'End_Lon': -73.995972, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73076, 'Start_Lon': -73.983068, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 6.13, 'Trip_Dropoff_DateTime': '2009-06-20 19:04:00', 'Trip_Pickup_DateTime': '2009-06-20 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739253, 'End_Lon': -74.00645, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721903, 'Start_Lon': -74.004227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-02 22:23:00', 'Trip_Pickup_DateTime': '2009-06-02 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75379, 'End_Lon': -73.999695, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736102, 'Start_Lon': -73.998055, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-02 10:04:00', 'Trip_Pickup_DateTime': '2009-06-02 09:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73422, 'End_Lon': -73.989168, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725965, 'Start_Lon': -73.983617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-03 00:29:00', 'Trip_Pickup_DateTime': '2009-06-03 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7798, 'End_Lon': -73.954048, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776197, 'Start_Lon': -73.962312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-07 20:49:00', 'Trip_Pickup_DateTime': '2009-06-07 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738745, 'End_Lon': -73.987743, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738012, 'Start_Lon': -74.005685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-05 23:45:00', 'Trip_Pickup_DateTime': '2009-06-05 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766435, 'End_Lon': -73.981312, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749257, 'Start_Lon': -73.984113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-07 16:35:00', 'Trip_Pickup_DateTime': '2009-06-07 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724885, 'End_Lon': -73.994518, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747719, 'Start_Lon': -73.976583, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-20 12:32:56', 'Trip_Pickup_DateTime': '2009-06-20 12:23:29', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.747953, 'End_Lon': -74.002515, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74242, 'Start_Lon': -73.99135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-05 18:37:00', 'Trip_Pickup_DateTime': '2009-06-05 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764557, 'End_Lon': -73.983578, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764837, 'Start_Lon': -73.988882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-04 22:55:00', 'Trip_Pickup_DateTime': '2009-06-04 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79213, 'End_Lon': -73.964405, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791358, 'Start_Lon': -73.9448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-21 09:32:00', 'Trip_Pickup_DateTime': '2009-06-21 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755772, 'End_Lon': -73.98363, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735572, 'Start_Lon': -73.993958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-03 15:21:00', 'Trip_Pickup_DateTime': '2009-06-03 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734715, 'End_Lon': -73.980153, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731682, 'Start_Lon': -73.990238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-05 10:14:00', 'Trip_Pickup_DateTime': '2009-06-05 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72307, 'End_Lon': -73.988937, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720125, 'Start_Lon': -74.006725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-06 10:57:00', 'Trip_Pickup_DateTime': '2009-06-06 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744907, 'End_Lon': -73.978768, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723955, 'Start_Lon': -73.991135, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-20 03:32:00', 'Trip_Pickup_DateTime': '2009-06-20 03:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754982, 'End_Lon': -73.976465, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763788, 'Start_Lon': -73.990057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-20 11:23:00', 'Trip_Pickup_DateTime': '2009-06-20 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756238, 'End_Lon': -73.972983, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764735, 'Start_Lon': -73.984235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-05 07:16:00', 'Trip_Pickup_DateTime': '2009-06-05 07:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78125, 'End_Lon': -73.976158, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78191, 'Start_Lon': -73.98296, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-03 20:02:00', 'Trip_Pickup_DateTime': '2009-06-03 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757508, 'End_Lon': -73.99054, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749938, 'Start_Lon': -73.995978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-08 10:01:00', 'Trip_Pickup_DateTime': '2009-06-08 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74897, 'End_Lon': -73.991632, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730018, 'Start_Lon': -74.003335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-20 09:38:00', 'Trip_Pickup_DateTime': '2009-06-20 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79393, 'End_Lon': -73.967835, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.809412, 'Start_Lon': -73.959707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-02 15:11:00', 'Trip_Pickup_DateTime': '2009-06-02 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751022, 'End_Lon': -73.974092, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746472, 'Start_Lon': -73.972245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.05, 'Trip_Dropoff_DateTime': '2009-06-05 08:34:00', 'Trip_Pickup_DateTime': '2009-06-05 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-04 23:22:00', 'Trip_Pickup_DateTime': '2009-06-04 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755575, 'End_Lon': -73.982385, 'Fare_Amt': 30.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77358, 'Start_Lon': -73.87085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.5, 'Trip_Distance': 10.24, 'Trip_Dropoff_DateTime': '2009-06-03 15:06:00', 'Trip_Pickup_DateTime': '2009-06-03 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76773, 'End_Lon': -73.967743, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774357, 'Start_Lon': -73.957353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-02 21:01:00', 'Trip_Pickup_DateTime': '2009-06-02 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766465, 'End_Lon': -73.930725, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767115, 'Start_Lon': -73.983598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-21 02:20:00', 'Trip_Pickup_DateTime': '2009-06-21 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722027, 'End_Lon': -73.99327, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.641498, 'Start_Lon': -73.78801, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.29, 'Trip_Dropoff_DateTime': '2009-06-04 18:50:00', 'Trip_Pickup_DateTime': '2009-06-04 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754675, 'End_Lon': -73.989982, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744292, 'Start_Lon': -74.006642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-06 01:49:00', 'Trip_Pickup_DateTime': '2009-06-06 01:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753417, 'End_Lon': -73.968015, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734237, 'Start_Lon': -73.980415, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-03 23:41:00', 'Trip_Pickup_DateTime': '2009-06-03 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764567, 'End_Lon': -73.968667, 'Fare_Amt': 23.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773725, 'Start_Lon': -73.870873, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.45, 'Trip_Distance': 9.86, 'Trip_Dropoff_DateTime': '2009-06-21 10:32:00', 'Trip_Pickup_DateTime': '2009-06-21 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78596, 'End_Lon': -73.970512, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785868, 'Start_Lon': -73.978368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-05 19:36:00', 'Trip_Pickup_DateTime': '2009-06-05 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729948, 'End_Lon': -74.002135, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760293, 'Start_Lon': -73.985153, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-08 16:23:00', 'Trip_Pickup_DateTime': '2009-06-08 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741838, 'End_Lon': -73.991973, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723978, 'Start_Lon': -74.003878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-21 02:06:00', 'Trip_Pickup_DateTime': '2009-06-21 01:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753678, 'End_Lon': -73.965308, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762035, 'Start_Lon': -73.974637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-04 20:20:00', 'Trip_Pickup_DateTime': '2009-06-04 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704423, 'End_Lon': -73.986678, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707203, 'Start_Lon': -74.004792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-02 11:29:00', 'Trip_Pickup_DateTime': '2009-06-02 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764583, 'End_Lon': -73.9841, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702505, 'Start_Lon': -73.987433, 'Tip_Amt': 4.7, 'Tolls_Amt': 0.0, 'Total_Amt': 28.2, 'Trip_Distance': 7.55, 'Trip_Dropoff_DateTime': '2009-06-03 19:46:00', 'Trip_Pickup_DateTime': '2009-06-03 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749978, 'End_Lon': -74.002258, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743527, 'Start_Lon': -73.98767, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-03 23:59:00', 'Trip_Pickup_DateTime': '2009-06-03 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.679342, 'End_Lon': -73.79524, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644767, 'Start_Lon': -73.781848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.55, 'Trip_Dropoff_DateTime': '2009-06-04 06:58:00', 'Trip_Pickup_DateTime': '2009-06-04 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765603, 'End_Lon': -73.955247, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736372, 'Start_Lon': -74.008273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.5, 'Trip_Dropoff_DateTime': '2009-06-21 02:36:00', 'Trip_Pickup_DateTime': '2009-06-21 02:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776188, 'End_Lon': -73.961737, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782878, 'Start_Lon': -73.955317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-02 18:56:00', 'Trip_Pickup_DateTime': '2009-06-02 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758032, 'End_Lon': -73.973795, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744937, 'Start_Lon': -73.97252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-05 10:26:00', 'Trip_Pickup_DateTime': '2009-06-05 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739025, 'End_Lon': -73.991047, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754652, 'Start_Lon': -73.984198, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-05 15:52:00', 'Trip_Pickup_DateTime': '2009-06-05 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765073, 'End_Lon': -73.980508, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774487, 'Start_Lon': -73.982218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-02 14:25:00', 'Trip_Pickup_DateTime': '2009-06-02 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785555, 'End_Lon': -73.969115, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762638, 'Start_Lon': -73.978238, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-03 10:07:00', 'Trip_Pickup_DateTime': '2009-06-03 09:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744422, 'End_Lon': -73.971398, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753272, 'Start_Lon': -73.992308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-07 15:40:00', 'Trip_Pickup_DateTime': '2009-06-07 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749197, 'End_Lon': -73.869437, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757563, 'Start_Lon': -73.963605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.07, 'Trip_Dropoff_DateTime': '2009-06-21 04:30:00', 'Trip_Pickup_DateTime': '2009-06-21 04:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761888, 'End_Lon': -73.99021, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749732, 'Start_Lon': -73.993948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-07 15:08:00', 'Trip_Pickup_DateTime': '2009-06-07 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785857, 'End_Lon': -73.979147, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761413, 'Start_Lon': -73.986478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-07 23:59:00', 'Trip_Pickup_DateTime': '2009-06-07 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747222, 'End_Lon': -74.003077, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742617, 'Start_Lon': -74.00746, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-05 19:58:00', 'Trip_Pickup_DateTime': '2009-06-05 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744048, 'End_Lon': -73.990263, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768602, 'Start_Lon': -73.967878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-21 07:06:00', 'Trip_Pickup_DateTime': '2009-06-21 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739945, 'End_Lon': -74.005125, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73788, 'Start_Lon': -73.995925, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-02 10:09:00', 'Trip_Pickup_DateTime': '2009-06-02 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771547, 'End_Lon': -73.947103, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759818, 'Start_Lon': -73.971772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-03 16:23:00', 'Trip_Pickup_DateTime': '2009-06-03 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707502, 'End_Lon': -73.941403, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717862, 'Start_Lon': -73.957785, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-06 01:17:00', 'Trip_Pickup_DateTime': '2009-06-06 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.818688, 'End_Lon': -73.916503, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797095, 'Start_Lon': -73.937992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-08 17:00:00', 'Trip_Pickup_DateTime': '2009-06-08 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714288, 'End_Lon': -74.01017, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726258, 'Start_Lon': -74.002227, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-06 11:30:00', 'Trip_Pickup_DateTime': '2009-06-06 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.669655, 'End_Lon': -73.979223, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706322, 'Start_Lon': -74.016303, 'Tip_Amt': 7.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.2, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-04 22:53:00', 'Trip_Pickup_DateTime': '2009-06-04 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739135, 'End_Lon': -73.980045, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729432, 'Start_Lon': -73.984038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-03 03:05:00', 'Trip_Pickup_DateTime': '2009-06-03 03:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.821722, 'End_Lon': -73.94582, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72704, 'Start_Lon': -73.985688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 8.33, 'Trip_Dropoff_DateTime': '2009-06-21 07:37:00', 'Trip_Pickup_DateTime': '2009-06-21 07:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790662, 'End_Lon': -73.974737, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767398, 'Start_Lon': -73.954938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-04 10:41:00', 'Trip_Pickup_DateTime': '2009-06-04 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759975, 'End_Lon': -73.961705, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765542, 'Start_Lon': -73.954805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-02 11:25:00', 'Trip_Pickup_DateTime': '2009-06-02 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.662342, 'End_Lon': -73.996218, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726285, 'Start_Lon': -73.996168, 'Tip_Amt': 3.75, 'Tolls_Amt': 0.0, 'Total_Amt': 18.75, 'Trip_Distance': 5.15, 'Trip_Dropoff_DateTime': '2009-06-21 02:00:00', 'Trip_Pickup_DateTime': '2009-06-21 01:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750337, 'End_Lon': -73.994777, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720293, 'Start_Lon': -73.993522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-05 01:05:00', 'Trip_Pickup_DateTime': '2009-06-05 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748238, 'End_Lon': -74.005683, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.826705, 'Start_Lon': -73.950372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 6.72, 'Trip_Dropoff_DateTime': '2009-06-06 12:21:00', 'Trip_Pickup_DateTime': '2009-06-06 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746045, 'End_Lon': -73.956163, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771065, 'Start_Lon': -73.865587, 'Tip_Amt': 4.2, 'Tolls_Amt': 0.0, 'Total_Amt': 25.2, 'Trip_Distance': 7.91, 'Trip_Dropoff_DateTime': '2009-06-04 22:20:00', 'Trip_Pickup_DateTime': '2009-06-04 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763298, 'End_Lon': -73.96855, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64522, 'Start_Lon': -73.776655, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.08, 'Trip_Dropoff_DateTime': '2009-06-02 16:21:00', 'Trip_Pickup_DateTime': '2009-06-02 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758723, 'End_Lon': -73.987333, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767145, 'Start_Lon': -73.964553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-04 23:28:00', 'Trip_Pickup_DateTime': '2009-06-04 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681408, 'End_Lon': -73.940982, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741202, 'Start_Lon': -74.005133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 7.28, 'Trip_Dropoff_DateTime': '2009-06-21 02:46:00', 'Trip_Pickup_DateTime': '2009-06-21 02:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777583, 'End_Lon': -73.958993, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79345, 'Start_Lon': -73.974483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.67, 'Trip_Dropoff_DateTime': '2009-06-07 15:36:00', 'Trip_Pickup_DateTime': '2009-06-07 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762322, 'End_Lon': -73.981243, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780317, 'Start_Lon': -73.954705, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-08 17:08:00', 'Trip_Pickup_DateTime': '2009-06-08 16:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775986, 'End_Lon': -73.955168, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.805389, 'Start_Lon': -73.962068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-20 14:32:14', 'Trip_Pickup_DateTime': '2009-06-20 14:19:05', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.805328, 'End_Lon': -73.965773, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755748, 'Start_Lon': -73.970865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.5, 'Trip_Dropoff_DateTime': '2009-06-06 20:48:00', 'Trip_Pickup_DateTime': '2009-06-06 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713367, 'End_Lon': -74.011, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756388, 'Start_Lon': -73.986925, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-02 01:48:00', 'Trip_Pickup_DateTime': '2009-06-02 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75792, 'End_Lon': -73.984735, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71172, 'Start_Lon': -74.010418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-04 07:20:00', 'Trip_Pickup_DateTime': '2009-06-04 07:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754278, 'End_Lon': -73.994183, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753923, 'Start_Lon': -73.98185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-04 09:50:00', 'Trip_Pickup_DateTime': '2009-06-04 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742918, 'End_Lon': -73.998837, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724235, 'Start_Lon': -73.996115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-02 21:27:00', 'Trip_Pickup_DateTime': '2009-06-02 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709867, 'End_Lon': -73.948693, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717412, 'Start_Lon': -73.991292, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-04 21:08:00', 'Trip_Pickup_DateTime': '2009-06-04 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728948, 'End_Lon': -73.987372, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72397, 'Start_Lon': -73.978927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-21 01:05:00', 'Trip_Pickup_DateTime': '2009-06-21 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776527, 'End_Lon': -73.950598, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785923, 'Start_Lon': -73.978573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-05 14:01:00', 'Trip_Pickup_DateTime': '2009-06-05 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745393, 'End_Lon': -73.980613, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771593, 'Start_Lon': -73.98943, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-05 08:37:00', 'Trip_Pickup_DateTime': '2009-06-05 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764083, 'End_Lon': -73.971162, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760427, 'Start_Lon': -73.976615, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-02 14:29:00', 'Trip_Pickup_DateTime': '2009-06-02 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748647, 'End_Lon': -73.99017, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762575, 'Start_Lon': -73.982005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-05 11:58:00', 'Trip_Pickup_DateTime': '2009-06-05 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762255, 'End_Lon': -73.972448, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753935, 'Start_Lon': -73.970503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-05 10:39:00', 'Trip_Pickup_DateTime': '2009-06-05 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72553, 'End_Lon': -73.98431, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72337, 'Start_Lon': -73.988432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-05 18:28:00', 'Trip_Pickup_DateTime': '2009-06-05 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745418, 'End_Lon': -73.978202, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733445, 'Start_Lon': -73.999652, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-06 18:08:00', 'Trip_Pickup_DateTime': '2009-06-06 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761323, 'End_Lon': -73.979835, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739728, 'Start_Lon': -74.006242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-20 22:49:00', 'Trip_Pickup_DateTime': '2009-06-20 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748068, 'End_Lon': -73.984962, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729173, 'Start_Lon': -73.983513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-21 01:01:00', 'Trip_Pickup_DateTime': '2009-06-21 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755163, 'End_Lon': -73.991923, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731995, 'Start_Lon': -74.003455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-21 01:36:00', 'Trip_Pickup_DateTime': '2009-06-21 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730952, 'End_Lon': -73.978477, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729187, 'Start_Lon': -73.986985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-03 22:15:00', 'Trip_Pickup_DateTime': '2009-06-03 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74135, 'End_Lon': -73.985502, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73124, 'Start_Lon': -73.985878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-05 01:24:00', 'Trip_Pickup_DateTime': '2009-06-05 01:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754565, 'End_Lon': -73.99183, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734632, 'Start_Lon': -73.992358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-03 00:43:00', 'Trip_Pickup_DateTime': '2009-06-03 00:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724443, 'End_Lon': -74.005525, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72302, 'Start_Lon': -73.988718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-21 00:00:00', 'Trip_Pickup_DateTime': '2009-06-20 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784323, 'End_Lon': -73.966765, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795843, 'Start_Lon': -73.969002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-05 18:44:00', 'Trip_Pickup_DateTime': '2009-06-05 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74707, 'End_Lon': -74.004578, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713683, 'Start_Lon': -74.00333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-04 12:39:00', 'Trip_Pickup_DateTime': '2009-06-04 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757165, 'End_Lon': -73.99073, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735437, 'Start_Lon': -73.985643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-03 12:02:00', 'Trip_Pickup_DateTime': '2009-06-03 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77025, 'End_Lon': -73.990888, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764248, 'Start_Lon': -73.974895, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-06 14:19:00', 'Trip_Pickup_DateTime': '2009-06-06 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809193, 'End_Lon': -73.965547, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781288, 'Start_Lon': -73.981247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-05 14:40:00', 'Trip_Pickup_DateTime': '2009-06-05 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781313, 'End_Lon': -73.9813, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798055, 'Start_Lon': -73.969442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-03 14:55:00', 'Trip_Pickup_DateTime': '2009-06-03 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764025, 'End_Lon': -73.954383, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734873, 'Start_Lon': -73.98636, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-03 09:57:00', 'Trip_Pickup_DateTime': '2009-06-03 09:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789433, 'End_Lon': -73.97755, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782078, 'Start_Lon': -73.960053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-06 10:00:00', 'Trip_Pickup_DateTime': '2009-06-06 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75506, 'End_Lon': -73.98889, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720553, 'Start_Lon': -73.996868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-20 21:20:00', 'Trip_Pickup_DateTime': '2009-06-20 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756312, 'End_Lon': -73.987177, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777888, 'Start_Lon': -73.957772, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-06 19:45:00', 'Trip_Pickup_DateTime': '2009-06-06 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788515, 'End_Lon': -73.98138, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779978, 'Start_Lon': -73.984322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-08 10:42:00', 'Trip_Pickup_DateTime': '2009-06-08 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76939, 'End_Lon': -73.989295, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782997, 'Start_Lon': -73.980402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-05 17:18:00', 'Trip_Pickup_DateTime': '2009-06-05 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737867, 'End_Lon': -74.00285, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731908, 'Start_Lon': -74.006453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-05 20:50:00', 'Trip_Pickup_DateTime': '2009-06-05 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726885, 'End_Lon': -73.995745, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730115, 'Start_Lon': -73.991423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-04 14:23:00', 'Trip_Pickup_DateTime': '2009-06-04 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746492, 'End_Lon': -73.976535, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747013, 'Start_Lon': -74.008345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-08 12:01:00', 'Trip_Pickup_DateTime': '2009-06-08 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749072, 'End_Lon': -73.991733, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73008, 'Start_Lon': -73.98933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-07 15:48:00', 'Trip_Pickup_DateTime': '2009-06-07 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73498, 'End_Lon': -74.00608, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70751, 'Start_Lon': -74.00399, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-02 18:07:00', 'Trip_Pickup_DateTime': '2009-06-02 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723202, 'End_Lon': -73.989865, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770232, 'Start_Lon': -73.957322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.77, 'Trip_Dropoff_DateTime': '2009-06-21 17:15:00', 'Trip_Pickup_DateTime': '2009-06-21 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75214, 'End_Lon': -73.986062, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647165, 'Start_Lon': -73.789865, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.73, 'Trip_Dropoff_DateTime': '2009-06-01 17:30:00', 'Trip_Pickup_DateTime': '2009-06-01 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753597, 'End_Lon': -73.969598, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784528, 'Start_Lon': -73.952108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-04 20:48:00', 'Trip_Pickup_DateTime': '2009-06-04 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780272, 'End_Lon': -73.952663, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740087, 'Start_Lon': -73.986588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-21 17:00:00', 'Trip_Pickup_DateTime': '2009-06-21 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760997, 'End_Lon': -73.999098, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748033, 'Start_Lon': -73.992883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-01 16:56:00', 'Trip_Pickup_DateTime': '2009-06-01 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745635, 'End_Lon': -73.98878, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760188, 'Start_Lon': -73.972997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-12 17:44:00', 'Trip_Pickup_DateTime': '2009-06-12 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72343, 'End_Lon': -74.009563, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764277, 'Start_Lon': -73.970693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-01 14:00:00', 'Trip_Pickup_DateTime': '2009-06-01 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-03 21:39:00', 'Trip_Pickup_DateTime': '2009-06-03 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758458, 'End_Lon': -73.977475, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770153, 'Start_Lon': -73.968708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-09 11:45:00', 'Trip_Pickup_DateTime': '2009-06-09 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736798, 'End_Lon': -73.991147, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719315, 'Start_Lon': -74.005088, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-12 08:38:00', 'Trip_Pickup_DateTime': '2009-06-12 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753343, 'End_Lon': -73.974667, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755148, 'Start_Lon': -73.970993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-01 14:59:00', 'Trip_Pickup_DateTime': '2009-06-01 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761385, 'End_Lon': -73.968808, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771632, 'Start_Lon': -73.961348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-21 18:54:00', 'Trip_Pickup_DateTime': '2009-06-21 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784675, 'End_Lon': -73.979198, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.799637, 'Start_Lon': -73.958992, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-21 16:53:00', 'Trip_Pickup_DateTime': '2009-06-21 16:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.671538, 'End_Lon': -73.973742, 'Fare_Amt': 22.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742842, 'Start_Lon': -73.992713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.9, 'Trip_Distance': 6.11, 'Trip_Dropoff_DateTime': '2009-06-12 16:59:00', 'Trip_Pickup_DateTime': '2009-06-12 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764247, 'End_Lon': -73.9542, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750883, 'Start_Lon': -73.970392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-09 11:40:00', 'Trip_Pickup_DateTime': '2009-06-09 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75319, 'End_Lon': -73.97338, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752187, 'Start_Lon': -73.989577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-09 07:44:00', 'Trip_Pickup_DateTime': '2009-06-09 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745793, 'End_Lon': -73.98021, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766822, 'Start_Lon': -73.979472, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-01 18:28:00', 'Trip_Pickup_DateTime': '2009-06-01 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77473, 'End_Lon': -73.964422, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789658, 'Start_Lon': -73.969855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-01 15:57:00', 'Trip_Pickup_DateTime': '2009-06-01 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757622, 'End_Lon': -73.974328, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755473, 'Start_Lon': -73.976735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.2, 'Trip_Dropoff_DateTime': '2009-06-01 16:08:00', 'Trip_Pickup_DateTime': '2009-06-01 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759362, 'End_Lon': -73.983273, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751113, 'Start_Lon': -73.976187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-12 14:18:00', 'Trip_Pickup_DateTime': '2009-06-12 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784632, 'End_Lon': -73.958153, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741303, 'Start_Lon': -73.994047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.13, 'Trip_Dropoff_DateTime': '2009-06-01 12:13:00', 'Trip_Pickup_DateTime': '2009-06-01 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783555, 'End_Lon': -73.950397, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779007, 'Start_Lon': -73.953947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-09 07:04:00', 'Trip_Pickup_DateTime': '2009-06-09 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779833, 'End_Lon': -73.98178, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786377, 'Start_Lon': -73.979653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-01 15:38:00', 'Trip_Pickup_DateTime': '2009-06-01 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761462, 'End_Lon': -73.960905, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759683, 'Start_Lon': -73.96761, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-12 16:24:00', 'Trip_Pickup_DateTime': '2009-06-12 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747063, 'End_Lon': -74.00779, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711708, 'Start_Lon': -74.007323, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-01 16:54:00', 'Trip_Pickup_DateTime': '2009-06-01 16:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776702, 'End_Lon': -73.989268, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762577, 'Start_Lon': -73.979897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-01 12:16:00', 'Trip_Pickup_DateTime': '2009-06-01 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759535, 'End_Lon': -73.973568, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736505, 'Start_Lon': -73.98897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-01 13:16:00', 'Trip_Pickup_DateTime': '2009-06-01 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7434, 'End_Lon': -73.988932, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748323, 'Start_Lon': -73.992542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-01 11:48:00', 'Trip_Pickup_DateTime': '2009-06-01 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729862, 'End_Lon': -74.004933, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739747, 'Start_Lon': -73.99081, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-09 09:35:00', 'Trip_Pickup_DateTime': '2009-06-09 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752622, 'End_Lon': -73.994313, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792705, 'Start_Lon': -73.974953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.41, 'Trip_Dropoff_DateTime': '2009-06-21 14:59:00', 'Trip_Pickup_DateTime': '2009-06-21 14:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747517, 'End_Lon': -73.941485, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747517, 'Start_Lon': -73.941485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-12 15:18:00', 'Trip_Pickup_DateTime': '2009-06-12 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7587, 'End_Lon': -73.970795, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761377, 'Start_Lon': -73.966882, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-09 09:41:00', 'Trip_Pickup_DateTime': '2009-06-09 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731383, 'End_Lon': -73.983172, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75494, 'Start_Lon': -73.969658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-21 13:36:00', 'Trip_Pickup_DateTime': '2009-06-21 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767657, 'End_Lon': -73.985138, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77093, 'Start_Lon': -73.949395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-21 11:52:00', 'Trip_Pickup_DateTime': '2009-06-21 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753662, 'End_Lon': -73.980068, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74994, 'Start_Lon': -73.987563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-21 15:22:00', 'Trip_Pickup_DateTime': '2009-06-21 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755535, 'End_Lon': -73.983313, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753127, 'Start_Lon': -73.978548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-04 07:14:00', 'Trip_Pickup_DateTime': '2009-06-04 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727683, 'End_Lon': -74.001165, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745218, 'Start_Lon': -73.98051, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-09 09:30:00', 'Trip_Pickup_DateTime': '2009-06-09 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765198, 'End_Lon': -73.987725, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78533, 'Start_Lon': -73.951345, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-12 15:55:00', 'Trip_Pickup_DateTime': '2009-06-12 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748238, 'End_Lon': -73.980227, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767175, 'Start_Lon': -73.9826, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-09 09:35:00', 'Trip_Pickup_DateTime': '2009-06-09 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736535, 'End_Lon': -73.979587, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731207, 'Start_Lon': -73.982667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-09 08:09:00', 'Trip_Pickup_DateTime': '2009-06-09 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760685, 'End_Lon': -73.961257, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765617, 'Start_Lon': -73.97198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-12 11:54:00', 'Trip_Pickup_DateTime': '2009-06-12 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806372, 'End_Lon': -73.920423, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779587, 'Start_Lon': -73.953682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-12 15:07:00', 'Trip_Pickup_DateTime': '2009-06-12 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753523, 'End_Lon': -73.972625, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75149, 'Start_Lon': -73.993723, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-09 09:16:00', 'Trip_Pickup_DateTime': '2009-06-09 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724413, 'End_Lon': -73.993778, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74098, 'Start_Lon': -74.007722, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-12 13:43:00', 'Trip_Pickup_DateTime': '2009-06-12 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74347, 'End_Lon': -73.976977, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732795, 'Start_Lon': -73.974827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-09 06:59:00', 'Trip_Pickup_DateTime': '2009-06-09 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768072, 'End_Lon': -73.985212, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75204, 'Start_Lon': -73.986253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-12 11:14:00', 'Trip_Pickup_DateTime': '2009-06-12 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715462, 'End_Lon': -74.005943, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75333, 'Start_Lon': -73.996498, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-12 15:08:00', 'Trip_Pickup_DateTime': '2009-06-12 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732967, 'End_Lon': -73.99273, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750187, 'Start_Lon': -73.977732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-09 08:37:00', 'Trip_Pickup_DateTime': '2009-06-09 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735148, 'End_Lon': -73.991642, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724548, 'Start_Lon': -73.98458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-12 14:15:00', 'Trip_Pickup_DateTime': '2009-06-12 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753565, 'End_Lon': -73.969262, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76524, 'Start_Lon': -73.954818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-12 16:20:00', 'Trip_Pickup_DateTime': '2009-06-12 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718222, 'End_Lon': -74.004485, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70888, 'Start_Lon': -74.006333, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.8, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-19 23:30:00', 'Trip_Pickup_DateTime': '2009-06-19 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784497, 'End_Lon': -73.954022, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804853, 'Start_Lon': -73.966448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-02 16:05:00', 'Trip_Pickup_DateTime': '2009-06-02 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786357, 'End_Lon': -73.9544, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76531, 'Start_Lon': -73.967658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-12 13:22:00', 'Trip_Pickup_DateTime': '2009-06-12 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774338, 'End_Lon': -73.873153, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75525, 'Start_Lon': -73.975332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.9, 'Trip_Distance': 9.13, 'Trip_Dropoff_DateTime': '2009-06-12 15:05:00', 'Trip_Pickup_DateTime': '2009-06-12 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77857, 'End_Lon': -73.954298, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775528, 'Start_Lon': -73.950393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-12 11:53:00', 'Trip_Pickup_DateTime': '2009-06-12 11:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769373, 'End_Lon': -73.965927, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759312, 'Start_Lon': -73.992322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-12 11:55:00', 'Trip_Pickup_DateTime': '2009-06-12 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749282, 'End_Lon': -73.99174, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74001, 'Start_Lon': -73.9863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-21 11:30:00', 'Trip_Pickup_DateTime': '2009-06-21 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760167, 'End_Lon': -73.98137, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746685, 'Start_Lon': -73.976142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-07 22:08:00', 'Trip_Pickup_DateTime': '2009-06-07 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745463, 'End_Lon': -74.008385, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759565, 'Start_Lon': -73.991945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-09 07:56:00', 'Trip_Pickup_DateTime': '2009-06-09 07:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767538, 'End_Lon': -73.977073, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741487, 'Start_Lon': -74.006578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-20 12:42:00', 'Trip_Pickup_DateTime': '2009-06-20 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757093, 'End_Lon': -73.98545, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750318, 'Start_Lon': -74.002457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-09 04:06:00', 'Trip_Pickup_DateTime': '2009-06-09 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77988, 'End_Lon': -73.956538, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76266, 'Start_Lon': -73.95974, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-12 12:46:00', 'Trip_Pickup_DateTime': '2009-06-12 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720653, 'End_Lon': -74.009377, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708838, 'Start_Lon': -74.00241, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-09 08:14:00', 'Trip_Pickup_DateTime': '2009-06-09 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77352, 'End_Lon': -73.9824, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772503, 'Start_Lon': -73.95279, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-12 13:21:00', 'Trip_Pickup_DateTime': '2009-06-12 13:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711552, 'End_Lon': -74.010305, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72095, 'Start_Lon': -73.992425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-21 11:44:00', 'Trip_Pickup_DateTime': '2009-06-21 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738855, 'End_Lon': -73.98747, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744268, 'Start_Lon': -74.006518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-09 02:43:00', 'Trip_Pickup_DateTime': '2009-06-09 02:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738195, 'End_Lon': -74.008775, 'Fare_Amt': 2.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737047, 'Start_Lon': -74.006492, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-21 11:38:00', 'Trip_Pickup_DateTime': '2009-06-21 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773717, 'End_Lon': -73.983818, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768048, 'Start_Lon': -73.985273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-07 14:55:00', 'Trip_Pickup_DateTime': '2009-06-07 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75468, 'End_Lon': -73.97758, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7498, 'Start_Lon': -73.971948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-09 09:09:00', 'Trip_Pickup_DateTime': '2009-06-09 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766093, 'End_Lon': -73.951788, 'Fare_Amt': 21.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774175, 'Start_Lon': -73.874625, 'Tip_Amt': 4.26, 'Tolls_Amt': 4.15, 'Total_Amt': 29.71, 'Trip_Distance': 8.87, 'Trip_Dropoff_DateTime': '2009-06-12 14:33:00', 'Trip_Pickup_DateTime': '2009-06-12 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718917, 'End_Lon': -74.006737, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750805, 'Start_Lon': -74.005637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 0.25, 'Trip_Dropoff_DateTime': '2009-06-12 14:47:00', 'Trip_Pickup_DateTime': '2009-06-12 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.63873, 'End_Lon': -73.785893, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764782, 'Start_Lon': -73.984387, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 54.15, 'Trip_Distance': 17.75, 'Trip_Dropoff_DateTime': '2009-06-09 06:47:00', 'Trip_Pickup_DateTime': '2009-06-09 06:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77045, 'End_Lon': -73.864993, 'Fare_Amt': 22.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769692, 'Start_Lon': -73.957452, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.05, 'Trip_Distance': 9.53, 'Trip_Dropoff_DateTime': '2009-06-12 12:44:00', 'Trip_Pickup_DateTime': '2009-06-12 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702365, 'End_Lon': -74.012968, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711273, 'Start_Lon': -74.016137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-20 12:26:00', 'Trip_Pickup_DateTime': '2009-06-20 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.690377, 'End_Lon': -73.989932, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713795, 'Start_Lon': -74.00379, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-12 11:18:00', 'Trip_Pickup_DateTime': '2009-06-12 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774677, 'End_Lon': -73.954838, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745702, 'Start_Lon': -73.977937, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-02 22:43:00', 'Trip_Pickup_DateTime': '2009-06-02 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746668, 'End_Lon': -73.986125, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754962, 'Start_Lon': -73.968477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-12 10:42:00', 'Trip_Pickup_DateTime': '2009-06-12 10:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772668, 'End_Lon': -73.95981, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750085, 'Start_Lon': -73.982045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-20 11:20:00', 'Trip_Pickup_DateTime': '2009-06-20 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709843, 'End_Lon': -74.011113, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741288, 'Start_Lon': -73.989623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-21 09:45:00', 'Trip_Pickup_DateTime': '2009-06-21 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719232, 'End_Lon': -74.002065, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734778, 'Start_Lon': -73.990828, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-09 00:24:00', 'Trip_Pickup_DateTime': '2009-06-09 00:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755528, 'End_Lon': -73.983307, 'Fare_Amt': 5.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766617, 'Start_Lon': -73.978267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-21 12:52:00', 'Trip_Pickup_DateTime': '2009-06-21 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751498, 'End_Lon': -73.990878, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762038, 'Start_Lon': -73.979015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-21 12:11:00', 'Trip_Pickup_DateTime': '2009-06-21 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774133, 'End_Lon': -73.984022, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78316, 'Start_Lon': -73.980633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-12 09:50:00', 'Trip_Pickup_DateTime': '2009-06-12 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762128, 'End_Lon': -73.911158, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.817663, 'Start_Lon': -73.960148, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 19.95, 'Trip_Distance': 5.8, 'Trip_Dropoff_DateTime': '2009-06-06 01:27:00', 'Trip_Pickup_DateTime': '2009-06-06 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733462, 'End_Lon': -73.987292, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733865, 'Start_Lon': -73.990002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.14, 'Trip_Dropoff_DateTime': '2009-06-03 17:24:00', 'Trip_Pickup_DateTime': '2009-06-03 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75816, 'End_Lon': -73.986403, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749563, 'Start_Lon': -73.993725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-07 12:26:00', 'Trip_Pickup_DateTime': '2009-06-07 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73058, 'End_Lon': -73.992955, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75503, 'Start_Lon': -73.979782, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-08 21:42:00', 'Trip_Pickup_DateTime': '2009-06-08 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756172, 'End_Lon': -73.992663, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76624, 'Start_Lon': -73.997277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-21 09:59:00', 'Trip_Pickup_DateTime': '2009-06-21 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74147, 'End_Lon': -73.968768, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745337, 'Start_Lon': -73.994333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-08 22:39:00', 'Trip_Pickup_DateTime': '2009-06-08 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755248, 'End_Lon': -73.974192, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753402, 'Start_Lon': -73.966743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-22 12:18:00', 'Trip_Pickup_DateTime': '2009-06-22 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763037, 'End_Lon': -73.979753, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77443, 'Start_Lon': -73.977362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-08 09:06:00', 'Trip_Pickup_DateTime': '2009-06-08 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779987, 'End_Lon': -73.957352, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784705, 'Start_Lon': -73.95398, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-04 13:00:00', 'Trip_Pickup_DateTime': '2009-06-04 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776472, 'End_Lon': -73.956447, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776798, 'Start_Lon': -73.963072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-07 19:28:00', 'Trip_Pickup_DateTime': '2009-06-07 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749835, 'End_Lon': -73.98864, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748792, 'Start_Lon': -73.982565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-06 22:17:00', 'Trip_Pickup_DateTime': '2009-06-06 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.812885, 'End_Lon': -73.961737, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804167, 'Start_Lon': -73.964767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-03 17:24:00', 'Trip_Pickup_DateTime': '2009-06-03 17:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75447, 'End_Lon': -73.853918, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759537, 'Start_Lon': -73.830387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-02 11:51:00', 'Trip_Pickup_DateTime': '2009-06-02 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718267, 'End_Lon': -73.994078, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737325, 'Start_Lon': -73.979585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 4.53, 'Trip_Dropoff_DateTime': '2009-06-05 13:01:00', 'Trip_Pickup_DateTime': '2009-06-05 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716265, 'End_Lon': -74.008758, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725333, 'Start_Lon': -74.005805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-02 11:47:00', 'Trip_Pickup_DateTime': '2009-06-02 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764205, 'End_Lon': -73.955625, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735468, 'Start_Lon': -73.998263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-08 13:43:00', 'Trip_Pickup_DateTime': '2009-06-08 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769727, 'End_Lon': -73.961207, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76869, 'Start_Lon': -73.96779, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-08 11:36:00', 'Trip_Pickup_DateTime': '2009-06-08 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750093, 'End_Lon': -73.97194, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750093, 'Start_Lon': -73.97194, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-09 19:31:00', 'Trip_Pickup_DateTime': '2009-06-09 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718983, 'End_Lon': -74.004945, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729588, 'Start_Lon': -73.98808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-13 01:01:00', 'Trip_Pickup_DateTime': '2009-06-13 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740983, 'End_Lon': -74.0056, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772177, 'Start_Lon': -73.990033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-09 21:03:00', 'Trip_Pickup_DateTime': '2009-06-09 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.797478, 'End_Lon': -73.960692, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746975, 'Start_Lon': -73.989637, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-13 03:43:00', 'Trip_Pickup_DateTime': '2009-06-13 03:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720023, 'End_Lon': -73.989178, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7472, 'Start_Lon': -73.997122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-13 02:41:00', 'Trip_Pickup_DateTime': '2009-06-13 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704977, 'End_Lon': -74.016477, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767562, 'Start_Lon': -73.984522, 'Tip_Amt': 3.56, 'Tolls_Amt': 0.0, 'Total_Amt': 21.36, 'Trip_Distance': 5.87, 'Trip_Dropoff_DateTime': '2009-06-13 02:07:00', 'Trip_Pickup_DateTime': '2009-06-13 01:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746845, 'End_Lon': -73.986172, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754473, 'Start_Lon': -73.97257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-21 21:59:00', 'Trip_Pickup_DateTime': '2009-06-21 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776722, 'End_Lon': -73.961875, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763072, 'Start_Lon': -73.985652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-12 20:44:00', 'Trip_Pickup_DateTime': '2009-06-12 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.83283, 'End_Lon': -73.904885, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.811133, 'Start_Lon': -73.921442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-13 01:53:00', 'Trip_Pickup_DateTime': '2009-06-13 01:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708335, 'End_Lon': -74.01701, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765597, 'Start_Lon': -73.960865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 7.35, 'Trip_Dropoff_DateTime': '2009-06-09 20:23:00', 'Trip_Pickup_DateTime': '2009-06-09 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70854, 'End_Lon': -74.0075, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725957, 'Start_Lon': -73.983567, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-21 03:54:00', 'Trip_Pickup_DateTime': '2009-06-21 03:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774497, 'End_Lon': -73.872293, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742112, 'Start_Lon': -73.983032, 'Tip_Amt': 5.42, 'Tolls_Amt': 0.0, 'Total_Amt': 27.12, 'Trip_Distance': 9.03, 'Trip_Dropoff_DateTime': '2009-06-01 16:07:00', 'Trip_Pickup_DateTime': '2009-06-01 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781138, 'End_Lon': -73.961467, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782153, 'Start_Lon': -73.95195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-21 22:51:00', 'Trip_Pickup_DateTime': '2009-06-21 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.795982, 'End_Lon': -73.942667, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756292, 'Start_Lon': -73.996185, 'Tip_Amt': 3.1, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 4.14, 'Trip_Dropoff_DateTime': '2009-06-09 20:06:00', 'Trip_Pickup_DateTime': '2009-06-09 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730288, 'End_Lon': -73.975925, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750102, 'Start_Lon': -73.991487, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-21 21:40:00', 'Trip_Pickup_DateTime': '2009-06-21 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744555, 'End_Lon': -74.004603, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752852, 'Start_Lon': -73.98951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-09 14:27:00', 'Trip_Pickup_DateTime': '2009-06-09 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767407, 'End_Lon': -73.982338, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733128, 'Start_Lon': -74.006297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-09 19:26:00', 'Trip_Pickup_DateTime': '2009-06-09 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802383, 'End_Lon': -73.956822, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764268, 'Start_Lon': -73.98504, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-13 01:19:00', 'Trip_Pickup_DateTime': '2009-06-13 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.677005, 'End_Lon': -73.802938, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.679845, 'Start_Lon': -73.804272, 'Tip_Amt': 9.0, 'Tolls_Amt': 5.0, 'Total_Amt': 59.0, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-21 16:40:00', 'Trip_Pickup_DateTime': '2009-06-21 16:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774053, 'End_Lon': -73.870915, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760687, 'Start_Lon': -73.970967, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.45, 'Trip_Distance': 10.18, 'Trip_Dropoff_DateTime': '2009-06-09 17:42:00', 'Trip_Pickup_DateTime': '2009-06-09 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774335, 'End_Lon': -73.981225, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754568, 'Start_Lon': -73.975262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-17 15:06:00', 'Trip_Pickup_DateTime': '2009-06-17 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74888, 'End_Lon': -73.995225, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756167, 'Start_Lon': -73.965797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-13 00:29:00', 'Trip_Pickup_DateTime': '2009-06-13 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71001, 'End_Lon': -74.00997, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762543, 'Start_Lon': -73.978267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.7, 'Trip_Distance': 5.62, 'Trip_Dropoff_DateTime': '2009-06-12 20:10:00', 'Trip_Pickup_DateTime': '2009-06-12 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809168, 'End_Lon': -73.94902, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.804582, 'Start_Lon': -73.945247, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-09 18:33:00', 'Trip_Pickup_DateTime': '2009-06-09 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774108, 'End_Lon': -73.963625, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740993, 'Start_Lon': -73.997203, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-09 16:50:00', 'Trip_Pickup_DateTime': '2009-06-09 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771798, 'End_Lon': -73.946758, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773482, 'Start_Lon': -73.945763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.15, 'Trip_Dropoff_DateTime': '2009-06-12 23:42:00', 'Trip_Pickup_DateTime': '2009-06-12 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.638875, 'End_Lon': -73.974615, 'Fare_Amt': 35.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774025, 'Start_Lon': -73.874487, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 39.7, 'Trip_Distance': 15.3, 'Trip_Dropoff_DateTime': '2009-06-09 16:09:00', 'Trip_Pickup_DateTime': '2009-06-09 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788707, 'End_Lon': -73.976192, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768237, 'Start_Lon': -73.982238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-12 22:45:00', 'Trip_Pickup_DateTime': '2009-06-12 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681732, 'End_Lon': -73.976808, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72178, 'Start_Lon': -73.980432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.6, 'Trip_Dropoff_DateTime': '2009-06-21 20:48:00', 'Trip_Pickup_DateTime': '2009-06-21 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681643, 'End_Lon': -74.00607, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.677652, 'Start_Lon': -74.00047, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 11.95, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-13 00:06:00', 'Trip_Pickup_DateTime': '2009-06-12 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74824, 'End_Lon': -73.980365, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779018, 'Start_Lon': -73.981977, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-21 21:08:00', 'Trip_Pickup_DateTime': '2009-06-21 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709615, 'End_Lon': -74.015273, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747287, 'Start_Lon': -74.001887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 4.74, 'Trip_Dropoff_DateTime': '2009-06-02 16:48:00', 'Trip_Pickup_DateTime': '2009-06-02 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758185, 'End_Lon': -73.96291, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739945, 'Start_Lon': -73.976242, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-09 18:08:00', 'Trip_Pickup_DateTime': '2009-06-09 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730093, 'End_Lon': -74.000518, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74992, 'Start_Lon': -73.991828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-12 22:18:00', 'Trip_Pickup_DateTime': '2009-06-12 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746363, 'End_Lon': -73.971593, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777995, 'Start_Lon': -73.945713, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-12 23:11:00', 'Trip_Pickup_DateTime': '2009-06-12 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761815, 'End_Lon': -73.978462, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760848, 'Start_Lon': -73.958045, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-12 19:57:00', 'Trip_Pickup_DateTime': '2009-06-12 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785555, 'End_Lon': -73.970067, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79086, 'Start_Lon': -73.968983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-24 15:16:00', 'Trip_Pickup_DateTime': '2009-06-24 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759933, 'End_Lon': -73.991645, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76136, 'Start_Lon': -73.99425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-09 18:28:00', 'Trip_Pickup_DateTime': '2009-06-09 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771893, 'End_Lon': -73.985078, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779995, 'Start_Lon': -73.957092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-12 23:37:00', 'Trip_Pickup_DateTime': '2009-06-12 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724363, 'End_Lon': -74.001558, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776777, 'Start_Lon': -73.989122, 'Tip_Amt': 3.2, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 4.36, 'Trip_Dropoff_DateTime': '2009-06-12 22:22:00', 'Trip_Pickup_DateTime': '2009-06-12 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.677537, 'End_Lon': -73.968902, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.681775, 'Start_Lon': -73.99382, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-12 22:36:00', 'Trip_Pickup_DateTime': '2009-06-12 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791093, 'End_Lon': -73.953283, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764093, 'Start_Lon': -73.976623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-09 15:25:00', 'Trip_Pickup_DateTime': '2009-06-09 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750633, 'End_Lon': -73.99113, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744153, 'Start_Lon': -73.991867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-12 23:45:00', 'Trip_Pickup_DateTime': '2009-06-12 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752437, 'End_Lon': -73.96747, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746387, 'Start_Lon': -74.008315, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-12 21:30:00', 'Trip_Pickup_DateTime': '2009-06-12 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-09 17:41:00', 'Trip_Pickup_DateTime': '2009-06-09 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765757, 'End_Lon': -73.95748, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769265, 'Start_Lon': -73.967283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-09 17:46:00', 'Trip_Pickup_DateTime': '2009-06-09 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752712, 'End_Lon': -73.979155, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728408, 'Start_Lon': -73.990677, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-12 22:12:00', 'Trip_Pickup_DateTime': '2009-06-12 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791022, 'End_Lon': -73.965305, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782977, 'Start_Lon': -73.97847, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-09 15:49:00', 'Trip_Pickup_DateTime': '2009-06-09 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718645, 'End_Lon': -73.99467, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708128, 'Start_Lon': -74.012787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-12 20:57:00', 'Trip_Pickup_DateTime': '2009-06-12 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774775, 'End_Lon': -73.982297, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782322, 'Start_Lon': -73.975603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-09 14:17:00', 'Trip_Pickup_DateTime': '2009-06-09 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.807962, 'End_Lon': -73.945962, 'Fare_Amt': 24.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749922, 'Start_Lon': -73.99188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.5, 'Trip_Distance': 7.33, 'Trip_Dropoff_DateTime': '2009-06-12 19:44:00', 'Trip_Pickup_DateTime': '2009-06-12 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739225, 'End_Lon': -73.976763, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749577, 'Start_Lon': -73.992255, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-09 15:02:00', 'Trip_Pickup_DateTime': '2009-06-09 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7462, 'End_Lon': -73.979818, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762067, 'Start_Lon': -73.979297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-12 20:57:00', 'Trip_Pickup_DateTime': '2009-06-12 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.697255, 'End_Lon': -73.996825, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741133, 'Start_Lon': -73.98451, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-09 13:29:00', 'Trip_Pickup_DateTime': '2009-06-09 13:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761085, 'End_Lon': -73.970243, 'Fare_Amt': 9.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73811, 'Start_Lon': -73.986852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-17 15:08:00', 'Trip_Pickup_DateTime': '2009-06-17 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755978, 'End_Lon': -73.969093, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755978, 'Start_Lon': -73.969093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-09 14:11:00', 'Trip_Pickup_DateTime': '2009-06-09 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715007, 'End_Lon': -73.954845, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71496, 'Start_Lon': -73.962295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-01 20:07:00', 'Trip_Pickup_DateTime': '2009-06-01 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759993, 'End_Lon': -73.980945, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757615, 'Start_Lon': -73.989503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-21 19:09:00', 'Trip_Pickup_DateTime': '2009-06-21 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799977, 'End_Lon': -73.966677, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785092, 'Start_Lon': -73.976848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-12 21:08:00', 'Trip_Pickup_DateTime': '2009-06-12 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743817, 'End_Lon': -73.981832, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731193, 'Start_Lon': -73.999883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-12 20:51:00', 'Trip_Pickup_DateTime': '2009-06-12 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738215, 'End_Lon': -73.977502, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728068, 'Start_Lon': -73.984892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-08 16:55:00', 'Trip_Pickup_DateTime': '2009-06-08 16:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731918, 'End_Lon': -73.996625, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755548, 'Start_Lon': -73.979262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-12 18:56:00', 'Trip_Pickup_DateTime': '2009-06-12 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778657, 'End_Lon': -73.958293, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766047, 'Start_Lon': -73.980288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-09 14:16:00', 'Trip_Pickup_DateTime': '2009-06-09 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744538, 'End_Lon': -73.975962, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759512, 'Start_Lon': -73.965205, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-12 19:28:00', 'Trip_Pickup_DateTime': '2009-06-12 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.664563, 'End_Lon': -73.983675, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721108, 'Start_Lon': -74.005302, 'Tip_Amt': 3.22, 'Tolls_Amt': 0.0, 'Total_Amt': 19.32, 'Trip_Distance': 5.05, 'Trip_Dropoff_DateTime': '2009-06-21 18:47:00', 'Trip_Pickup_DateTime': '2009-06-21 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738793, 'End_Lon': -73.986668, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746297, 'Start_Lon': -74.000962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-01 19:21:00', 'Trip_Pickup_DateTime': '2009-06-01 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74268, 'End_Lon': -73.996013, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.72321, 'Start_Lon': -73.984857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-16 22:11:18', 'Trip_Pickup_DateTime': '2009-06-16 22:01:54', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.750113, 'End_Lon': -73.99493, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73886, 'Start_Lon': -74.003583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-01 15:01:00', 'Trip_Pickup_DateTime': '2009-06-01 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756343, 'End_Lon': -73.983302, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74969, 'Start_Lon': -73.993538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-12 19:27:00', 'Trip_Pickup_DateTime': '2009-06-12 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726058, 'End_Lon': -73.992965, 'Fare_Amt': 17.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767773, 'Start_Lon': -73.962187, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 19.7, 'Trip_Distance': 5.99, 'Trip_Dropoff_DateTime': '2009-06-12 20:47:00', 'Trip_Pickup_DateTime': '2009-06-12 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758683, 'End_Lon': -73.976802, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74916, 'Start_Lon': -73.983108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-09 12:40:00', 'Trip_Pickup_DateTime': '2009-06-09 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750203, 'End_Lon': -73.991478, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755453, 'Start_Lon': -73.988158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-01 23:14:00', 'Trip_Pickup_DateTime': '2009-06-01 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765442, 'End_Lon': -73.964185, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778138, 'Start_Lon': -73.978247, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-09 13:24:00', 'Trip_Pickup_DateTime': '2009-06-09 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777805, 'End_Lon': -73.974753, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766448, 'Start_Lon': -73.960178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-01 20:56:00', 'Trip_Pickup_DateTime': '2009-06-01 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715707, 'End_Lon': -73.998443, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722802, 'Start_Lon': -73.998985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-01 12:33:00', 'Trip_Pickup_DateTime': '2009-06-01 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789563, 'End_Lon': -73.970402, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770962, 'Start_Lon': -73.956845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-12 18:14:00', 'Trip_Pickup_DateTime': '2009-06-12 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76704, 'End_Lon': -73.956782, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766653, 'Start_Lon': -73.954162, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-21 17:01:00', 'Trip_Pickup_DateTime': '2009-06-21 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770058, 'End_Lon': -73.957095, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763737, 'Start_Lon': -73.977603, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-01 22:38:00', 'Trip_Pickup_DateTime': '2009-06-01 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73488, 'End_Lon': -73.989058, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75018, 'Start_Lon': -73.981187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-21 19:51:00', 'Trip_Pickup_DateTime': '2009-06-21 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79077, 'End_Lon': -73.839972, 'Fare_Amt': 42.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776925, 'Start_Lon': -73.982138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 42.6, 'Trip_Distance': 16.04, 'Trip_Dropoff_DateTime': '2009-06-02 00:23:00', 'Trip_Pickup_DateTime': '2009-06-01 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771558, 'End_Lon': -73.956785, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778212, 'Start_Lon': -73.981878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-12 18:43:00', 'Trip_Pickup_DateTime': '2009-06-12 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715838, 'End_Lon': -73.961652, 'Fare_Amt': 42.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64512, 'Start_Lon': -73.776795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 42.6, 'Trip_Distance': 19.02, 'Trip_Dropoff_DateTime': '2009-06-01 23:42:00', 'Trip_Pickup_DateTime': '2009-06-01 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75512, 'End_Lon': -73.964962, 'Fare_Amt': 9.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767908, 'Start_Lon': -73.984762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-01 19:22:00', 'Trip_Pickup_DateTime': '2009-06-01 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761232, 'End_Lon': -73.999927, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751185, 'Start_Lon': -73.994307, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-01 23:32:00', 'Trip_Pickup_DateTime': '2009-06-01 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784737, 'End_Lon': -73.98105, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745702, 'Start_Lon': -73.99814, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-01 23:13:00', 'Trip_Pickup_DateTime': '2009-06-01 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76253, 'End_Lon': -73.958888, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714802, 'Start_Lon': -73.989193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-12 17:54:00', 'Trip_Pickup_DateTime': '2009-06-12 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772253, 'End_Lon': -73.983835, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79194, 'Start_Lon': -73.973835, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-01 17:56:00', 'Trip_Pickup_DateTime': '2009-06-01 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756358, 'End_Lon': -73.97684, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755927, 'Start_Lon': -73.985687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-09 12:38:00', 'Trip_Pickup_DateTime': '2009-06-09 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766763, 'End_Lon': -73.962795, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728258, 'Start_Lon': -74.007122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 4.47, 'Trip_Dropoff_DateTime': '2009-06-01 19:01:00', 'Trip_Pickup_DateTime': '2009-06-01 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749985, 'End_Lon': -73.980963, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750898, 'Start_Lon': -73.991868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-09 12:24:00', 'Trip_Pickup_DateTime': '2009-06-09 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74704, 'End_Lon': -73.888993, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796913, 'Start_Lon': -73.937902, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.63, 'Trip_Dropoff_DateTime': '2009-06-02 00:04:00', 'Trip_Pickup_DateTime': '2009-06-01 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76873, 'End_Lon': -73.958207, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755618, 'Start_Lon': -73.981462, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-01 19:02:00', 'Trip_Pickup_DateTime': '2009-06-01 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.638888, 'End_Lon': -73.78589, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755673, 'Start_Lon': -73.972223, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 15.89, 'Trip_Dropoff_DateTime': '2009-06-01 15:45:00', 'Trip_Pickup_DateTime': '2009-06-01 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781817, 'End_Lon': -73.951772, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757353, 'Start_Lon': -73.990042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-21 18:03:00', 'Trip_Pickup_DateTime': '2009-06-21 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74624, 'End_Lon': -73.972545, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756408, 'Start_Lon': -73.973942, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-01 19:29:00', 'Trip_Pickup_DateTime': '2009-06-01 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735662, 'End_Lon': -74.001748, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742252, 'Start_Lon': -73.997255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-01 19:21:00', 'Trip_Pickup_DateTime': '2009-06-01 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735522, 'End_Lon': -73.981058, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743455, 'Start_Lon': -73.976932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-12 18:00:00', 'Trip_Pickup_DateTime': '2009-06-12 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761357, 'End_Lon': -73.987517, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75081, 'Start_Lon': -73.99073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-01 18:02:00', 'Trip_Pickup_DateTime': '2009-06-01 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787408, 'End_Lon': -73.950185, 'Fare_Amt': 20.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704158, 'Start_Lon': -74.0065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.5, 'Trip_Distance': 8.57, 'Trip_Dropoff_DateTime': '2009-06-01 18:52:00', 'Trip_Pickup_DateTime': '2009-06-01 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.816398, 'End_Lon': -73.946433, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726622, 'Start_Lon': -73.986687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 9.21, 'Trip_Dropoff_DateTime': '2009-06-03 20:52:00', 'Trip_Pickup_DateTime': '2009-06-03 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749052, 'End_Lon': -73.99202, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752446, 'Start_Lon': -73.971941, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-23 16:21:58', 'Trip_Pickup_DateTime': '2009-06-23 16:05:39', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.783864, 'End_Lon': -73.947354, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.792054, 'Start_Lon': -73.941307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-27 18:53:37', 'Trip_Pickup_DateTime': '2009-06-27 18:52:00', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.767925, 'End_Lon': -73.887011, 'Fare_Amt': 26.5, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.731141, 'Start_Lon': -74.001483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.5, 'Trip_Distance': 10.4, 'Trip_Dropoff_DateTime': '2009-06-23 08:49:34', 'Trip_Pickup_DateTime': '2009-06-23 08:19:11', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.76984, 'End_Lon': -73.964062, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724122, 'Start_Lon': -73.997817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-17 23:26:00', 'Trip_Pickup_DateTime': '2009-06-17 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736063, 'End_Lon': -73.987092, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743348, 'Start_Lon': -73.993028, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-20 11:45:00', 'Trip_Pickup_DateTime': '2009-06-20 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792393, 'End_Lon': -73.977658, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778243, 'Start_Lon': -73.974485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-10 10:57:00', 'Trip_Pickup_DateTime': '2009-06-10 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764235, 'End_Lon': -74.017597, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7144, 'Start_Lon': -74.005557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 4.58, 'Trip_Dropoff_DateTime': '2009-06-17 16:18:00', 'Trip_Pickup_DateTime': '2009-06-17 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738428, 'End_Lon': -73.999108, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733582, 'Start_Lon': -73.987765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-17 15:07:00', 'Trip_Pickup_DateTime': '2009-06-17 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750922, 'End_Lon': -73.994403, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756048, 'Start_Lon': -73.990833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-20 13:59:00', 'Trip_Pickup_DateTime': '2009-06-20 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772308, 'End_Lon': -73.885212, 'Fare_Amt': 23.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755657, 'Start_Lon': -73.991818, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.85, 'Trip_Distance': 9.21, 'Trip_Dropoff_DateTime': '2009-06-17 19:27:00', 'Trip_Pickup_DateTime': '2009-06-17 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.835598, 'End_Lon': -73.939472, 'Fare_Amt': 28.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73268, 'Start_Lon': -73.979827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.1, 'Trip_Distance': 11.34, 'Trip_Dropoff_DateTime': '2009-06-13 09:25:00', 'Trip_Pickup_DateTime': '2009-06-13 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74084, 'End_Lon': -73.978615, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770725, 'Start_Lon': -73.956993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-17 18:22:00', 'Trip_Pickup_DateTime': '2009-06-17 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770632, 'End_Lon': -73.865245, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737378, 'Start_Lon': -73.885048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 5.64, 'Trip_Dropoff_DateTime': '2009-06-20 07:52:00', 'Trip_Pickup_DateTime': '2009-06-20 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782127, 'End_Lon': -73.95147, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757035, 'Start_Lon': -73.976205, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-17 15:43:00', 'Trip_Pickup_DateTime': '2009-06-17 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797345, 'End_Lon': -73.968125, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785018, 'Start_Lon': -73.979062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-20 08:56:00', 'Trip_Pickup_DateTime': '2009-06-20 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764797, 'End_Lon': -73.958233, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735693, 'Start_Lon': -73.979385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-17 14:32:00', 'Trip_Pickup_DateTime': '2009-06-17 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751425, 'End_Lon': -73.97419, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744568, 'Start_Lon': -73.97907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-20 08:22:00', 'Trip_Pickup_DateTime': '2009-06-20 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770282, 'End_Lon': -73.961618, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744232, 'Start_Lon': -73.995912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-04 16:26:00', 'Trip_Pickup_DateTime': '2009-06-04 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779647, 'End_Lon': -73.955843, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79102, 'Start_Lon': -73.953433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-24 17:17:00', 'Trip_Pickup_DateTime': '2009-06-24 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74194, 'End_Lon': -73.92624, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752835, 'Start_Lon': -73.973995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-20 05:20:00', 'Trip_Pickup_DateTime': '2009-06-20 05:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772335, 'End_Lon': -73.965067, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765475, 'Start_Lon': -73.983742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-10 10:31:00', 'Trip_Pickup_DateTime': '2009-06-10 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77142, 'End_Lon': -73.963365, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759597, 'Start_Lon': -73.969812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-17 14:42:00', 'Trip_Pickup_DateTime': '2009-06-17 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756167, 'End_Lon': -73.990502, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76061, 'Start_Lon': -74.002725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-10 10:20:00', 'Trip_Pickup_DateTime': '2009-06-10 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648802, 'End_Lon': -73.782532, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728797, 'Start_Lon': -73.990338, 'Tip_Amt': 7.0, 'Tolls_Amt': 4.15, 'Total_Amt': 56.15, 'Trip_Distance': 17.6, 'Trip_Dropoff_DateTime': '2009-06-12 07:05:00', 'Trip_Pickup_DateTime': '2009-06-12 06:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756165, 'End_Lon': -73.961542, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737645, 'Start_Lon': -73.99168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-13 16:56:00', 'Trip_Pickup_DateTime': '2009-06-13 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75614, 'End_Lon': -73.998157, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749993, 'Start_Lon': -73.988335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-10 10:20:00', 'Trip_Pickup_DateTime': '2009-06-10 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766653, 'End_Lon': -73.96711, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786427, 'Start_Lon': -73.952855, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-10 10:26:00', 'Trip_Pickup_DateTime': '2009-06-10 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732447, 'End_Lon': -74.003787, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730995, 'Start_Lon': -74.009037, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-08 20:06:00', 'Trip_Pickup_DateTime': '2009-06-08 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74732, 'End_Lon': -73.997028, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743053, 'Start_Lon': -73.993042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-10 10:16:00', 'Trip_Pickup_DateTime': '2009-06-10 10:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786937, 'End_Lon': -73.953887, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75771, 'Start_Lon': -73.97674, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-20 11:27:00', 'Trip_Pickup_DateTime': '2009-06-20 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732945, 'End_Lon': -73.992565, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740938, 'Start_Lon': -73.98374, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-25 17:15:00', 'Trip_Pickup_DateTime': '2009-06-25 17:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748488, 'End_Lon': -73.988565, 'Fare_Amt': 9.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718763, 'Start_Lon': -74.010685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-20 03:03:00', 'Trip_Pickup_DateTime': '2009-06-20 02:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776508, 'End_Lon': -73.913233, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769232, 'Start_Lon': -73.862932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.41, 'Trip_Dropoff_DateTime': '2009-06-13 14:23:00', 'Trip_Pickup_DateTime': '2009-06-13 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743183, 'End_Lon': -73.993208, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738052, 'Start_Lon': -73.99672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-20 10:46:00', 'Trip_Pickup_DateTime': '2009-06-20 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79175, 'End_Lon': -73.968957, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756128, 'Start_Lon': -73.990268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-08 19:40:00', 'Trip_Pickup_DateTime': '2009-06-08 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740995, 'End_Lon': -74.005568, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756003, 'Start_Lon': -73.990352, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-23 20:23:00', 'Trip_Pickup_DateTime': '2009-06-23 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758275, 'End_Lon': -73.937818, 'Fare_Amt': 2.5, 'Passenger_Count': 208, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758278, 'Start_Lon': -73.937825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-17 13:07:00', 'Trip_Pickup_DateTime': '2009-06-17 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762637, 'End_Lon': -73.973573, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743953, 'Start_Lon': -73.973332, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-22 09:32:00', 'Trip_Pickup_DateTime': '2009-06-22 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778677, 'End_Lon': -73.952, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74413, 'Start_Lon': -73.985675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-13 16:59:00', 'Trip_Pickup_DateTime': '2009-06-13 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740808, 'End_Lon': -73.98378, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7441, 'Start_Lon': -73.991528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-22 09:22:00', 'Trip_Pickup_DateTime': '2009-06-22 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741, 'End_Lon': -73.987878, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757448, 'Start_Lon': -73.973623, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-10 08:57:00', 'Trip_Pickup_DateTime': '2009-06-10 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786732, 'End_Lon': -73.977852, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774942, 'Start_Lon': -73.982825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-13 16:27:00', 'Trip_Pickup_DateTime': '2009-06-13 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760448, 'End_Lon': -73.90675, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756647, 'Start_Lon': -73.966773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-12 04:36:00', 'Trip_Pickup_DateTime': '2009-06-12 04:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764282, 'End_Lon': -73.959452, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750223, 'Start_Lon': -73.991, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-13 17:40:00', 'Trip_Pickup_DateTime': '2009-06-13 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750047, 'End_Lon': -73.995035, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732528, 'Start_Lon': -74.006455, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-22 09:01:00', 'Trip_Pickup_DateTime': '2009-06-22 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687935, 'End_Lon': -73.962708, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70672, 'Start_Lon': -74.006, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-13 15:14:00', 'Trip_Pickup_DateTime': '2009-06-13 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76153, 'End_Lon': -73.984125, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752593, 'Start_Lon': -73.979623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-22 08:55:00', 'Trip_Pickup_DateTime': '2009-06-22 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786993, 'End_Lon': -73.953502, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744223, 'Start_Lon': -73.991892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-13 13:39:00', 'Trip_Pickup_DateTime': '2009-06-13 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756205, 'End_Lon': -73.972457, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777513, 'Start_Lon': -73.95702, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-22 08:50:00', 'Trip_Pickup_DateTime': '2009-06-22 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.875673, 'End_Lon': -73.908575, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762393, 'Start_Lon': -73.979567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.3, 'Trip_Distance': 10.27, 'Trip_Dropoff_DateTime': '2009-06-13 16:27:00', 'Trip_Pickup_DateTime': '2009-06-13 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746825, 'End_Lon': -73.985128, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709812, 'Start_Lon': -74.010153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-12 20:31:00', 'Trip_Pickup_DateTime': '2009-06-12 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761102, 'End_Lon': -73.970063, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745092, 'Start_Lon': -73.972443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-13 10:55:00', 'Trip_Pickup_DateTime': '2009-06-13 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785988, 'End_Lon': -73.955193, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762627, 'Start_Lon': -73.97175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-20 10:47:00', 'Trip_Pickup_DateTime': '2009-06-20 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749502, 'End_Lon': -73.976087, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732515, 'Start_Lon': -73.996258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-10 09:14:00', 'Trip_Pickup_DateTime': '2009-06-10 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76553, 'End_Lon': -73.954717, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749208, 'Start_Lon': -73.975643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-10 06:40:00', 'Trip_Pickup_DateTime': '2009-06-10 06:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729888, 'End_Lon': -73.991748, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74902, 'Start_Lon': -73.991725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-22 09:19:00', 'Trip_Pickup_DateTime': '2009-06-22 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774587, 'End_Lon': -73.959148, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724954, 'Start_Lon': -73.981307, 'Tip_Amt': 1.87, 'Tolls_Amt': 0.0, 'Total_Amt': 14.37, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-21 11:59:21', 'Trip_Pickup_DateTime': '2009-06-21 11:45:15', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.762612, 'End_Lon': -73.983092, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738743, 'Start_Lon': -74.008145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-10 07:13:00', 'Trip_Pickup_DateTime': '2009-06-10 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748857, 'End_Lon': -73.981628, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761013, 'Start_Lon': -73.968965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-13 01:13:00', 'Trip_Pickup_DateTime': '2009-06-13 01:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 11:55:00', 'Trip_Pickup_DateTime': '2009-06-15 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741712, 'End_Lon': -73.997443, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771873, 'Start_Lon': -73.982765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-13 12:01:00', 'Trip_Pickup_DateTime': '2009-06-13 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733617, 'End_Lon': -73.991208, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75853, 'Start_Lon': -73.978718, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-13 13:14:00', 'Trip_Pickup_DateTime': '2009-06-13 12:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742998, 'End_Lon': -73.919065, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743523, 'Start_Lon': -73.918735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-10 06:23:00', 'Trip_Pickup_DateTime': '2009-06-10 06:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731953, 'End_Lon': -73.98533, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733143, 'Start_Lon': -74.006408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-10 05:11:00', 'Trip_Pickup_DateTime': '2009-06-10 05:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71264, 'End_Lon': -73.99887, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711865, 'Start_Lon': -74.010158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-13 12:45:00', 'Trip_Pickup_DateTime': '2009-06-13 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732998, 'End_Lon': -74.007113, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744658, 'Start_Lon': -73.992063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-09 21:34:00', 'Trip_Pickup_DateTime': '2009-06-09 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76712, 'End_Lon': -73.953602, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778478, 'Start_Lon': -73.945387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-13 08:59:00', 'Trip_Pickup_DateTime': '2009-06-13 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 2 with 1000 records\n",
            "[{'End_Lat': 40.72205, 'End_Lon': -73.990365, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76032, 'Start_Lon': -73.962335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.7, 'Trip_Dropoff_DateTime': '2009-06-10 04:50:00', 'Trip_Pickup_DateTime': '2009-06-10 04:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761672, 'End_Lon': -73.997758, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780502, 'Start_Lon': -73.980268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-13 09:13:00', 'Trip_Pickup_DateTime': '2009-06-13 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770613, 'End_Lon': -73.865242, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.793433, 'Start_Lon': -73.951623, 'Tip_Amt': 5.02, 'Tolls_Amt': 4.15, 'Total_Amt': 29.27, 'Trip_Distance': 8.11, 'Trip_Dropoff_DateTime': '2009-06-13 12:47:00', 'Trip_Pickup_DateTime': '2009-06-13 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756055, 'End_Lon': -73.988723, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745353, 'Start_Lon': -73.99112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-22 01:32:00', 'Trip_Pickup_DateTime': '2009-06-22 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723562, 'End_Lon': -73.991198, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740968, 'Start_Lon': -73.97859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-10 06:20:00', 'Trip_Pickup_DateTime': '2009-06-10 06:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771735, 'End_Lon': -73.979332, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766685, 'Start_Lon': -73.965072, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-13 12:43:00', 'Trip_Pickup_DateTime': '2009-06-13 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722425, 'End_Lon': -73.997295, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733143, 'Start_Lon': -74.006425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-13 12:52:00', 'Trip_Pickup_DateTime': '2009-06-13 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76503, 'End_Lon': -73.97721, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750635, 'Start_Lon': -73.99139, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-22 07:16:00', 'Trip_Pickup_DateTime': '2009-06-22 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772183, 'End_Lon': -73.946773, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757027, 'Start_Lon': -73.970343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-10 02:40:00', 'Trip_Pickup_DateTime': '2009-06-10 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714478, 'End_Lon': -74.003443, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702243, 'Start_Lon': -74.011772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-13 02:09:00', 'Trip_Pickup_DateTime': '2009-06-13 02:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764557, 'End_Lon': -73.9068, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745728, 'Start_Lon': -73.946002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-13 05:12:00', 'Trip_Pickup_DateTime': '2009-06-13 05:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.689502, 'End_Lon': -73.96931, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73765, 'Start_Lon': -73.984013, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-17 14:40:00', 'Trip_Pickup_DateTime': '2009-06-17 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723635, 'End_Lon': -73.979708, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758, 'Start_Lon': -73.98456, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-10 02:57:00', 'Trip_Pickup_DateTime': '2009-06-10 02:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75796, 'End_Lon': -73.99065, 'Fare_Amt': 16.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75796, 'Start_Lon': -73.99065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-10 03:31:00', 'Trip_Pickup_DateTime': '2009-06-10 03:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774435, 'End_Lon': -73.872637, 'Fare_Amt': 26.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762318, 'Start_Lon': -73.977233, 'Tip_Amt': 5.3, 'Tolls_Amt': 4.15, 'Total_Amt': 35.95, 'Trip_Distance': 10.52, 'Trip_Dropoff_DateTime': '2009-06-08 10:50:00', 'Trip_Pickup_DateTime': '2009-06-08 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740533, 'End_Lon': -73.975902, 'Fare_Amt': 3.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734123, 'Start_Lon': -73.977882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-13 09:13:00', 'Trip_Pickup_DateTime': '2009-06-13 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784898, 'End_Lon': -73.982343, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770772, 'Start_Lon': -73.95696, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-13 12:01:00', 'Trip_Pickup_DateTime': '2009-06-13 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74391, 'End_Lon': -73.985943, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756222, 'Start_Lon': -73.972185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-10 00:20:00', 'Trip_Pickup_DateTime': '2009-06-10 00:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732948, 'End_Lon': -73.99116, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707967, 'Start_Lon': -74.006358, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-13 08:18:00', 'Trip_Pickup_DateTime': '2009-06-13 08:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710538, 'End_Lon': -74.008517, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759723, 'Start_Lon': -73.985023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-13 05:45:00', 'Trip_Pickup_DateTime': '2009-06-13 05:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749215, 'End_Lon': -73.97338, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732463, 'Start_Lon': -74.00981, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.82, 'Trip_Dropoff_DateTime': '2009-06-10 00:07:00', 'Trip_Pickup_DateTime': '2009-06-09 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781938, 'End_Lon': -73.982727, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763775, 'Start_Lon': -73.982245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-22 00:35:00', 'Trip_Pickup_DateTime': '2009-06-22 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75301, 'End_Lon': -73.974378, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762665, 'Start_Lon': -73.965732, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-09 21:58:00', 'Trip_Pickup_DateTime': '2009-06-09 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74884, 'End_Lon': -73.992095, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729918, 'Start_Lon': -74.000548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-13 02:08:00', 'Trip_Pickup_DateTime': '2009-06-13 01:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793393, 'End_Lon': -73.97077, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786692, 'Start_Lon': -73.972058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-09 20:38:00', 'Trip_Pickup_DateTime': '2009-06-09 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.829025, 'End_Lon': -73.944663, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779187, 'Start_Lon': -73.947423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.48, 'Trip_Dropoff_DateTime': '2009-06-13 04:04:00', 'Trip_Pickup_DateTime': '2009-06-13 03:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769695, 'End_Lon': -73.962892, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755008, 'Start_Lon': -73.965287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-09 21:32:00', 'Trip_Pickup_DateTime': '2009-06-09 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.817472, 'End_Lon': -73.938265, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74016, 'Start_Lon': -73.994725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 8.04, 'Trip_Dropoff_DateTime': '2009-06-09 21:20:00', 'Trip_Pickup_DateTime': '2009-06-09 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766508, 'End_Lon': -73.983143, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757313, 'Start_Lon': -73.990103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-09 21:59:00', 'Trip_Pickup_DateTime': '2009-06-09 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756457, 'End_Lon': -73.982345, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768392, 'Start_Lon': -73.957543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-13 01:15:00', 'Trip_Pickup_DateTime': '2009-06-13 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.8123, 'End_Lon': -73.936333, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7503, 'Start_Lon': -73.991725, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 5.96, 'Trip_Dropoff_DateTime': '2009-06-21 23:30:00', 'Trip_Pickup_DateTime': '2009-06-21 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74026, 'End_Lon': -74.007812, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768177, 'Start_Lon': -73.958872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.26, 'Trip_Dropoff_DateTime': '2009-06-13 02:47:00', 'Trip_Pickup_DateTime': '2009-06-13 02:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74374, 'End_Lon': -73.990748, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75087, 'Start_Lon': -73.980522, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-09 14:47:00', 'Trip_Pickup_DateTime': '2009-06-09 14:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79053, 'End_Lon': -73.975765, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76276, 'Start_Lon': -73.978322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-09 20:16:00', 'Trip_Pickup_DateTime': '2009-06-09 20:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756308, 'End_Lon': -73.997385, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774632, 'Start_Lon': -73.982635, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-13 02:42:00', 'Trip_Pickup_DateTime': '2009-06-13 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714052, 'End_Lon': -73.980058, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76383, 'Start_Lon': -73.954392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 4.15, 'Trip_Dropoff_DateTime': '2009-06-17 14:32:00', 'Trip_Pickup_DateTime': '2009-06-17 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746077, 'End_Lon': -73.95615, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.802932, 'Start_Lon': -73.967783, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 28.0, 'Trip_Distance': 7.13, 'Trip_Dropoff_DateTime': '2009-06-09 20:03:00', 'Trip_Pickup_DateTime': '2009-06-09 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.819005, 'End_Lon': -73.937187, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.815383, 'Start_Lon': -73.958013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-13 21:47:00', 'Trip_Pickup_DateTime': '2009-06-13 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766365, 'End_Lon': -73.964897, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774577, 'Start_Lon': -73.963107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-11 10:28:00', 'Trip_Pickup_DateTime': '2009-06-11 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717615, 'End_Lon': -74.004243, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710225, 'Start_Lon': -74.010695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-18 13:42:00', 'Trip_Pickup_DateTime': '2009-06-18 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75971, 'End_Lon': -73.981155, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72217, 'Start_Lon': -74.004413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-18 11:30:00', 'Trip_Pickup_DateTime': '2009-06-18 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764403, 'End_Lon': -73.980628, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750953, 'Start_Lon': -73.990418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-15 19:57:00', 'Trip_Pickup_DateTime': '2009-06-15 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75129, 'End_Lon': -73.990635, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763033, 'Start_Lon': -73.972432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-18 11:33:00', 'Trip_Pickup_DateTime': '2009-06-18 11:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644558, 'End_Lon': -73.794307, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77384, 'Start_Lon': -73.951463, 'Tip_Amt': 13.5, 'Tolls_Amt': 4.15, 'Total_Amt': 62.65, 'Trip_Distance': 19.37, 'Trip_Dropoff_DateTime': '2009-06-16 07:13:00', 'Trip_Pickup_DateTime': '2009-06-16 06:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78039, 'End_Lon': -73.957995, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754813, 'Start_Lon': -73.97774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-18 14:54:00', 'Trip_Pickup_DateTime': '2009-06-18 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751352, 'End_Lon': -73.99067, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763645, 'Start_Lon': -73.97241, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-18 13:47:00', 'Trip_Pickup_DateTime': '2009-06-18 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799575, 'End_Lon': -73.941722, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740155, 'Start_Lon': -74.005858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.33, 'Trip_Dropoff_DateTime': '2009-06-15 03:50:00', 'Trip_Pickup_DateTime': '2009-06-15 03:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708848, 'End_Lon': -74.002395, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748843, 'Start_Lon': -73.993482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.76, 'Trip_Dropoff_DateTime': '2009-06-14 01:02:00', 'Trip_Pickup_DateTime': '2009-06-14 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750047, 'End_Lon': -73.988373, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754655, 'Start_Lon': -73.98404, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-18 13:11:00', 'Trip_Pickup_DateTime': '2009-06-18 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77268, 'End_Lon': -73.97849, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727428, 'Start_Lon': -74.000557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.75, 'Trip_Dropoff_DateTime': '2009-06-13 08:58:00', 'Trip_Pickup_DateTime': '2009-06-13 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753143, 'End_Lon': -73.98576, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751905, 'Start_Lon': -73.969642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-16 08:10:00', 'Trip_Pickup_DateTime': '2009-06-16 08:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74855, 'End_Lon': -73.969837, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771077, 'Start_Lon': -73.959603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-16 09:39:00', 'Trip_Pickup_DateTime': '2009-06-16 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748642, 'End_Lon': -73.984455, 'Fare_Amt': 12.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704352, 'Start_Lon': -74.014202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-20 14:15:00', 'Trip_Pickup_DateTime': '2009-06-20 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75164, 'End_Lon': -73.979795, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742227, 'Start_Lon': -73.9851, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-18 13:25:00', 'Trip_Pickup_DateTime': '2009-06-18 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784567, 'End_Lon': -73.95614, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776155, 'Start_Lon': -73.960037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-18 08:12:00', 'Trip_Pickup_DateTime': '2009-06-18 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7502, 'End_Lon': -73.995147, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777452, 'Start_Lon': -73.986407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-16 07:26:00', 'Trip_Pickup_DateTime': '2009-06-16 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750693, 'End_Lon': -73.978458, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758533, 'Start_Lon': -73.969823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-18 13:18:00', 'Trip_Pickup_DateTime': '2009-06-18 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709002, 'End_Lon': -73.9873, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706163, 'Start_Lon': -73.983908, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-18 10:33:00', 'Trip_Pickup_DateTime': '2009-06-18 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755345, 'End_Lon': -73.966238, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745123, 'Start_Lon': -73.97859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-15 22:17:00', 'Trip_Pickup_DateTime': '2009-06-15 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747648, 'End_Lon': -73.99306, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752378, 'Start_Lon': -73.97841, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-16 08:03:00', 'Trip_Pickup_DateTime': '2009-06-16 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754498, 'End_Lon': -73.995463, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758665, 'Start_Lon': -73.977955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-13 14:51:00', 'Trip_Pickup_DateTime': '2009-06-13 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733108, 'End_Lon': -73.99342, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72766, 'Start_Lon': -74.003217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 11:48:00', 'Trip_Pickup_DateTime': '2009-06-18 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76135, 'End_Lon': -73.969558, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765472, 'Start_Lon': -73.966253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-18 10:30:00', 'Trip_Pickup_DateTime': '2009-06-18 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739777, 'End_Lon': -73.985568, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742367, 'Start_Lon': -73.995225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-18 09:12:00', 'Trip_Pickup_DateTime': '2009-06-18 09:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.66699, 'End_Lon': -73.80157, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742113, 'Start_Lon': -74.003978, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 59.15, 'Trip_Distance': 15.74, 'Trip_Dropoff_DateTime': '2009-06-18 10:18:00', 'Trip_Pickup_DateTime': '2009-06-18 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746323, 'End_Lon': -74.00686, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742672, 'Start_Lon': -74.004123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-18 10:23:00', 'Trip_Pickup_DateTime': '2009-06-18 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760985, 'End_Lon': -73.983623, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79885, 'Start_Lon': -73.959478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-16 08:27:00', 'Trip_Pickup_DateTime': '2009-06-16 08:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714967, 'End_Lon': -74.005425, 'Fare_Amt': 15.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75786, 'Start_Lon': -73.988565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.63, 'Trip_Dropoff_DateTime': '2009-06-18 07:40:00', 'Trip_Pickup_DateTime': '2009-06-18 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755503, 'End_Lon': -73.99345, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742153, 'Start_Lon': -74.00459, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-17 16:38:00', 'Trip_Pickup_DateTime': '2009-06-17 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726307, 'End_Lon': -73.986288, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702472, 'Start_Lon': -74.012762, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-18 00:47:00', 'Trip_Pickup_DateTime': '2009-06-18 00:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741053, 'End_Lon': -73.920615, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741285, 'Start_Lon': -73.920692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.5, 'Trip_Dropoff_DateTime': '2009-06-18 01:33:00', 'Trip_Pickup_DateTime': '2009-06-18 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741088, 'End_Lon': -74.005642, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73868, 'Start_Lon': -74.008015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-12 22:37:00', 'Trip_Pickup_DateTime': '2009-06-12 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754705, 'End_Lon': -73.992367, 'Fare_Amt': 29.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773373, 'Start_Lon': -73.870822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.7, 'Trip_Distance': 9.46, 'Trip_Dropoff_DateTime': '2009-06-20 14:02:00', 'Trip_Pickup_DateTime': '2009-06-20 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740133, 'End_Lon': -73.997843, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7318, 'Start_Lon': -74.001282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-18 00:49:00', 'Trip_Pickup_DateTime': '2009-06-18 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733343, 'End_Lon': -73.991098, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753935, 'Start_Lon': -73.973678, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-20 14:15:00', 'Trip_Pickup_DateTime': '2009-06-20 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73097, 'End_Lon': -73.99335, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745653, 'Start_Lon': -73.979945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-13 15:45:00', 'Trip_Pickup_DateTime': '2009-06-13 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779317, 'End_Lon': -73.98827, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795153, 'Start_Lon': -73.973413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-13 18:52:00', 'Trip_Pickup_DateTime': '2009-06-13 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753407, 'End_Lon': -73.974277, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772142, 'Start_Lon': -73.963012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-18 06:33:00', 'Trip_Pickup_DateTime': '2009-06-18 06:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.631853, 'End_Lon': -73.96802, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.626288, 'Start_Lon': -73.958898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-15 22:43:00', 'Trip_Pickup_DateTime': '2009-06-15 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681232, 'End_Lon': -73.953432, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.680988, 'Start_Lon': -73.975207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-15 23:10:00', 'Trip_Pickup_DateTime': '2009-06-15 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773233, 'End_Lon': -73.982467, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776437, 'Start_Lon': -73.989715, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-15 21:15:00', 'Trip_Pickup_DateTime': '2009-06-15 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751565, 'End_Lon': -73.993822, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738013, 'Start_Lon': -73.980708, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-20 14:14:00', 'Trip_Pickup_DateTime': '2009-06-20 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726332, 'End_Lon': -74.00192, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72275, 'Start_Lon': -73.985933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-15 21:49:00', 'Trip_Pickup_DateTime': '2009-06-15 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750185, 'End_Lon': -73.994827, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749342, 'Start_Lon': -74.002928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-16 06:49:00', 'Trip_Pickup_DateTime': '2009-06-16 06:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755723, 'End_Lon': -73.970748, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752902, 'Start_Lon': -73.97773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-18 08:40:00', 'Trip_Pickup_DateTime': '2009-06-18 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767715, 'End_Lon': -73.956008, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756358, 'Start_Lon': -73.989923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-18 06:51:00', 'Trip_Pickup_DateTime': '2009-06-18 06:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.692365, 'End_Lon': -73.961483, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734468, 'Start_Lon': -73.9896, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.32, 'Trip_Dropoff_DateTime': '2009-06-22 09:44:00', 'Trip_Pickup_DateTime': '2009-06-22 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730182, 'End_Lon': -74.000883, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743642, 'Start_Lon': -74.006062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-18 02:48:00', 'Trip_Pickup_DateTime': '2009-06-18 02:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743348, 'End_Lon': -73.996258, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644832, 'Start_Lon': -73.924905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-18 07:37:00', 'Trip_Pickup_DateTime': '2009-06-18 07:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749928, 'End_Lon': -73.98821, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763182, 'Start_Lon': -73.980897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-13 10:10:00', 'Trip_Pickup_DateTime': '2009-06-13 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75576, 'End_Lon': -73.961882, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73031, 'Start_Lon': -74.006787, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-15 21:24:00', 'Trip_Pickup_DateTime': '2009-06-15 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784037, 'End_Lon': -73.950452, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787545, 'Start_Lon': -73.974663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-15 22:01:00', 'Trip_Pickup_DateTime': '2009-06-15 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750505, 'End_Lon': -73.978798, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756315, 'Start_Lon': -73.973103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-18 08:13:00', 'Trip_Pickup_DateTime': '2009-06-18 08:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763117, 'End_Lon': -73.969417, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769785, 'Start_Lon': -73.863597, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.05, 'Trip_Distance': 10.48, 'Trip_Dropoff_DateTime': '2009-06-22 10:00:00', 'Trip_Pickup_DateTime': '2009-06-22 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784693, 'End_Lon': -73.970193, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76623, 'Start_Lon': -73.983047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-15 21:58:00', 'Trip_Pickup_DateTime': '2009-06-15 21:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.695588, 'End_Lon': -73.971385, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780097, 'Start_Lon': -73.9552, 'Tip_Amt': 4.66, 'Tolls_Amt': 0.0, 'Total_Amt': 27.96, 'Trip_Distance': 9.45, 'Trip_Dropoff_DateTime': '2009-06-13 09:52:00', 'Trip_Pickup_DateTime': '2009-06-13 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788207, 'End_Lon': -73.952828, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774872, 'Start_Lon': -73.96096, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-15 20:30:00', 'Trip_Pickup_DateTime': '2009-06-15 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783007, 'End_Lon': -73.947065, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736535, 'Start_Lon': -74.000847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.61, 'Trip_Dropoff_DateTime': '2009-06-15 02:46:00', 'Trip_Pickup_DateTime': '2009-06-15 02:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746092, 'End_Lon': -73.978707, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777872, 'Start_Lon': -73.961005, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-10 09:11:00', 'Trip_Pickup_DateTime': '2009-06-10 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725487, 'End_Lon': -73.893963, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709853, 'Start_Lon': -73.887225, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-18 01:35:00', 'Trip_Pickup_DateTime': '2009-06-18 01:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752265, 'End_Lon': -73.929345, 'Fare_Amt': 2.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752273, 'Start_Lon': -73.929332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-17 16:24:00', 'Trip_Pickup_DateTime': '2009-06-17 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762387, 'End_Lon': -73.976002, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752698, 'Start_Lon': -73.993055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-17 19:14:00', 'Trip_Pickup_DateTime': '2009-06-17 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75851, 'End_Lon': -73.994952, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730098, 'Start_Lon': -73.991092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-17 21:09:00', 'Trip_Pickup_DateTime': '2009-06-17 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740905, 'End_Lon': -73.989362, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760422, 'Start_Lon': -73.97537, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-17 21:41:00', 'Trip_Pickup_DateTime': '2009-06-17 21:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722517, 'End_Lon': -73.997062, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787483, 'Start_Lon': -73.974635, 'Tip_Amt': 3.5, 'Tolls_Amt': 0.0, 'Total_Amt': 25.4, 'Trip_Distance': 5.64, 'Trip_Dropoff_DateTime': '2009-06-17 19:42:00', 'Trip_Pickup_DateTime': '2009-06-17 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715927, 'End_Lon': -74.003565, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77248, 'Start_Lon': -73.986182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 5.31, 'Trip_Dropoff_DateTime': '2009-06-10 09:21:00', 'Trip_Pickup_DateTime': '2009-06-10 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738947, 'End_Lon': -73.987445, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70691, 'Start_Lon': -74.012387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-15 19:49:00', 'Trip_Pickup_DateTime': '2009-06-15 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751977, 'End_Lon': -73.977768, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72693, 'Start_Lon': -73.991527, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-15 21:02:00', 'Trip_Pickup_DateTime': '2009-06-15 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741262, 'End_Lon': -73.992742, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744652, 'Start_Lon': -73.976073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-17 19:46:00', 'Trip_Pickup_DateTime': '2009-06-17 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720937, 'End_Lon': -73.940565, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725742, 'Start_Lon': -74.005668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-18 00:21:00', 'Trip_Pickup_DateTime': '2009-06-18 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731802, 'End_Lon': -74.003445, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716145, 'Start_Lon': -74.011018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-17 21:06:00', 'Trip_Pickup_DateTime': '2009-06-17 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73899, 'End_Lon': -73.993082, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719743, 'Start_Lon': -74.004207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-18 01:24:00', 'Trip_Pickup_DateTime': '2009-06-18 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762508, 'End_Lon': -73.989793, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767667, 'Start_Lon': -73.985868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-17 23:35:00', 'Trip_Pickup_DateTime': '2009-06-17 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.674508, 'End_Lon': -73.97738, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75176, 'Start_Lon': -73.975252, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 6.29, 'Trip_Dropoff_DateTime': '2009-06-17 21:59:00', 'Trip_Pickup_DateTime': '2009-06-17 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725975, 'End_Lon': -73.999543, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734775, 'Start_Lon': -73.994413, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-17 23:32:00', 'Trip_Pickup_DateTime': '2009-06-17 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73258, 'End_Lon': -73.989867, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72356, 'Start_Lon': -73.996598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-17 22:37:00', 'Trip_Pickup_DateTime': '2009-06-17 22:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73549, 'End_Lon': -74.002625, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742365, 'Start_Lon': -74.000508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-17 23:01:00', 'Trip_Pickup_DateTime': '2009-06-17 22:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742078, 'End_Lon': -73.98053, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752743, 'Start_Lon': -73.996743, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-17 20:04:00', 'Trip_Pickup_DateTime': '2009-06-17 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750578, 'End_Lon': -73.979073, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767087, 'Start_Lon': -73.966518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-10 08:25:00', 'Trip_Pickup_DateTime': '2009-06-10 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71489, 'End_Lon': -73.979653, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723763, 'Start_Lon': -73.992698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-24 19:27:00', 'Trip_Pickup_DateTime': '2009-06-24 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750697, 'End_Lon': -73.981177, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768832, 'Start_Lon': -73.964163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-17 16:31:00', 'Trip_Pickup_DateTime': '2009-06-17 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734135, 'End_Lon': -73.986747, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755503, 'Start_Lon': -73.982128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-17 20:08:00', 'Trip_Pickup_DateTime': '2009-06-17 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77011, 'End_Lon': -73.959097, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774425, 'Start_Lon': -73.951038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-20 12:12:00', 'Trip_Pickup_DateTime': '2009-06-20 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789417, 'End_Lon': -73.973593, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775372, 'Start_Lon': -73.982063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-17 18:50:00', 'Trip_Pickup_DateTime': '2009-06-17 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770273, 'End_Lon': -73.95122, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780505, 'Start_Lon': -73.983913, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-17 17:12:00', 'Trip_Pickup_DateTime': '2009-06-17 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758505, 'End_Lon': -73.965692, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768057, 'Start_Lon': -73.958622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-17 21:31:00', 'Trip_Pickup_DateTime': '2009-06-17 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681078, 'End_Lon': -73.977385, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72745, 'Start_Lon': -73.991962, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-20 03:44:00', 'Trip_Pickup_DateTime': '2009-06-20 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723533, 'End_Lon': -74.009628, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743917, 'Start_Lon': -73.987808, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-17 19:36:00', 'Trip_Pickup_DateTime': '2009-06-17 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775587, 'End_Lon': -73.950283, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764298, 'Start_Lon': -73.9553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-17 19:31:00', 'Trip_Pickup_DateTime': '2009-06-17 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.646793, 'End_Lon': -73.790248, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.646797, 'Start_Lon': -73.790257, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-05 13:47:00', 'Trip_Pickup_DateTime': '2009-06-05 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772125, 'End_Lon': -73.958822, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758703, 'Start_Lon': -73.96875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-09 23:33:00', 'Trip_Pickup_DateTime': '2009-06-09 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773227, 'End_Lon': -73.980652, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770238, 'Start_Lon': -73.918082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-20 07:40:00', 'Trip_Pickup_DateTime': '2009-06-20 07:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75971, 'End_Lon': -73.969923, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779635, 'Start_Lon': -73.955558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-20 09:46:00', 'Trip_Pickup_DateTime': '2009-06-20 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745325, 'End_Lon': -73.998473, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787502, 'Start_Lon': -73.944687, 'Tip_Amt': 3.58, 'Tolls_Amt': 0.0, 'Total_Amt': 21.48, 'Trip_Distance': 5.65, 'Trip_Dropoff_DateTime': '2009-06-17 19:07:00', 'Trip_Pickup_DateTime': '2009-06-17 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762367, 'End_Lon': -73.97066, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77826, 'Start_Lon': -73.982065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-17 16:38:00', 'Trip_Pickup_DateTime': '2009-06-17 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757758, 'End_Lon': -73.972945, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759375, 'Start_Lon': -73.965163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-17 18:28:00', 'Trip_Pickup_DateTime': '2009-06-17 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752702, 'End_Lon': -73.980142, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773898, 'Start_Lon': -73.981658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-17 16:49:00', 'Trip_Pickup_DateTime': '2009-06-17 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743287, 'End_Lon': -73.986017, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743287, 'Start_Lon': -73.986017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-14 05:56:00', 'Trip_Pickup_DateTime': '2009-06-14 05:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76878, 'End_Lon': -73.862347, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778262, 'Start_Lon': -73.952422, 'Tip_Amt': 3.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.25, 'Trip_Distance': 8.72, 'Trip_Dropoff_DateTime': '2009-06-19 07:36:00', 'Trip_Pickup_DateTime': '2009-06-19 07:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75307, 'End_Lon': -73.982842, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762083, 'Start_Lon': -73.982122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-16 22:06:00', 'Trip_Pickup_DateTime': '2009-06-16 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.904902, 'End_Lon': -73.996702, 'Fare_Amt': 29.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784773, 'Start_Lon': -73.910333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.2, 'Trip_Distance': 11.17, 'Trip_Dropoff_DateTime': '2009-06-16 20:51:00', 'Trip_Pickup_DateTime': '2009-06-16 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731378, 'End_Lon': -73.999027, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731573, 'Start_Lon': -73.985168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-14 04:26:00', 'Trip_Pickup_DateTime': '2009-06-14 04:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726017, 'End_Lon': -74.00961, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767963, 'Start_Lon': -73.968233, 'Tip_Amt': 3.58, 'Tolls_Amt': 0.0, 'Total_Amt': 21.48, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-16 19:54:00', 'Trip_Pickup_DateTime': '2009-06-16 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.599705, 'End_Lon': -73.759592, 'Fare_Amt': 20.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64476, 'Start_Lon': -73.782083, 'Tip_Amt': 3.1, 'Tolls_Amt': 0.0, 'Total_Amt': 24.5, 'Trip_Distance': 8.55, 'Trip_Dropoff_DateTime': '2009-06-18 23:30:00', 'Trip_Pickup_DateTime': '2009-06-18 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746097, 'End_Lon': -73.981895, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723143, 'Start_Lon': -74.003123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-19 00:06:00', 'Trip_Pickup_DateTime': '2009-06-18 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719082, 'End_Lon': -74.004608, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710357, 'Start_Lon': -74.01569, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-16 20:40:00', 'Trip_Pickup_DateTime': '2009-06-16 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762403, 'End_Lon': -73.980333, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751727, 'Start_Lon': -73.97793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-14 12:26:00', 'Trip_Pickup_DateTime': '2009-06-14 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780625, 'End_Lon': -73.954893, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760952, 'Start_Lon': -73.970158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-16 19:46:00', 'Trip_Pickup_DateTime': '2009-06-16 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749342, 'End_Lon': -74.00794, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741082, 'Start_Lon': -74.024252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-15 05:49:00', 'Trip_Pickup_DateTime': '2009-06-15 05:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746198, 'End_Lon': -73.984092, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753107, 'Start_Lon': -73.970063, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-11 09:55:00', 'Trip_Pickup_DateTime': '2009-06-11 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797745, 'End_Lon': -73.948645, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782315, 'Start_Lon': -73.978848, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-16 21:43:00', 'Trip_Pickup_DateTime': '2009-06-16 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.656735, 'End_Lon': -73.978158, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745073, 'Start_Lon': -73.991638, 'Tip_Amt': 11.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.6, 'Trip_Distance': 10.4, 'Trip_Dropoff_DateTime': '2009-06-18 20:31:00', 'Trip_Pickup_DateTime': '2009-06-18 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736695, 'End_Lon': -73.984855, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718015, 'Start_Lon': -73.95948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-18 22:22:00', 'Trip_Pickup_DateTime': '2009-06-18 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78446, 'End_Lon': -73.966697, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78446, 'Start_Lon': -73.966697, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-13 19:16:00', 'Trip_Pickup_DateTime': '2009-06-13 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723272, 'End_Lon': -73.996677, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713213, 'Start_Lon': -74.003965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-16 20:16:00', 'Trip_Pickup_DateTime': '2009-06-16 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.66031, 'End_Lon': -74.000632, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771092, 'Start_Lon': -73.8661, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 23:48:00', 'Trip_Pickup_DateTime': '2009-06-18 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766415, 'End_Lon': -73.978002, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.648565, 'Start_Lon': -73.783563, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 18.48, 'Trip_Dropoff_DateTime': '2009-06-16 17:12:00', 'Trip_Pickup_DateTime': '2009-06-16 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745425, 'End_Lon': -73.972203, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745427, 'Start_Lon': -73.972203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-11 06:50:00', 'Trip_Pickup_DateTime': '2009-06-11 06:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758987, 'End_Lon': -73.97464, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763948, 'Start_Lon': -73.98275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-11 08:13:00', 'Trip_Pickup_DateTime': '2009-06-11 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 41.310787, 'End_Lon': -73.905888, 'Fare_Amt': 135.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645513, 'Start_Lon': -73.77679, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 135.3, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-14 15:29:00', 'Trip_Pickup_DateTime': '2009-06-14 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750362, 'End_Lon': -73.99109, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764568, 'Start_Lon': -73.980615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-16 18:43:00', 'Trip_Pickup_DateTime': '2009-06-16 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758098, 'End_Lon': -73.960197, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727538, 'Start_Lon': -73.999493, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.86, 'Trip_Dropoff_DateTime': '2009-06-16 20:06:00', 'Trip_Pickup_DateTime': '2009-06-16 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77109, 'End_Lon': -73.983473, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788073, 'Start_Lon': -73.967287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-18 23:14:00', 'Trip_Pickup_DateTime': '2009-06-18 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779465, 'End_Lon': -73.955212, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766895, 'Start_Lon': -73.953765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-18 23:46:00', 'Trip_Pickup_DateTime': '2009-06-18 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.827038, 'End_Lon': -73.926517, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759695, 'Start_Lon': -73.984563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.9, 'Trip_Distance': 10.73, 'Trip_Dropoff_DateTime': '2009-06-16 18:34:00', 'Trip_Pickup_DateTime': '2009-06-16 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726257, 'End_Lon': -73.989245, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737277, 'Start_Lon': -73.981518, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 21:51:00', 'Trip_Pickup_DateTime': '2009-06-18 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767205, 'End_Lon': -73.982513, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750093, 'Start_Lon': -73.99114, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-11 10:36:00', 'Trip_Pickup_DateTime': '2009-06-11 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733107, 'End_Lon': -73.975182, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74994, 'Start_Lon': -73.991345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-18 20:06:00', 'Trip_Pickup_DateTime': '2009-06-18 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.86545, 'End_Lon': -73.86815, 'Fare_Amt': 27.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779118, 'Start_Lon': -73.98198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.8, 'Trip_Distance': 11.99, 'Trip_Dropoff_DateTime': '2009-06-11 02:31:00', 'Trip_Pickup_DateTime': '2009-06-11 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766477, 'End_Lon': -73.986137, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748855, 'Start_Lon': -73.988518, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-18 20:59:00', 'Trip_Pickup_DateTime': '2009-06-18 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755328, 'End_Lon': -73.982562, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726393, 'Start_Lon': -73.999098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-18 19:57:00', 'Trip_Pickup_DateTime': '2009-06-18 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730087, 'End_Lon': -73.985678, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71142, 'Start_Lon': -74.008555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.93, 'Trip_Dropoff_DateTime': '2009-06-16 18:29:00', 'Trip_Pickup_DateTime': '2009-06-16 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721232, 'End_Lon': -73.993565, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762087, 'Start_Lon': -73.968437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-13 21:12:00', 'Trip_Pickup_DateTime': '2009-06-13 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773522, 'End_Lon': -73.949412, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768995, 'Start_Lon': -73.965228, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-14 19:45:00', 'Trip_Pickup_DateTime': '2009-06-14 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781863, 'End_Lon': -73.97916, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766727, 'Start_Lon': -73.986675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-17 19:28:00', 'Trip_Pickup_DateTime': '2009-06-17 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747893, 'End_Lon': -73.981238, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705395, 'Start_Lon': -74.004448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 4.7, 'Trip_Dropoff_DateTime': '2009-06-17 18:43:00', 'Trip_Pickup_DateTime': '2009-06-17 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761623, 'End_Lon': -74.00014, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761852, 'Start_Lon': -73.99006, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-18 18:28:00', 'Trip_Pickup_DateTime': '2009-06-18 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754947, 'End_Lon': -73.964745, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765693, 'Start_Lon': -73.952853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-18 17:07:00', 'Trip_Pickup_DateTime': '2009-06-18 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765483, 'End_Lon': -73.983513, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764832, 'Start_Lon': -73.972592, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-16 12:54:00', 'Trip_Pickup_DateTime': '2009-06-16 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702158, 'End_Lon': -74.010062, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693698, 'Start_Lon': -73.992813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-11 10:15:00', 'Trip_Pickup_DateTime': '2009-06-11 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747392, 'End_Lon': -73.993792, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753125, 'Start_Lon': -73.996523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-17 17:26:00', 'Trip_Pickup_DateTime': '2009-06-17 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74168, 'End_Lon': -73.992407, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743065, 'Start_Lon': -73.97406, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-16 15:24:00', 'Trip_Pickup_DateTime': '2009-06-16 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774433, 'End_Lon': -73.957582, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76774, 'Start_Lon': -73.955767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 18:10:00', 'Trip_Pickup_DateTime': '2009-06-18 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762927, 'End_Lon': -73.965427, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759735, 'Start_Lon': -73.985913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-18 19:21:00', 'Trip_Pickup_DateTime': '2009-06-18 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752302, 'End_Lon': -73.993612, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758748, 'Start_Lon': -73.978327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-18 17:30:00', 'Trip_Pickup_DateTime': '2009-06-18 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749413, 'End_Lon': -73.995438, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725797, 'Start_Lon': -73.992148, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-17 16:00:00', 'Trip_Pickup_DateTime': '2009-06-17 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721583, 'End_Lon': -74.004572, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729027, 'Start_Lon': -74.005283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-18 20:04:00', 'Trip_Pickup_DateTime': '2009-06-18 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772602, 'End_Lon': -73.95336, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762275, 'Start_Lon': -73.960062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-16 14:18:00', 'Trip_Pickup_DateTime': '2009-06-16 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78392, 'End_Lon': -73.950263, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789612, 'Start_Lon': -73.975382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-18 19:26:00', 'Trip_Pickup_DateTime': '2009-06-18 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709877, 'End_Lon': -73.94722, 'Fare_Amt': 18.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711177, 'Start_Lon': -74.015898, 'Tip_Amt': 3.98, 'Tolls_Amt': 0.0, 'Total_Amt': 23.88, 'Trip_Distance': 5.84, 'Trip_Dropoff_DateTime': '2009-06-18 19:39:00', 'Trip_Pickup_DateTime': '2009-06-18 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746728, 'End_Lon': -73.998025, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756325, 'Start_Lon': -73.97224, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-16 15:11:00', 'Trip_Pickup_DateTime': '2009-06-16 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761168, 'End_Lon': -73.977493, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761102, 'Start_Lon': -73.971108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-16 17:37:00', 'Trip_Pickup_DateTime': '2009-06-16 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756657, 'End_Lon': -73.988093, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7423, 'Start_Lon': -73.983975, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-18 21:20:00', 'Trip_Pickup_DateTime': '2009-06-18 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734778, 'End_Lon': -74.008623, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7174, 'Start_Lon': -74.014147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 21:53:00', 'Trip_Pickup_DateTime': '2009-06-18 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768045, 'End_Lon': -73.989582, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750532, 'Start_Lon': -73.987853, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-18 22:49:00', 'Trip_Pickup_DateTime': '2009-06-18 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733433, 'End_Lon': -74.008532, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746113, 'Start_Lon': -74.001585, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-17 19:17:00', 'Trip_Pickup_DateTime': '2009-06-17 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72755, 'End_Lon': -73.985417, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715397, 'Start_Lon': -73.992182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-16 16:51:00', 'Trip_Pickup_DateTime': '2009-06-16 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768405, 'End_Lon': -73.957278, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76434, 'Start_Lon': -73.98237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-18 21:31:00', 'Trip_Pickup_DateTime': '2009-06-18 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706112, 'End_Lon': -74.005678, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759312, 'Start_Lon': -73.98024, 'Tip_Amt': 3.94, 'Tolls_Amt': 0.0, 'Total_Amt': 23.64, 'Trip_Distance': 6.0, 'Trip_Dropoff_DateTime': '2009-06-16 15:01:00', 'Trip_Pickup_DateTime': '2009-06-16 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.811028, 'End_Lon': -73.961203, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762767, 'Start_Lon': -73.993023, 'Tip_Amt': 4.17, 'Tolls_Amt': 0.0, 'Total_Amt': 20.87, 'Trip_Distance': 4.97, 'Trip_Dropoff_DateTime': '2009-06-18 18:10:00', 'Trip_Pickup_DateTime': '2009-06-18 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74754, 'End_Lon': -73.984615, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725447, 'Start_Lon': -73.997137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-17 17:46:00', 'Trip_Pickup_DateTime': '2009-06-17 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756485, 'End_Lon': -73.97454, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729952, 'Start_Lon': -73.988982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-18 18:44:00', 'Trip_Pickup_DateTime': '2009-06-18 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792487, 'End_Lon': -73.964327, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77202, 'Start_Lon': -73.965563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-18 19:01:00', 'Trip_Pickup_DateTime': '2009-06-18 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.850683, 'End_Lon': -73.940492, 'Fare_Amt': 26.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76901, 'Start_Lon': -73.862742, 'Tip_Amt': 8.25, 'Tolls_Amt': 4.15, 'Total_Amt': 39.9, 'Trip_Distance': 10.78, 'Trip_Dropoff_DateTime': '2009-06-17 18:01:00', 'Trip_Pickup_DateTime': '2009-06-17 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77449, 'End_Lon': -73.872505, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757332, 'Start_Lon': -73.982663, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.45, 'Trip_Distance': 9.41, 'Trip_Dropoff_DateTime': '2009-06-16 14:29:00', 'Trip_Pickup_DateTime': '2009-06-16 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723442, 'End_Lon': -73.99957, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775073, 'Start_Lon': -73.989265, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-11 06:58:00', 'Trip_Pickup_DateTime': '2009-06-11 06:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773003, 'End_Lon': -73.949653, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769053, 'Start_Lon': -73.989262, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-16 12:48:00', 'Trip_Pickup_DateTime': '2009-06-16 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773172, 'End_Lon': -73.885408, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749567, 'Start_Lon': -73.979638, 'Tip_Amt': 4.02, 'Tolls_Amt': 4.15, 'Total_Amt': 28.27, 'Trip_Distance': 7.95, 'Trip_Dropoff_DateTime': '2009-06-18 15:11:00', 'Trip_Pickup_DateTime': '2009-06-18 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77562, 'End_Lon': -73.907915, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767852, 'Start_Lon': -73.964185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 4.65, 'Trip_Dropoff_DateTime': '2009-06-18 15:54:00', 'Trip_Pickup_DateTime': '2009-06-18 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753575, 'End_Lon': -73.969568, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760342, 'Start_Lon': -73.964633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-16 12:23:00', 'Trip_Pickup_DateTime': '2009-06-16 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77476, 'End_Lon': -73.958677, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783757, 'Start_Lon': -73.977867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-16 12:09:00', 'Trip_Pickup_DateTime': '2009-06-16 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74135, 'End_Lon': -73.994813, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758657, 'Start_Lon': -73.99249, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-16 12:58:00', 'Trip_Pickup_DateTime': '2009-06-16 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74005, 'End_Lon': -73.953365, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741545, 'Start_Lon': -73.949957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-16 11:59:00', 'Trip_Pickup_DateTime': '2009-06-16 11:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791157, 'End_Lon': -73.964928, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772215, 'Start_Lon': -73.958812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-18 14:31:00', 'Trip_Pickup_DateTime': '2009-06-18 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754613, 'End_Lon': -73.9953, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777237, 'Start_Lon': -73.97887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-10 22:01:00', 'Trip_Pickup_DateTime': '2009-06-10 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77127, 'End_Lon': -73.950428, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775547, 'Start_Lon': -73.9593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-16 14:01:00', 'Trip_Pickup_DateTime': '2009-06-16 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777813, 'End_Lon': -73.957017, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7711, 'Start_Lon': -73.946607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-13 20:27:00', 'Trip_Pickup_DateTime': '2009-06-13 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732182, 'End_Lon': -73.984543, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750142, 'Start_Lon': -73.991937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-16 12:11:00', 'Trip_Pickup_DateTime': '2009-06-16 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797092, 'End_Lon': -73.970035, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801212, 'Start_Lon': -73.967468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-16 11:54:00', 'Trip_Pickup_DateTime': '2009-06-16 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731367, 'End_Lon': -73.982728, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747863, 'Start_Lon': -74.004977, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-16 12:11:00', 'Trip_Pickup_DateTime': '2009-06-16 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761147, 'End_Lon': -73.978557, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766098, 'Start_Lon': -73.971488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-16 12:17:00', 'Trip_Pickup_DateTime': '2009-06-16 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725062, 'End_Lon': -73.99726, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751858, 'Start_Lon': -73.975417, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-16 12:49:00', 'Trip_Pickup_DateTime': '2009-06-16 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766535, 'End_Lon': -73.928205, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77115, 'Start_Lon': -73.956677, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 3.93, 'Trip_Dropoff_DateTime': '2009-06-20 00:03:00', 'Trip_Pickup_DateTime': '2009-06-19 23:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723745, 'End_Lon': -73.996437, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728768, 'Start_Lon': -73.984345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-18 14:13:00', 'Trip_Pickup_DateTime': '2009-06-18 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749582, 'End_Lon': -73.981587, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726143, 'Start_Lon': -74.003735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-16 11:11:00', 'Trip_Pickup_DateTime': '2009-06-16 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776238, 'End_Lon': -73.947982, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777337, 'Start_Lon': -73.98254, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-18 12:07:00', 'Trip_Pickup_DateTime': '2009-06-18 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7436, 'End_Lon': -74.039243, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752047, 'Start_Lon': -73.99407, 'Tip_Amt': 4.02, 'Tolls_Amt': 0.0, 'Total_Amt': 24.12, 'Trip_Distance': 6.24, 'Trip_Dropoff_DateTime': '2009-06-18 14:58:00', 'Trip_Pickup_DateTime': '2009-06-18 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76228, 'End_Lon': -73.982385, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757897, 'Start_Lon': -73.989262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-16 09:41:00', 'Trip_Pickup_DateTime': '2009-06-16 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765348, 'End_Lon': -73.981803, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76094, 'Start_Lon': -73.984672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-18 13:54:00', 'Trip_Pickup_DateTime': '2009-06-18 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752173, 'End_Lon': -73.979528, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73643, 'Start_Lon': -74.00576, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-16 10:19:00', 'Trip_Pickup_DateTime': '2009-06-16 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75152, 'End_Lon': -73.990325, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.763812, 'Start_Lon': -73.977588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-22 19:13:44', 'Trip_Pickup_DateTime': '2009-06-22 18:56:40', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.755623, 'End_Lon': -73.97304, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77375, 'Start_Lon': -73.870993, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 10.35, 'Trip_Dropoff_DateTime': '2009-06-13 10:08:00', 'Trip_Pickup_DateTime': '2009-06-13 09:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756547, 'End_Lon': -73.975252, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766133, 'Start_Lon': -73.951532, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-18 12:15:00', 'Trip_Pickup_DateTime': '2009-06-18 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753082, 'End_Lon': -73.972917, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729137, 'Start_Lon': -74.000998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-16 09:04:00', 'Trip_Pickup_DateTime': '2009-06-16 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780025, 'End_Lon': -73.958453, 'Fare_Amt': 6.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773563, 'Start_Lon': -73.955302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-18 12:20:00', 'Trip_Pickup_DateTime': '2009-06-18 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75953, 'End_Lon': -73.961362, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764105, 'Start_Lon': -73.954465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-18 12:06:00', 'Trip_Pickup_DateTime': '2009-06-18 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756293, 'End_Lon': -73.992998, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75233, 'Start_Lon': -73.97806, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-16 07:06:00', 'Trip_Pickup_DateTime': '2009-06-16 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745303, 'End_Lon': -73.986873, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753665, 'Start_Lon': -73.975943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-17 19:53:00', 'Trip_Pickup_DateTime': '2009-06-17 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736538, 'End_Lon': -73.986955, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760617, 'Start_Lon': -73.975873, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-19 18:19:00', 'Trip_Pickup_DateTime': '2009-06-19 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722465, 'End_Lon': -74.003722, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735848, 'Start_Lon': -73.9896, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-19 21:25:00', 'Trip_Pickup_DateTime': '2009-06-19 21:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750428, 'End_Lon': -73.99128, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761628, 'Start_Lon': -73.97495, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-19 17:59:00', 'Trip_Pickup_DateTime': '2009-06-19 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755153, 'End_Lon': -73.987953, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741768, 'Start_Lon': -73.993638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-19 18:19:00', 'Trip_Pickup_DateTime': '2009-06-19 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740275, 'End_Lon': -73.923333, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76987, 'Start_Lon': -73.863467, 'Tip_Amt': 3.92, 'Tolls_Amt': 0.0, 'Total_Amt': 19.62, 'Trip_Distance': 6.16, 'Trip_Dropoff_DateTime': '2009-06-19 07:20:00', 'Trip_Pickup_DateTime': '2009-06-19 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737703, 'End_Lon': -74.004797, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693193, 'Start_Lon': -73.988818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.82, 'Trip_Dropoff_DateTime': '2009-06-19 17:01:00', 'Trip_Pickup_DateTime': '2009-06-19 16:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739348, 'End_Lon': -73.994102, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758917, 'Start_Lon': -73.99218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-15 07:36:00', 'Trip_Pickup_DateTime': '2009-06-15 07:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717693, 'End_Lon': -73.99997, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708652, 'Start_Lon': -74.01215, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-19 18:21:00', 'Trip_Pickup_DateTime': '2009-06-19 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7518, 'End_Lon': -73.977225, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744782, 'Start_Lon': -73.976018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-19 16:54:00', 'Trip_Pickup_DateTime': '2009-06-19 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793952, 'End_Lon': -73.972498, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795948, 'Start_Lon': -73.961667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-19 19:09:00', 'Trip_Pickup_DateTime': '2009-06-19 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785432, 'End_Lon': -73.969462, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783045, 'Start_Lon': -73.959172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-17 12:13:00', 'Trip_Pickup_DateTime': '2009-06-17 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771157, 'End_Lon': -73.961633, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781003, 'Start_Lon': -73.959022, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-19 14:37:00', 'Trip_Pickup_DateTime': '2009-06-19 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774033, 'End_Lon': -73.872483, 'Fare_Amt': 28.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740517, 'Start_Lon': -73.985947, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 42.65, 'Trip_Distance': 12.41, 'Trip_Dropoff_DateTime': '2009-06-17 12:28:00', 'Trip_Pickup_DateTime': '2009-06-17 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724632, 'End_Lon': -73.997722, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750818, 'Start_Lon': -74.005702, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-17 12:51:00', 'Trip_Pickup_DateTime': '2009-06-17 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68755, 'End_Lon': -73.973698, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718972, 'Start_Lon': -73.990398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-19 19:02:00', 'Trip_Pickup_DateTime': '2009-06-19 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749742, 'End_Lon': -73.979598, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750547, 'Start_Lon': -73.991248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-17 11:15:00', 'Trip_Pickup_DateTime': '2009-06-17 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771948, 'End_Lon': -73.982883, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76509, 'Start_Lon': -73.975007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-17 19:06:00', 'Trip_Pickup_DateTime': '2009-06-17 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765957, 'End_Lon': -73.951582, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735928, 'Start_Lon': -74.005997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.68, 'Trip_Dropoff_DateTime': '2009-06-10 23:28:00', 'Trip_Pickup_DateTime': '2009-06-10 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76047, 'End_Lon': -73.976255, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764505, 'Start_Lon': -73.974072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-19 13:39:00', 'Trip_Pickup_DateTime': '2009-06-19 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759108, 'End_Lon': -73.972248, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765295, 'Start_Lon': -73.968193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-17 10:20:00', 'Trip_Pickup_DateTime': '2009-06-17 10:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752543, 'End_Lon': -73.977507, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759433, 'Start_Lon': -73.991548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-19 12:12:00', 'Trip_Pickup_DateTime': '2009-06-19 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758628, 'End_Lon': -73.987503, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730862, 'Start_Lon': -74.009232, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-19 10:51:00', 'Trip_Pickup_DateTime': '2009-06-19 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743057, 'End_Lon': -73.984658, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751145, 'Start_Lon': -73.978232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-19 13:18:00', 'Trip_Pickup_DateTime': '2009-06-19 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759707, 'End_Lon': -73.937298, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759707, 'Start_Lon': -73.937298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-17 19:33:00', 'Trip_Pickup_DateTime': '2009-06-17 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776445, 'End_Lon': -73.979587, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78185, 'Start_Lon': -73.975603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-17 19:18:00', 'Trip_Pickup_DateTime': '2009-06-17 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773375, 'End_Lon': -73.951977, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740247, 'Start_Lon': -73.986312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.39, 'Trip_Dropoff_DateTime': '2009-06-17 10:36:00', 'Trip_Pickup_DateTime': '2009-06-17 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656642, 'End_Lon': -73.793902, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759817, 'Start_Lon': -73.96786, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 19.03, 'Trip_Dropoff_DateTime': '2009-06-16 19:13:00', 'Trip_Pickup_DateTime': '2009-06-16 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741108, 'End_Lon': -74.00591, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745165, 'Start_Lon': -74.008232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-18 20:55:00', 'Trip_Pickup_DateTime': '2009-06-18 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738902, 'End_Lon': -73.990647, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735022, 'Start_Lon': -74.006853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-17 19:22:00', 'Trip_Pickup_DateTime': '2009-06-17 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701742, 'End_Lon': -74.011373, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786343, 'Start_Lon': -73.968487, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 8.57, 'Trip_Dropoff_DateTime': '2009-06-19 07:19:00', 'Trip_Pickup_DateTime': '2009-06-19 06:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708617, 'End_Lon': -74.007458, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71431, 'Start_Lon': -74.002483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-17 10:16:00', 'Trip_Pickup_DateTime': '2009-06-17 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783333, 'End_Lon': -73.952718, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78541, 'Start_Lon': -73.978695, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-17 19:06:00', 'Trip_Pickup_DateTime': '2009-06-17 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724735, 'End_Lon': -73.998457, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725577, 'Start_Lon': -74.004223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-18 18:35:00', 'Trip_Pickup_DateTime': '2009-06-18 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747475, 'End_Lon': -73.970943, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732597, 'Start_Lon': -73.981553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-17 08:24:00', 'Trip_Pickup_DateTime': '2009-06-17 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752398, 'End_Lon': -73.969928, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752398, 'Start_Lon': -73.969928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-10 23:26:00', 'Trip_Pickup_DateTime': '2009-06-10 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765977, 'End_Lon': -73.990915, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721522, 'Start_Lon': -73.993548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-18 22:51:00', 'Trip_Pickup_DateTime': '2009-06-18 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773883, 'End_Lon': -73.982153, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751707, 'Start_Lon': -73.97896, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-17 11:08:00', 'Trip_Pickup_DateTime': '2009-06-17 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702308, 'End_Lon': -74.013553, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744217, 'Start_Lon': -73.99918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-17 10:44:00', 'Trip_Pickup_DateTime': '2009-06-17 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724397, 'End_Lon': -74.008905, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750627, 'Start_Lon': -73.981425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-19 12:51:00', 'Trip_Pickup_DateTime': '2009-06-19 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750343, 'End_Lon': -73.971688, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777442, 'Start_Lon': -73.952198, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-14 03:05:00', 'Trip_Pickup_DateTime': '2009-06-14 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744267, 'End_Lon': -73.979162, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748218, 'Start_Lon': -73.9806, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-17 08:35:00', 'Trip_Pickup_DateTime': '2009-06-17 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7707, 'End_Lon': -73.980002, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744168, 'Start_Lon': -73.991935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-17 08:15:00', 'Trip_Pickup_DateTime': '2009-06-17 08:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727997, 'End_Lon': -73.990942, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718162, 'Start_Lon': -74.00884, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-10 21:15:00', 'Trip_Pickup_DateTime': '2009-06-10 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744365, 'End_Lon': -73.996152, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76003, 'Start_Lon': -73.991452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-17 07:11:00', 'Trip_Pickup_DateTime': '2009-06-17 07:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719482, 'End_Lon': -73.990427, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724013, 'Start_Lon': -74.004295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-16 19:27:00', 'Trip_Pickup_DateTime': '2009-06-16 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760188, 'End_Lon': -73.990725, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763927, 'Start_Lon': -73.97113, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-17 10:16:00', 'Trip_Pickup_DateTime': '2009-06-17 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76906, 'End_Lon': -73.967222, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765043, 'Start_Lon': -73.960862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-17 05:55:00', 'Trip_Pickup_DateTime': '2009-06-17 05:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756848, 'End_Lon': -73.974142, 'Fare_Amt': 30.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772982, 'Start_Lon': -73.885303, 'Tip_Amt': 4.5, 'Tolls_Amt': 4.15, 'Total_Amt': 39.15, 'Trip_Distance': 12.9, 'Trip_Dropoff_DateTime': '2009-06-17 08:13:00', 'Trip_Pickup_DateTime': '2009-06-17 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736353, 'End_Lon': -73.979005, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734407, 'Start_Lon': -73.989737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-17 07:02:00', 'Trip_Pickup_DateTime': '2009-06-17 06:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742898, 'End_Lon': -73.988713, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751865, 'Start_Lon': -73.993543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-19 10:12:00', 'Trip_Pickup_DateTime': '2009-06-19 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77245, 'End_Lon': -73.95584, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737798, 'Start_Lon': -73.988352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-18 21:55:00', 'Trip_Pickup_DateTime': '2009-06-18 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79126, 'End_Lon': -73.97379, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795387, 'Start_Lon': -73.965892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-19 13:33:00', 'Trip_Pickup_DateTime': '2009-06-19 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789582, 'End_Lon': -73.96954, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766168, 'Start_Lon': -73.964078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-17 07:54:00', 'Trip_Pickup_DateTime': '2009-06-17 07:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732003, 'End_Lon': -73.99142, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765743, 'Start_Lon': -73.990253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-14 03:01:00', 'Trip_Pickup_DateTime': '2009-06-14 02:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749795, 'End_Lon': -73.99517, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740435, 'Start_Lon': -74.0021, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-16 17:19:00', 'Trip_Pickup_DateTime': '2009-06-16 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76461, 'End_Lon': -73.970723, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778207, 'Start_Lon': -73.958733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-19 08:41:00', 'Trip_Pickup_DateTime': '2009-06-19 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770658, 'End_Lon': -73.956988, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793865, 'Start_Lon': -73.970478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-10 08:18:00', 'Trip_Pickup_DateTime': '2009-06-10 08:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73891, 'End_Lon': -73.985263, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753535, 'Start_Lon': -73.977688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-19 10:32:00', 'Trip_Pickup_DateTime': '2009-06-19 10:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77921, 'End_Lon': -73.98819, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721232, 'Start_Lon': -74.00475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.03, 'Trip_Dropoff_DateTime': '2009-06-13 14:59:00', 'Trip_Pickup_DateTime': '2009-06-13 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728915, 'End_Lon': -73.999253, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72543, 'Start_Lon': -73.986997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-16 22:08:00', 'Trip_Pickup_DateTime': '2009-06-16 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740347, 'End_Lon': -74.005318, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718807, 'Start_Lon': -74.010495, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-13 19:46:00', 'Trip_Pickup_DateTime': '2009-06-13 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735398, 'End_Lon': -73.982495, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75597, 'Start_Lon': -73.989022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-17 03:20:00', 'Trip_Pickup_DateTime': '2009-06-17 03:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753893, 'End_Lon': -73.972603, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742603, 'Start_Lon': -73.980368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-19 09:54:00', 'Trip_Pickup_DateTime': '2009-06-19 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787187, 'End_Lon': -73.979247, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75522, 'Start_Lon': -73.985162, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-19 00:26:00', 'Trip_Pickup_DateTime': '2009-06-19 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.80567, 'End_Lon': -73.94693, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777725, 'Start_Lon': -73.954958, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-19 08:19:00', 'Trip_Pickup_DateTime': '2009-06-19 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730408, 'End_Lon': -73.989388, 'Fare_Amt': 14.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768492, 'Start_Lon': -73.985355, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-14 00:27:00', 'Trip_Pickup_DateTime': '2009-06-14 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725595, 'End_Lon': -73.997544, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.736277, 'Start_Lon': -74.00527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-25 17:15:01', 'Trip_Pickup_DateTime': '2009-06-25 17:07:08', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.763413, 'End_Lon': -73.974862, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725032, 'Start_Lon': -73.999245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-19 09:00:00', 'Trip_Pickup_DateTime': '2009-06-19 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769092, 'End_Lon': -73.956273, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743648, 'Start_Lon': -73.978702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-18 22:30:00', 'Trip_Pickup_DateTime': '2009-06-18 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778452, 'End_Lon': -73.962897, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784193, 'Start_Lon': -73.95621, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-16 22:00:00', 'Trip_Pickup_DateTime': '2009-06-16 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770492, 'End_Lon': -73.865062, 'Fare_Amt': 27.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73614, 'Start_Lon': -73.979192, 'Tip_Amt': 6.82, 'Tolls_Amt': 4.15, 'Total_Amt': 38.27, 'Trip_Distance': 12.18, 'Trip_Dropoff_DateTime': '2009-06-19 07:35:00', 'Trip_Pickup_DateTime': '2009-06-19 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737417, 'End_Lon': -73.979572, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727087, 'Start_Lon': -73.983862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-17 01:03:00', 'Trip_Pickup_DateTime': '2009-06-17 00:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770455, 'End_Lon': -73.865017, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725782, 'Start_Lon': -73.98067, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.3, 'Trip_Distance': 10.9, 'Trip_Dropoff_DateTime': '2009-06-15 06:53:00', 'Trip_Pickup_DateTime': '2009-06-15 06:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752997, 'End_Lon': -73.969902, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75307, 'Start_Lon': -73.969808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-18 21:48:00', 'Trip_Pickup_DateTime': '2009-06-18 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73551, 'End_Lon': -74.008213, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74416, 'Start_Lon': -73.971722, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-17 00:28:00', 'Trip_Pickup_DateTime': '2009-06-17 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753962, 'End_Lon': -73.976182, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777315, 'Start_Lon': -73.975263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-19 08:03:00', 'Trip_Pickup_DateTime': '2009-06-19 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743155, 'End_Lon': -73.978445, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.791875, 'Start_Lon': -73.968358, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-11 00:58:00', 'Trip_Pickup_DateTime': '2009-06-11 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.840613, 'End_Lon': -73.855062, 'Fare_Amt': 28.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753757, 'Start_Lon': -73.992735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.4, 'Trip_Distance': 12.17, 'Trip_Dropoff_DateTime': '2009-06-17 00:59:00', 'Trip_Pickup_DateTime': '2009-06-17 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761365, 'End_Lon': -73.968532, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745932, 'Start_Lon': -73.97466, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-14 15:10:00', 'Trip_Pickup_DateTime': '2009-06-14 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803377, 'End_Lon': -73.967182, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794515, 'Start_Lon': -73.97173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-19 06:51:00', 'Trip_Pickup_DateTime': '2009-06-19 06:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781225, 'End_Lon': -73.949407, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785525, 'Start_Lon': -73.973278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-17 00:31:00', 'Trip_Pickup_DateTime': '2009-06-17 00:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735458, 'End_Lon': -73.986625, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736043, 'Start_Lon': -74.005238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-16 23:26:00', 'Trip_Pickup_DateTime': '2009-06-16 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750173, 'End_Lon': -73.991513, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766995, 'Start_Lon': -73.970968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-11 08:07:00', 'Trip_Pickup_DateTime': '2009-06-11 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744077, 'End_Lon': -73.97488, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763855, 'Start_Lon': -73.97348, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-17 00:04:00', 'Trip_Pickup_DateTime': '2009-06-16 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755117, 'End_Lon': -73.991285, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742468, 'Start_Lon': -74.000545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-16 22:57:00', 'Trip_Pickup_DateTime': '2009-06-16 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739532, 'End_Lon': -73.988588, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764677, 'Start_Lon': -73.96135, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-16 21:36:00', 'Trip_Pickup_DateTime': '2009-06-16 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721488, 'End_Lon': -74.01025, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744682, 'Start_Lon': -73.971812, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 6.13, 'Trip_Dropoff_DateTime': '2009-06-11 07:22:00', 'Trip_Pickup_DateTime': '2009-06-11 07:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792837, 'End_Lon': -73.967293, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764088, 'Start_Lon': -73.954323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-16 21:35:00', 'Trip_Pickup_DateTime': '2009-06-16 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744708, 'End_Lon': -73.979727, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780298, 'Start_Lon': -73.984197, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-16 21:21:00', 'Trip_Pickup_DateTime': '2009-06-16 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755032, 'End_Lon': -73.971763, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763832, 'Start_Lon': -73.974, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-18 22:18:00', 'Trip_Pickup_DateTime': '2009-06-18 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79029, 'End_Lon': -73.975317, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740848, 'Start_Lon': -74.004748, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.4, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-16 22:45:00', 'Trip_Pickup_DateTime': '2009-06-16 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767357, 'End_Lon': -73.98998, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743918, 'Start_Lon': -74.006753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-19 06:17:00', 'Trip_Pickup_DateTime': '2009-06-19 06:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756367, 'End_Lon': -73.990197, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750177, 'Start_Lon': -73.994507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-19 01:46:00', 'Trip_Pickup_DateTime': '2009-06-19 01:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.599362, 'End_Lon': -73.989313, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.610573, 'Start_Lon': -73.962218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-19 04:04:00', 'Trip_Pickup_DateTime': '2009-06-19 03:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.68592, 'End_Lon': -73.938648, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713955, 'Start_Lon': -73.951565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-19 01:17:00', 'Trip_Pickup_DateTime': '2009-06-19 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75697, 'End_Lon': -73.990683, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740892, 'Start_Lon': -74.001777, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-19 01:20:00', 'Trip_Pickup_DateTime': '2009-06-19 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777892, 'End_Lon': -73.977948, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746087, 'Start_Lon': -73.98212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-10 23:06:00', 'Trip_Pickup_DateTime': '2009-06-10 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739463, 'End_Lon': -73.999002, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74741, 'Start_Lon': -73.988372, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-19 00:11:00', 'Trip_Pickup_DateTime': '2009-06-19 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751113, 'End_Lon': -73.976568, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752632, 'Start_Lon': -73.983698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-18 22:18:00', 'Trip_Pickup_DateTime': '2009-06-18 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76253, 'End_Lon': -74.001317, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780785, 'Start_Lon': -73.981483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-21 18:11:00', 'Trip_Pickup_DateTime': '2009-06-21 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736107, 'End_Lon': -73.962048, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736107, 'Start_Lon': -73.962048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-21 19:31:00', 'Trip_Pickup_DateTime': '2009-06-21 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750923, 'End_Lon': -73.974745, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760508, 'Start_Lon': -74.00277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-21 09:58:00', 'Trip_Pickup_DateTime': '2009-06-21 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79646, 'End_Lon': -73.971272, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769917, 'Start_Lon': -73.987008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-21 17:43:00', 'Trip_Pickup_DateTime': '2009-06-21 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767087, 'End_Lon': -73.954098, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764977, 'Start_Lon': -73.980305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-21 17:56:00', 'Trip_Pickup_DateTime': '2009-06-21 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760465, 'End_Lon': -73.987963, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720803, 'Start_Lon': -73.993778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-21 14:21:00', 'Trip_Pickup_DateTime': '2009-06-21 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751455, 'End_Lon': -73.976042, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686785, 'Start_Lon': -73.99602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 7.41, 'Trip_Dropoff_DateTime': '2009-06-21 09:46:00', 'Trip_Pickup_DateTime': '2009-06-21 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75209, 'End_Lon': -74.004947, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725712, 'Start_Lon': -74.007552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-10 22:29:00', 'Trip_Pickup_DateTime': '2009-06-10 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736345, 'End_Lon': -73.982922, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730738, 'Start_Lon': -74.006705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-10 23:17:00', 'Trip_Pickup_DateTime': '2009-06-10 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747732, 'End_Lon': -73.977227, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748318, 'Start_Lon': -73.988967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-20 23:46:00', 'Trip_Pickup_DateTime': '2009-06-20 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764032, 'End_Lon': -73.969103, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78352, 'Start_Lon': -73.98172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-21 09:07:00', 'Trip_Pickup_DateTime': '2009-06-21 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716567, 'End_Lon': -74.009128, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762585, 'Start_Lon': -73.978447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-20 22:49:00', 'Trip_Pickup_DateTime': '2009-06-20 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734472, 'End_Lon': -73.98026, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714457, 'Start_Lon': -73.98149, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-20 23:30:00', 'Trip_Pickup_DateTime': '2009-06-20 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734512, 'End_Lon': -74.006173, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72142, 'Start_Lon': -73.99358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-20 22:41:00', 'Trip_Pickup_DateTime': '2009-06-20 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71413, 'End_Lon': -73.984867, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71174, 'Start_Lon': -74.006722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-20 15:22:00', 'Trip_Pickup_DateTime': '2009-06-20 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764502, 'End_Lon': -73.963978, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775287, 'Start_Lon': -73.965095, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-21 00:26:00', 'Trip_Pickup_DateTime': '2009-06-21 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.827618, 'End_Lon': -73.947428, 'Fare_Amt': 18.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751343, 'Start_Lon': -73.98648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.97, 'Trip_Dropoff_DateTime': '2009-06-21 02:07:00', 'Trip_Pickup_DateTime': '2009-06-21 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747297, 'End_Lon': -73.977725, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743095, 'Start_Lon': -73.992505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-21 01:57:00', 'Trip_Pickup_DateTime': '2009-06-21 01:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743737, 'End_Lon': -73.983028, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744785, 'Start_Lon': -73.976217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-20 22:06:00', 'Trip_Pickup_DateTime': '2009-06-20 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729155, 'End_Lon': -73.999088, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739813, 'Start_Lon': -73.98442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-20 23:52:00', 'Trip_Pickup_DateTime': '2009-06-20 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723987, 'End_Lon': -74.004123, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727817, 'Start_Lon': -73.988335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-21 01:36:00', 'Trip_Pickup_DateTime': '2009-06-21 01:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74957, 'End_Lon': -73.97262, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757327, 'Start_Lon': -73.966862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-15 08:40:00', 'Trip_Pickup_DateTime': '2009-06-15 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740215, 'End_Lon': -73.991393, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751725, 'Start_Lon': -73.992005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-21 00:10:00', 'Trip_Pickup_DateTime': '2009-06-21 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764247, 'End_Lon': -73.98698, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758767, 'Start_Lon': -73.976308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.15, 'Trip_Dropoff_DateTime': '2009-06-21 00:16:00', 'Trip_Pickup_DateTime': '2009-06-21 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761493, 'End_Lon': -73.960588, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729575, 'Start_Lon': -73.980908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-21 00:27:00', 'Trip_Pickup_DateTime': '2009-06-21 00:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735745, 'End_Lon': -73.985747, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747982, 'Start_Lon': -73.989332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-20 23:19:00', 'Trip_Pickup_DateTime': '2009-06-20 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790655, 'End_Lon': -73.974743, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736367, 'Start_Lon': -73.978842, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.0, 'Trip_Dropoff_DateTime': '2009-06-20 21:53:00', 'Trip_Pickup_DateTime': '2009-06-20 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740037, 'End_Lon': -74.005453, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73275, 'Start_Lon': -73.987857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-20 21:59:00', 'Trip_Pickup_DateTime': '2009-06-20 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741507, 'End_Lon': -73.975112, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748018, 'Start_Lon': -73.988625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-15 08:58:00', 'Trip_Pickup_DateTime': '2009-06-15 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738158, 'End_Lon': -73.981437, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735863, 'Start_Lon': -74.001298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-20 21:43:00', 'Trip_Pickup_DateTime': '2009-06-20 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756938, 'End_Lon': -73.988507, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750702, 'Start_Lon': -73.974363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-14 12:42:00', 'Trip_Pickup_DateTime': '2009-06-14 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767337, 'End_Lon': -73.95995, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781952, 'Start_Lon': -73.958407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-21 00:00:00', 'Trip_Pickup_DateTime': '2009-06-20 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721015, 'End_Lon': -73.992428, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745717, 'Start_Lon': -73.982612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-21 01:25:00', 'Trip_Pickup_DateTime': '2009-06-21 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727412, 'End_Lon': -73.992327, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73183, 'Start_Lon': -74.001195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-20 20:48:00', 'Trip_Pickup_DateTime': '2009-06-20 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758008, 'End_Lon': -73.979597, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759725, 'Start_Lon': -73.995548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-20 23:37:00', 'Trip_Pickup_DateTime': '2009-06-20 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720147, 'End_Lon': -73.979697, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720412, 'Start_Lon': -73.98959, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-17 09:23:00', 'Trip_Pickup_DateTime': '2009-06-17 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75957, 'End_Lon': -73.977552, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758575, 'Start_Lon': -73.965847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-15 08:30:00', 'Trip_Pickup_DateTime': '2009-06-15 08:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762553, 'End_Lon': -73.984543, 'Fare_Amt': 11.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738773, 'Start_Lon': -73.9888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-20 19:44:00', 'Trip_Pickup_DateTime': '2009-06-20 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772896, 'End_Lon': -73.956077, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.759659, 'Start_Lon': -73.976037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-26 14:58:00', 'Trip_Pickup_DateTime': '2009-06-26 14:46:45', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.735228, 'End_Lon': -73.99828, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705923, 'Start_Lon': -74.00657, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-20 18:50:00', 'Trip_Pickup_DateTime': '2009-06-20 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753122, 'End_Lon': -73.978255, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75654, 'Start_Lon': -73.99033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-11 12:03:00', 'Trip_Pickup_DateTime': '2009-06-11 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735027, 'End_Lon': -73.979938, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752537, 'Start_Lon': -73.975698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.16, 'Trip_Dropoff_DateTime': '2009-06-20 20:17:00', 'Trip_Pickup_DateTime': '2009-06-20 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706102, 'End_Lon': -74.003677, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747377, 'Start_Lon': -73.972377, 'Tip_Amt': 3.75, 'Tolls_Amt': 0.0, 'Total_Amt': 18.75, 'Trip_Distance': 4.94, 'Trip_Dropoff_DateTime': '2009-06-20 20:37:00', 'Trip_Pickup_DateTime': '2009-06-20 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76852, 'End_Lon': -73.95529, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76169, 'Start_Lon': -73.968218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-20 16:41:00', 'Trip_Pickup_DateTime': '2009-06-20 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73364, 'End_Lon': -74.002535, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721635, 'Start_Lon': -73.983732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-20 20:03:00', 'Trip_Pickup_DateTime': '2009-06-20 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740138, 'End_Lon': -74.00745, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751203, 'Start_Lon': -74.005255, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-19 23:46:00', 'Trip_Pickup_DateTime': '2009-06-19 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761107, 'End_Lon': -73.960938, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752075, 'Start_Lon': -73.976345, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-20 20:32:00', 'Trip_Pickup_DateTime': '2009-06-20 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758345, 'End_Lon': -74.000515, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763447, 'Start_Lon': -73.982003, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-17 09:04:00', 'Trip_Pickup_DateTime': '2009-06-17 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667672, 'End_Lon': -73.988418, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734678, 'Start_Lon': -73.994482, 'Tip_Amt': 3.62, 'Tolls_Amt': 0.0, 'Total_Amt': 21.72, 'Trip_Distance': 5.21, 'Trip_Dropoff_DateTime': '2009-06-20 15:26:00', 'Trip_Pickup_DateTime': '2009-06-20 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763972, 'End_Lon': -73.980123, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734108, 'Start_Lon': -73.992698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-20 19:01:00', 'Trip_Pickup_DateTime': '2009-06-20 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691093, 'End_Lon': -73.992237, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739773, 'Start_Lon': -73.990888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-20 18:52:00', 'Trip_Pickup_DateTime': '2009-06-20 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76859, 'End_Lon': -73.982248, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761028, 'Start_Lon': -73.99445, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-20 16:02:00', 'Trip_Pickup_DateTime': '2009-06-20 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799937, 'End_Lon': -73.96659, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767817, 'Start_Lon': -73.953162, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-20 20:10:00', 'Trip_Pickup_DateTime': '2009-06-20 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753398, 'End_Lon': -73.978018, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756937, 'Start_Lon': -73.990577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-20 17:44:00', 'Trip_Pickup_DateTime': '2009-06-20 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75542, 'End_Lon': -73.982357, 'Fare_Amt': 45.0, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643992, 'Start_Lon': -73.790052, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 50.0, 'Trip_Distance': 18.11, 'Trip_Dropoff_DateTime': '2009-06-20 14:41:00', 'Trip_Pickup_DateTime': '2009-06-20 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801662, 'End_Lon': -73.964728, 'Fare_Amt': 14.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74582, 'Start_Lon': -73.982302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.91, 'Trip_Dropoff_DateTime': '2009-06-20 16:42:00', 'Trip_Pickup_DateTime': '2009-06-20 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756452, 'End_Lon': -73.975927, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74316, 'Start_Lon': -73.916503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-11 11:56:00', 'Trip_Pickup_DateTime': '2009-06-11 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738043, 'End_Lon': -73.9836, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76839, 'Start_Lon': -73.957183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-20 18:46:00', 'Trip_Pickup_DateTime': '2009-06-20 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752242, 'End_Lon': -73.975482, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760212, 'Start_Lon': -73.96467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-13 19:37:00', 'Trip_Pickup_DateTime': '2009-06-13 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743972, 'End_Lon': -73.993117, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760873, 'Start_Lon': -73.986812, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-20 20:00:00', 'Trip_Pickup_DateTime': '2009-06-20 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798117, 'End_Lon': -73.969268, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792767, 'Start_Lon': -73.973158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-20 17:12:00', 'Trip_Pickup_DateTime': '2009-06-20 17:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752168, 'End_Lon': -73.881982, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755135, 'Start_Lon': -73.88392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-20 01:32:00', 'Trip_Pickup_DateTime': '2009-06-20 01:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722498, 'End_Lon': -73.987527, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730683, 'Start_Lon': -74.001603, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-19 22:57:00', 'Trip_Pickup_DateTime': '2009-06-19 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742567, 'End_Lon': -74.006875, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724867, 'Start_Lon': -73.998865, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-20 17:13:00', 'Trip_Pickup_DateTime': '2009-06-20 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761193, 'End_Lon': -73.967752, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783688, 'Start_Lon': -73.947885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-11 05:55:00', 'Trip_Pickup_DateTime': '2009-06-11 05:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776428, 'End_Lon': -73.979547, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778723, 'Start_Lon': -73.955163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-13 22:36:00', 'Trip_Pickup_DateTime': '2009-06-13 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786847, 'End_Lon': -73.969683, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738068, 'Start_Lon': -74.007928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-20 02:05:00', 'Trip_Pickup_DateTime': '2009-06-20 01:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752802, 'End_Lon': -73.98064, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768755, 'Start_Lon': -73.987728, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-16 17:48:00', 'Trip_Pickup_DateTime': '2009-06-16 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763782, 'End_Lon': -73.974697, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757412, 'Start_Lon': -73.985702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-14 12:51:00', 'Trip_Pickup_DateTime': '2009-06-14 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.677607, 'End_Lon': -73.965787, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723643, 'Start_Lon': -74.003747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-20 00:09:00', 'Trip_Pickup_DateTime': '2009-06-19 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734505, 'End_Lon': -73.986277, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728945, 'Start_Lon': -73.984217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-20 00:09:00', 'Trip_Pickup_DateTime': '2009-06-20 00:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.57829, 'End_Lon': -73.736218, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.589165, 'Start_Lon': -73.731447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-20 00:15:00', 'Trip_Pickup_DateTime': '2009-06-19 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805853, 'End_Lon': -73.965357, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77774, 'Start_Lon': -73.98323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-19 22:20:00', 'Trip_Pickup_DateTime': '2009-06-19 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767448, 'End_Lon': -73.968967, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743348, 'Start_Lon': -74.00741, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.41, 'Trip_Dropoff_DateTime': '2009-06-19 23:54:00', 'Trip_Pickup_DateTime': '2009-06-19 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-20 01:35:00', 'Trip_Pickup_DateTime': '2009-06-20 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751745, 'End_Lon': -73.978175, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771097, 'Start_Lon': -73.978835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-20 00:18:00', 'Trip_Pickup_DateTime': '2009-06-20 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711348, 'End_Lon': -74.016053, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739825, 'Start_Lon': -73.976382, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 5.22, 'Trip_Dropoff_DateTime': '2009-06-19 19:24:00', 'Trip_Pickup_DateTime': '2009-06-19 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76472, 'End_Lon': -73.977697, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756352, 'Start_Lon': -73.99054, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-19 22:01:00', 'Trip_Pickup_DateTime': '2009-06-19 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760922, 'End_Lon': -73.971133, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760042, 'Start_Lon': -73.969677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-17 18:50:00', 'Trip_Pickup_DateTime': '2009-06-17 18:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762893, 'End_Lon': -73.985558, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737133, 'Start_Lon': -73.992817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-19 19:53:00', 'Trip_Pickup_DateTime': '2009-06-19 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759985, 'End_Lon': -73.984618, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750985, 'Start_Lon': -74.00404, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-20 01:27:00', 'Trip_Pickup_DateTime': '2009-06-20 01:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744698, 'End_Lon': -73.983975, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749558, 'Start_Lon': -73.991475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-15 07:49:00', 'Trip_Pickup_DateTime': '2009-06-15 07:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758143, 'End_Lon': -73.961415, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757792, 'Start_Lon': -74.000383, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-19 21:46:00', 'Trip_Pickup_DateTime': '2009-06-19 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73038, 'End_Lon': -73.993727, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726172, 'Start_Lon': -73.98951, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-11 03:41:00', 'Trip_Pickup_DateTime': '2009-06-11 03:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77094, 'End_Lon': -73.94764, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761993, 'Start_Lon': -73.95721, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-19 17:08:00', 'Trip_Pickup_DateTime': '2009-06-19 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741108, 'End_Lon': -74.005495, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758982, 'Start_Lon': -73.992233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-17 13:23:00', 'Trip_Pickup_DateTime': '2009-06-17 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751157, 'End_Lon': -73.99076, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75405, 'Start_Lon': -73.969495, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-16 17:51:00', 'Trip_Pickup_DateTime': '2009-06-16 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742822, 'End_Lon': -73.988927, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74307, 'Start_Lon': -74.003905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-20 00:52:00', 'Trip_Pickup_DateTime': '2009-06-20 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762622, 'End_Lon': -73.968045, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737307, 'Start_Lon': -73.978132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-17 19:59:00', 'Trip_Pickup_DateTime': '2009-06-17 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742112, 'End_Lon': -73.984757, 'Fare_Amt': 12.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776045, 'Start_Lon': -73.987067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-19 23:21:00', 'Trip_Pickup_DateTime': '2009-06-19 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752095, 'End_Lon': -73.97788, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748957, 'Start_Lon': -73.988293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-16 19:31:00', 'Trip_Pickup_DateTime': '2009-06-16 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795718, 'End_Lon': -73.970893, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759442, 'Start_Lon': -73.985203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-19 23:20:00', 'Trip_Pickup_DateTime': '2009-06-19 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736975, 'End_Lon': -73.988565, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739283, 'Start_Lon': -73.982743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-19 21:50:00', 'Trip_Pickup_DateTime': '2009-06-19 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75526, 'End_Lon': -73.974237, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743598, 'Start_Lon': -73.986368, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-17 16:04:00', 'Trip_Pickup_DateTime': '2009-06-17 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774267, 'End_Lon': -73.87323, 'Fare_Amt': 16.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810067, 'Start_Lon': -73.950908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.85, 'Trip_Dropoff_DateTime': '2009-06-14 09:14:00', 'Trip_Pickup_DateTime': '2009-06-14 09:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.838247, 'End_Lon': -73.864625, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780978, 'Start_Lon': -73.952478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.5, 'Trip_Distance': 7.19, 'Trip_Dropoff_DateTime': '2009-06-19 18:39:00', 'Trip_Pickup_DateTime': '2009-06-19 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773812, 'End_Lon': -73.97784, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778747, 'Start_Lon': -73.95794, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-17 12:45:00', 'Trip_Pickup_DateTime': '2009-06-17 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798155, 'End_Lon': -73.960177, 'Fare_Amt': 14.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752142, 'Start_Lon': -73.97751, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-18 20:52:00', 'Trip_Pickup_DateTime': '2009-06-18 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74268, 'End_Lon': -74.000045, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761302, 'Start_Lon': -73.975775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-16 19:29:00', 'Trip_Pickup_DateTime': '2009-06-16 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768405, 'End_Lon': -73.981693, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739768, 'Start_Lon': -73.987187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-17 11:28:00', 'Trip_Pickup_DateTime': '2009-06-17 11:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740986, 'End_Lon': -73.989301, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.748846, 'Start_Lon': -74.00695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-27 17:30:53', 'Trip_Pickup_DateTime': '2009-06-27 17:21:46', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.764224, 'End_Lon': -73.992178, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.75821, 'Start_Lon': -73.965232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-28 09:59:59', 'Trip_Pickup_DateTime': '2009-06-28 09:46:27', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.737273, 'End_Lon': -73.978832, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75664, 'Start_Lon': -73.993959, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-28 14:59:13', 'Trip_Pickup_DateTime': '2009-06-28 14:48:38', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.769913, 'End_Lon': -73.957203, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779797, 'Start_Lon': -73.955247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-19 12:32:00', 'Trip_Pickup_DateTime': '2009-06-19 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753368, 'End_Lon': -73.97804, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75907, 'Start_Lon': -73.980673, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-11 14:25:00', 'Trip_Pickup_DateTime': '2009-06-11 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784888, 'End_Lon': -73.948803, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784877, 'Start_Lon': -73.948647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-11 08:04:00', 'Trip_Pickup_DateTime': '2009-06-11 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745832, 'End_Lon': -73.984783, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725632, 'Start_Lon': -74.003003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-21 03:28:00', 'Trip_Pickup_DateTime': '2009-06-21 03:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753018, 'End_Lon': -73.971008, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753052, 'Start_Lon': -73.97098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-14 17:57:00', 'Trip_Pickup_DateTime': '2009-06-14 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760252, 'End_Lon': -73.971777, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776643, 'Start_Lon': -73.95968, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-11 08:36:00', 'Trip_Pickup_DateTime': '2009-06-11 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765745, 'End_Lon': -73.98369, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766433, 'Start_Lon': -73.98205, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-13 21:57:00', 'Trip_Pickup_DateTime': '2009-06-13 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759962, 'End_Lon': -73.970882, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718872, 'Start_Lon': -73.98804, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-11 08:39:00', 'Trip_Pickup_DateTime': '2009-06-11 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779612, 'End_Lon': -73.95533, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77707, 'Start_Lon': -73.949582, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-11 07:39:00', 'Trip_Pickup_DateTime': '2009-06-11 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766318, 'End_Lon': -73.987063, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742283, 'Start_Lon': -74.004382, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-15 03:37:00', 'Trip_Pickup_DateTime': '2009-06-15 03:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750352, 'End_Lon': -73.988612, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771685, 'Start_Lon': -73.982588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-14 00:51:00', 'Trip_Pickup_DateTime': '2009-06-14 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751528, 'End_Lon': -73.982255, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773273, 'Start_Lon': -73.955042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-22 08:33:00', 'Trip_Pickup_DateTime': '2009-06-22 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741127, 'End_Lon': -73.999598, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724923, 'Start_Lon': -73.990365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-15 04:14:00', 'Trip_Pickup_DateTime': '2009-06-15 04:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76846, 'End_Lon': -73.981918, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774945, 'Start_Lon': -73.980447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-11 15:14:00', 'Trip_Pickup_DateTime': '2009-06-11 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756035, 'End_Lon': -73.984292, 'Fare_Amt': 23.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77378, 'Start_Lon': -73.87086, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.45, 'Trip_Distance': 8.83, 'Trip_Dropoff_DateTime': '2009-06-22 09:49:00', 'Trip_Pickup_DateTime': '2009-06-22 09:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758907, 'End_Lon': -73.984617, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768165, 'Start_Lon': -73.970468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-20 13:31:00', 'Trip_Pickup_DateTime': '2009-06-20 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74599, 'End_Lon': -73.984147, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72131, 'Start_Lon': -73.989022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-20 01:10:00', 'Trip_Pickup_DateTime': '2009-06-20 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.866107, 'End_Lon': -73.930003, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773123, 'Start_Lon': -73.885467, 'Tip_Amt': 5.92, 'Tolls_Amt': 4.15, 'Total_Amt': 33.77, 'Trip_Distance': 10.03, 'Trip_Dropoff_DateTime': '2009-06-21 13:22:00', 'Trip_Pickup_DateTime': '2009-06-21 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75308, 'End_Lon': -73.974337, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77299, 'Start_Lon': -73.885267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 7.83, 'Trip_Dropoff_DateTime': '2009-06-22 09:29:00', 'Trip_Pickup_DateTime': '2009-06-22 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75503, 'End_Lon': -73.98171, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645623, 'Start_Lon': -73.78588, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.32, 'Trip_Dropoff_DateTime': '2009-06-10 23:55:00', 'Trip_Pickup_DateTime': '2009-06-10 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752872, 'End_Lon': -73.997273, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792633, 'Start_Lon': -73.971227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-11 07:10:00', 'Trip_Pickup_DateTime': '2009-06-11 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737507, 'End_Lon': -74.0034, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80333, 'Start_Lon': -73.967403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 6.41, 'Trip_Dropoff_DateTime': '2009-06-15 02:48:00', 'Trip_Pickup_DateTime': '2009-06-15 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747393, 'End_Lon': -73.948248, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747375, 'Start_Lon': -73.944977, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-11 13:48:00', 'Trip_Pickup_DateTime': '2009-06-11 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762775, 'End_Lon': -73.982325, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762943, 'Start_Lon': -73.974083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-17 22:38:00', 'Trip_Pickup_DateTime': '2009-06-17 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769902, 'End_Lon': -73.988167, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741, 'Start_Lon': -73.98372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-13 16:43:00', 'Trip_Pickup_DateTime': '2009-06-13 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809797, 'End_Lon': -73.953075, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793622, 'Start_Lon': -73.969228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-17 14:34:00', 'Trip_Pickup_DateTime': '2009-06-17 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75817, 'End_Lon': -73.93745, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758175, 'Start_Lon': -73.937452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-11 13:55:00', 'Trip_Pickup_DateTime': '2009-06-11 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757618, 'End_Lon': -73.969138, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772485, 'Start_Lon': -73.952863, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-13 19:05:00', 'Trip_Pickup_DateTime': '2009-06-13 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757853, 'End_Lon': -73.993078, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765163, 'Start_Lon': -73.99262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-20 00:52:00', 'Trip_Pickup_DateTime': '2009-06-20 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709398, 'End_Lon': -74.001873, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73512, 'Start_Lon': -73.990047, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-20 03:43:00', 'Trip_Pickup_DateTime': '2009-06-20 03:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731503, 'End_Lon': -74.004955, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77202, 'Start_Lon': -73.965508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-17 14:05:00', 'Trip_Pickup_DateTime': '2009-06-17 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775913, 'End_Lon': -73.957535, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77255, 'Start_Lon': -73.952567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-11 14:08:00', 'Trip_Pickup_DateTime': '2009-06-11 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774278, 'End_Lon': -73.87315, 'Fare_Amt': 37.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774278, 'Start_Lon': -73.873148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 37.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-20 12:28:00', 'Trip_Pickup_DateTime': '2009-06-20 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750033, 'End_Lon': -73.991208, 'Fare_Amt': 9.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762023, 'Start_Lon': -73.966208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-20 10:36:00', 'Trip_Pickup_DateTime': '2009-06-20 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721145, 'End_Lon': -73.986938, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74634, 'Start_Lon': -74.00521, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-20 03:37:00', 'Trip_Pickup_DateTime': '2009-06-20 03:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746093, 'End_Lon': -73.972428, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739232, 'Start_Lon': -74.002938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-20 11:10:00', 'Trip_Pickup_DateTime': '2009-06-20 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739503, 'End_Lon': -74.002877, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737307, 'Start_Lon': -73.992643, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-20 10:01:00', 'Trip_Pickup_DateTime': '2009-06-20 09:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774165, 'End_Lon': -73.872502, 'Fare_Amt': 38.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709688, 'Start_Lon': -74.015475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 39.4, 'Trip_Distance': 15.88, 'Trip_Dropoff_DateTime': '2009-06-21 04:08:00', 'Trip_Pickup_DateTime': '2009-06-21 03:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764188, 'End_Lon': -73.981282, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724417, 'Start_Lon': -73.990882, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-20 01:21:00', 'Trip_Pickup_DateTime': '2009-06-20 01:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787218, 'End_Lon': -73.9739, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741002, 'Start_Lon': -73.997948, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-20 13:01:00', 'Trip_Pickup_DateTime': '2009-06-20 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780512, 'End_Lon': -73.985155, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78125, 'Start_Lon': -73.981083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-20 10:02:00', 'Trip_Pickup_DateTime': '2009-06-20 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743985, 'End_Lon': -73.923982, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74587, 'Start_Lon': -73.901313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-14 04:27:00', 'Trip_Pickup_DateTime': '2009-06-14 04:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719517, 'End_Lon': -73.999573, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773905, 'Start_Lon': -73.872418, 'Tip_Amt': 5.14, 'Tolls_Amt': 0.0, 'Total_Amt': 30.84, 'Trip_Distance': 9.85, 'Trip_Dropoff_DateTime': '2009-06-20 10:22:00', 'Trip_Pickup_DateTime': '2009-06-20 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714737, 'End_Lon': -73.942397, 'Fare_Amt': 34.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645307, 'Start_Lon': -73.776725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.6, 'Trip_Distance': 15.61, 'Trip_Dropoff_DateTime': '2009-06-21 23:52:00', 'Trip_Pickup_DateTime': '2009-06-21 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737448, 'End_Lon': -74.005845, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761905, 'Start_Lon': -73.986788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-20 12:44:00', 'Trip_Pickup_DateTime': '2009-06-20 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783162, 'End_Lon': -73.978583, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721843, 'Start_Lon': -74.004468, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-20 12:18:00', 'Trip_Pickup_DateTime': '2009-06-20 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742678, 'End_Lon': -73.98406, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741842, 'Start_Lon': -73.975028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-20 11:57:00', 'Trip_Pickup_DateTime': '2009-06-20 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75884, 'End_Lon': -73.972598, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748535, 'Start_Lon': -74.00594, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-22 09:13:00', 'Trip_Pickup_DateTime': '2009-06-22 08:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730952, 'End_Lon': -73.999445, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779445, 'Start_Lon': -73.944523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 5.45, 'Trip_Dropoff_DateTime': '2009-06-22 07:55:00', 'Trip_Pickup_DateTime': '2009-06-22 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756413, 'End_Lon': -73.992415, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762683, 'Start_Lon': -73.982713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-20 12:03:00', 'Trip_Pickup_DateTime': '2009-06-20 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761607, 'End_Lon': -73.968808, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755638, 'Start_Lon': -73.993882, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-22 07:33:00', 'Trip_Pickup_DateTime': '2009-06-22 07:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757852, 'End_Lon': -73.971383, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773578, 'Start_Lon': -73.962155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-22 07:42:00', 'Trip_Pickup_DateTime': '2009-06-22 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648778, 'End_Lon': -73.782497, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75618, 'Start_Lon': -73.988888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.38, 'Trip_Dropoff_DateTime': '2009-06-20 10:01:00', 'Trip_Pickup_DateTime': '2009-06-20 09:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762952, 'End_Lon': -73.97802, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763623, 'Start_Lon': -73.95903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-17 20:37:00', 'Trip_Pickup_DateTime': '2009-06-17 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798368, 'End_Lon': -73.94034, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807277, 'Start_Lon': -73.964337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-22 04:52:00', 'Trip_Pickup_DateTime': '2009-06-22 04:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-10 19:00:00', 'Trip_Pickup_DateTime': '2009-06-10 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750543, 'End_Lon': -73.976207, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733127, 'Start_Lon': -73.993468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-21 23:31:00', 'Trip_Pickup_DateTime': '2009-06-21 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777673, 'End_Lon': -73.95537, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751212, 'Start_Lon': -73.994048, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-21 23:58:00', 'Trip_Pickup_DateTime': '2009-06-21 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744965, 'End_Lon': -74.003112, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757587, 'Start_Lon': -74.00268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-22 07:07:00', 'Trip_Pickup_DateTime': '2009-06-22 07:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762152, 'End_Lon': -73.982647, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782773, 'Start_Lon': -73.95528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-22 08:58:00', 'Trip_Pickup_DateTime': '2009-06-22 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744453, 'End_Lon': -73.981203, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768935, 'Start_Lon': -73.988443, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-21 20:04:00', 'Trip_Pickup_DateTime': '2009-06-21 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774183, 'End_Lon': -73.96321, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753362, 'Start_Lon': -73.974838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-13 19:21:00', 'Trip_Pickup_DateTime': '2009-06-13 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72082, 'End_Lon': -73.988487, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721823, 'Start_Lon': -73.987617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.1, 'Trip_Dropoff_DateTime': '2009-06-20 00:52:00', 'Trip_Pickup_DateTime': '2009-06-20 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.844718, 'End_Lon': -73.940695, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76847, 'Start_Lon': -73.981862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 7.25, 'Trip_Dropoff_DateTime': '2009-06-22 01:09:00', 'Trip_Pickup_DateTime': '2009-06-22 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70536, 'End_Lon': -74.00711, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75201, 'Start_Lon': -73.975698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-22 06:47:00', 'Trip_Pickup_DateTime': '2009-06-22 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730352, 'End_Lon': -73.999983, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738845, 'Start_Lon': -73.983367, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-22 08:33:00', 'Trip_Pickup_DateTime': '2009-06-22 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772178, 'End_Lon': -73.950243, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755798, 'Start_Lon': -73.990865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-20 06:20:00', 'Trip_Pickup_DateTime': '2009-06-20 06:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762027, 'End_Lon': -73.969185, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764608, 'Start_Lon': -73.975383, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-21 17:16:00', 'Trip_Pickup_DateTime': '2009-06-21 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715435, 'End_Lon': -74.01612, 'Fare_Amt': 31.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77406, 'Start_Lon': -73.874525, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 37.2, 'Trip_Distance': 14.03, 'Trip_Dropoff_DateTime': '2009-06-21 21:35:00', 'Trip_Pickup_DateTime': '2009-06-21 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786867, 'End_Lon': -73.954448, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772562, 'Start_Lon': -73.955517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-22 01:30:00', 'Trip_Pickup_DateTime': '2009-06-22 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765468, 'End_Lon': -73.987735, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758808, 'Start_Lon': -73.987598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-22 00:37:00', 'Trip_Pickup_DateTime': '2009-06-22 00:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793932, 'End_Lon': -74.016603, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803338, 'Start_Lon': -74.024338, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-17 22:07:00', 'Trip_Pickup_DateTime': '2009-06-17 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762113, 'End_Lon': -73.960127, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71678, 'Start_Lon': -73.997483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-21 23:19:00', 'Trip_Pickup_DateTime': '2009-06-21 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.692628, 'End_Lon': -73.959155, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714883, 'Start_Lon': -73.951748, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-22 00:30:00', 'Trip_Pickup_DateTime': '2009-06-22 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740098, 'End_Lon': -74.005557, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750963, 'Start_Lon': -73.986857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-21 21:29:00', 'Trip_Pickup_DateTime': '2009-06-21 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76164, 'End_Lon': -73.979338, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800057, 'Start_Lon': -73.968148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 4.88, 'Trip_Dropoff_DateTime': '2009-06-16 23:48:00', 'Trip_Pickup_DateTime': '2009-06-16 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750878, 'End_Lon': -73.990798, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759698, 'Start_Lon': -73.976302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-21 12:39:00', 'Trip_Pickup_DateTime': '2009-06-21 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732302, 'End_Lon': -73.998605, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750028, 'Start_Lon': -73.991215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-17 21:23:00', 'Trip_Pickup_DateTime': '2009-06-17 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763765, 'End_Lon': -73.959038, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778372, 'Start_Lon': -73.876785, 'Tip_Amt': 3.08, 'Tolls_Amt': 0.0, 'Total_Amt': 18.48, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-17 21:12:00', 'Trip_Pickup_DateTime': '2009-06-17 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733555, 'End_Lon': -74.002982, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774638, 'Start_Lon': -73.954165, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.57, 'Trip_Dropoff_DateTime': '2009-06-17 21:48:00', 'Trip_Pickup_DateTime': '2009-06-17 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764463, 'End_Lon': -73.987358, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777492, 'Start_Lon': -73.983087, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-21 19:56:00', 'Trip_Pickup_DateTime': '2009-06-21 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764543, 'End_Lon': -73.972797, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799855, 'Start_Lon': -73.969882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-21 18:59:00', 'Trip_Pickup_DateTime': '2009-06-21 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760885, 'End_Lon': -73.967733, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78563, 'Start_Lon': -73.978543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-21 17:01:00', 'Trip_Pickup_DateTime': '2009-06-21 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769267, 'End_Lon': -73.967477, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790388, 'Start_Lon': -73.954018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-19 19:32:00', 'Trip_Pickup_DateTime': '2009-06-19 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749143, 'End_Lon': -73.991908, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740567, 'Start_Lon': -73.990293, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-21 19:24:00', 'Trip_Pickup_DateTime': '2009-06-21 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763352, 'End_Lon': -73.926487, 'Fare_Amt': 39.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.643705, 'Start_Lon': -73.790443, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 44.7, 'Trip_Distance': 15.8, 'Trip_Dropoff_DateTime': '2009-06-21 18:13:00', 'Trip_Pickup_DateTime': '2009-06-21 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794448, 'End_Lon': -73.973317, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787342, 'Start_Lon': -73.974677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-17 20:52:00', 'Trip_Pickup_DateTime': '2009-06-17 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751302, 'End_Lon': -73.97409, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748055, 'Start_Lon': -73.982707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-21 21:15:00', 'Trip_Pickup_DateTime': '2009-06-21 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787225, 'End_Lon': -73.947973, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728248, 'Start_Lon': -73.984763, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.71, 'Trip_Dropoff_DateTime': '2009-06-21 18:18:00', 'Trip_Pickup_DateTime': '2009-06-21 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754608, 'End_Lon': -73.980177, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759408, 'Start_Lon': -73.986477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-21 17:51:00', 'Trip_Pickup_DateTime': '2009-06-21 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716075, 'End_Lon': -74.007365, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749792, 'Start_Lon': -73.99329, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-21 14:05:00', 'Trip_Pickup_DateTime': '2009-06-21 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776793, 'End_Lon': -73.961338, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775198, 'Start_Lon': -73.956608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-21 20:43:00', 'Trip_Pickup_DateTime': '2009-06-21 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731153, 'End_Lon': -74.00293, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738468, 'Start_Lon': -73.991837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-21 18:58:00', 'Trip_Pickup_DateTime': '2009-06-21 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743875, 'End_Lon': -74.006185, 'Fare_Amt': 26.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769777, 'Start_Lon': -73.863805, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.05, 'Trip_Distance': 10.66, 'Trip_Dropoff_DateTime': '2009-06-21 19:13:00', 'Trip_Pickup_DateTime': '2009-06-21 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722793, 'End_Lon': -73.993197, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76137, 'Start_Lon': -73.987118, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.59, 'Trip_Dropoff_DateTime': '2009-06-21 19:25:00', 'Trip_Pickup_DateTime': '2009-06-21 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76685, 'End_Lon': -73.986417, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780217, 'Start_Lon': -73.981672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-21 17:53:00', 'Trip_Pickup_DateTime': '2009-06-21 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74987, 'End_Lon': -73.979808, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749462, 'Start_Lon': -73.97962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-21 19:16:00', 'Trip_Pickup_DateTime': '2009-06-21 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750355, 'End_Lon': -73.991112, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761835, 'Start_Lon': -73.979328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-21 08:43:00', 'Trip_Pickup_DateTime': '2009-06-21 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764235, 'End_Lon': -73.97216, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739463, 'Start_Lon': -73.995443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-21 14:03:00', 'Trip_Pickup_DateTime': '2009-06-21 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774528, 'End_Lon': -73.954278, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774205, 'Start_Lon': -73.963217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-21 18:48:00', 'Trip_Pickup_DateTime': '2009-06-21 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743692, 'End_Lon': -73.996488, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769037, 'Start_Lon': -73.991742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.24, 'Trip_Dropoff_DateTime': '2009-06-15 16:13:00', 'Trip_Pickup_DateTime': '2009-06-15 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77109, 'End_Lon': -73.98102, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757852, 'Start_Lon': -73.969135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-11 18:27:00', 'Trip_Pickup_DateTime': '2009-06-11 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726862, 'End_Lon': -73.985762, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72081, 'Start_Lon': -73.986948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-11 18:23:00', 'Trip_Pickup_DateTime': '2009-06-11 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762105, 'End_Lon': -73.971463, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77912, 'Start_Lon': -73.960005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-11 18:15:00', 'Trip_Pickup_DateTime': '2009-06-11 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773593, 'End_Lon': -73.945812, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78623, 'Start_Lon': -73.952068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-11 14:44:00', 'Trip_Pickup_DateTime': '2009-06-11 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789807, 'End_Lon': -73.938338, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759378, 'Start_Lon': -73.967375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-15 14:57:00', 'Trip_Pickup_DateTime': '2009-06-15 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748378, 'End_Lon': -73.99009, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736872, 'Start_Lon': -73.99227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-13 23:28:00', 'Trip_Pickup_DateTime': '2009-06-13 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755943, 'End_Lon': -73.971135, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768285, 'Start_Lon': -73.96599, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-30 14:06:00', 'Trip_Pickup_DateTime': '2009-06-30 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764397, 'End_Lon': -73.952345, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765112, 'Start_Lon': -73.941418, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-15 13:43:00', 'Trip_Pickup_DateTime': '2009-06-15 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725558, 'End_Lon': -73.995075, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719873, 'Start_Lon': -73.99837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-11 13:32:00', 'Trip_Pickup_DateTime': '2009-06-11 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775403, 'End_Lon': -73.956283, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76235, 'Start_Lon': -73.966363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-11 16:50:00', 'Trip_Pickup_DateTime': '2009-06-11 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73457, 'End_Lon': -74.004903, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73934, 'Start_Lon': -73.991608, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-11 16:31:00', 'Trip_Pickup_DateTime': '2009-06-11 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761003, 'End_Lon': -73.97711, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753883, 'Start_Lon': -73.977682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-30 08:46:00', 'Trip_Pickup_DateTime': '2009-06-30 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735423, 'End_Lon': -73.982672, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7612, 'Start_Lon': -73.964815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-29 13:09:00', 'Trip_Pickup_DateTime': '2009-06-29 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713472, 'End_Lon': -74.011163, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714182, 'Start_Lon': -73.997443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-19 20:48:00', 'Trip_Pickup_DateTime': '2009-06-19 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738467, 'End_Lon': -74.029445, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759485, 'Start_Lon': -73.991768, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.0, 'Total_Amt': 53.0, 'Trip_Distance': 4.51, 'Trip_Dropoff_DateTime': '2009-06-12 02:44:00', 'Trip_Pickup_DateTime': '2009-06-12 02:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750147, 'End_Lon': -73.99123, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736767, 'Start_Lon': -73.988683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-30 14:33:00', 'Trip_Pickup_DateTime': '2009-06-30 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762927, 'End_Lon': -73.9893, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776767, 'Start_Lon': -73.955493, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-14 10:11:00', 'Trip_Pickup_DateTime': '2009-06-14 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74214, 'End_Lon': -74.004502, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760822, 'Start_Lon': -73.969112, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 21.9, 'Trip_Distance': 5.58, 'Trip_Dropoff_DateTime': '2009-06-13 23:47:00', 'Trip_Pickup_DateTime': '2009-06-13 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72917, 'End_Lon': -74.005197, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750808, 'Start_Lon': -74.001762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-11 14:39:00', 'Trip_Pickup_DateTime': '2009-06-11 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751132, 'End_Lon': -73.978937, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758738, 'Start_Lon': -73.982845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-15 13:51:00', 'Trip_Pickup_DateTime': '2009-06-15 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708485, 'End_Lon': -74.001513, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727698, 'Start_Lon': -73.982265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-11 16:34:00', 'Trip_Pickup_DateTime': '2009-06-11 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756672, 'End_Lon': -73.978572, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748785, 'Start_Lon': -73.97572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-15 12:33:00', 'Trip_Pickup_DateTime': '2009-06-15 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768772, 'End_Lon': -73.987857, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779098, 'Start_Lon': -73.98279, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-15 12:47:00', 'Trip_Pickup_DateTime': '2009-06-15 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749128, 'End_Lon': -73.986332, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756428, 'Start_Lon': -73.972718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-15 09:52:00', 'Trip_Pickup_DateTime': '2009-06-15 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724973, 'End_Lon': -73.953308, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751802, 'Start_Lon': -73.975478, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 15.45, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-15 11:13:00', 'Trip_Pickup_DateTime': '2009-06-15 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751278, 'End_Lon': -73.974188, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 9.83, 'Tolls_Amt': 4.15, 'Total_Amt': 58.98, 'Trip_Distance': 17.07, 'Trip_Dropoff_DateTime': '2009-06-15 13:44:00', 'Trip_Pickup_DateTime': '2009-06-15 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757138, 'End_Lon': -73.93953, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764102, 'Start_Lon': -73.932835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-11 15:40:00', 'Trip_Pickup_DateTime': '2009-06-11 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740153, 'End_Lon': -73.986138, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767705, 'Start_Lon': -73.96411, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-14 12:43:00', 'Trip_Pickup_DateTime': '2009-06-14 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758817, 'End_Lon': -73.979863, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753373, 'Start_Lon': -73.976968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-17 22:34:00', 'Trip_Pickup_DateTime': '2009-06-17 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773337, 'End_Lon': -73.96227, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75599, 'Start_Lon': -73.975463, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-17 22:48:00', 'Trip_Pickup_DateTime': '2009-06-17 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76948, 'End_Lon': -73.930962, 'Fare_Amt': 36.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.639998, 'Start_Lon': -73.785555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 36.5, 'Trip_Distance': 15.2, 'Trip_Dropoff_DateTime': '2009-06-11 15:02:00', 'Trip_Pickup_DateTime': '2009-06-11 14:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739568, 'End_Lon': -73.97959, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7427, 'Start_Lon': -73.992635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-15 11:02:00', 'Trip_Pickup_DateTime': '2009-06-15 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739602, 'End_Lon': -73.976615, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747197, 'Start_Lon': -73.997023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-11 14:49:00', 'Trip_Pickup_DateTime': '2009-06-11 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796528, 'End_Lon': -73.938568, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780007, 'Start_Lon': -73.95301, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-15 11:25:00', 'Trip_Pickup_DateTime': '2009-06-15 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758823, 'End_Lon': -73.989327, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756502, 'Start_Lon': -74.001598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-11 14:13:00', 'Trip_Pickup_DateTime': '2009-06-11 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806268, 'End_Lon': -73.965777, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76001, 'Start_Lon': -73.985667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-17 22:09:00', 'Trip_Pickup_DateTime': '2009-06-17 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756382, 'End_Lon': -73.966325, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756255, 'Start_Lon': -73.98576, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-13 22:46:00', 'Trip_Pickup_DateTime': '2009-06-13 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723293, 'End_Lon': -73.98848, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746037, 'Start_Lon': -73.97511, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-13 23:55:00', 'Trip_Pickup_DateTime': '2009-06-13 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760483, 'End_Lon': -74.002785, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73956, 'Start_Lon': -73.995068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-11 13:54:00', 'Trip_Pickup_DateTime': '2009-06-11 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738645, 'End_Lon': -73.989895, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744915, 'Start_Lon': -73.997672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-13 19:22:00', 'Trip_Pickup_DateTime': '2009-06-13 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778763, 'End_Lon': -73.945312, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762528, 'Start_Lon': -73.966353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-11 14:15:00', 'Trip_Pickup_DateTime': '2009-06-11 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733955, 'End_Lon': -73.990657, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726288, 'Start_Lon': -73.995982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-13 20:13:00', 'Trip_Pickup_DateTime': '2009-06-13 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779432, 'End_Lon': -73.947653, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765133, 'Start_Lon': -73.961243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-10 22:28:00', 'Trip_Pickup_DateTime': '2009-06-10 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744312, 'End_Lon': -73.991862, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738663, 'Start_Lon': -73.982627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-11 12:54:00', 'Trip_Pickup_DateTime': '2009-06-11 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718935, 'End_Lon': -74.002515, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738093, 'Start_Lon': -73.983548, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-14 01:08:00', 'Trip_Pickup_DateTime': '2009-06-14 00:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.703072, 'End_Lon': -74.013125, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711705, 'Start_Lon': -74.010393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-15 08:37:00', 'Trip_Pickup_DateTime': '2009-06-15 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787285, 'End_Lon': -73.954982, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75829, 'Start_Lon': -73.969175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-13 21:11:00', 'Trip_Pickup_DateTime': '2009-06-13 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7512, 'End_Lon': -73.984677, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737012, 'Start_Lon': -73.996983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-11 13:36:00', 'Trip_Pickup_DateTime': '2009-06-11 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.600897, 'End_Lon': -73.93779, 'Fare_Amt': 35.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742267, 'Start_Lon': -74.004313, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 39.2, 'Trip_Distance': 15.41, 'Trip_Dropoff_DateTime': '2009-06-11 01:19:00', 'Trip_Pickup_DateTime': '2009-06-11 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764092, 'End_Lon': -73.97917, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745457, 'Start_Lon': -73.991122, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-11 12:21:00', 'Trip_Pickup_DateTime': '2009-06-11 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741177, 'End_Lon': -73.989075, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758855, 'Start_Lon': -73.967823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-10 20:27:00', 'Trip_Pickup_DateTime': '2009-06-10 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793395, 'End_Lon': -73.938993, 'Fare_Amt': 17.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79339, 'Start_Lon': -73.939005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-11 17:01:00', 'Trip_Pickup_DateTime': '2009-06-11 17:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740635, 'End_Lon': -73.978718, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75082, 'Start_Lon': -73.97859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-11 12:23:00', 'Trip_Pickup_DateTime': '2009-06-11 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770528, 'End_Lon': -73.865098, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748962, 'Start_Lon': -73.974245, 'Tip_Amt': 5.97, 'Tolls_Amt': 4.15, 'Total_Amt': 35.82, 'Trip_Distance': 11.5, 'Trip_Dropoff_DateTime': '2009-06-11 13:45:00', 'Trip_Pickup_DateTime': '2009-06-11 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7945, 'End_Lon': -73.969788, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753055, 'Start_Lon': -73.975588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-14 01:12:00', 'Trip_Pickup_DateTime': '2009-06-14 00:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718872, 'End_Lon': -73.99657, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730902, 'Start_Lon': -74.004325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-13 20:13:00', 'Trip_Pickup_DateTime': '2009-06-13 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785967, 'End_Lon': -73.977112, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76731, 'Start_Lon': -73.964755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-11 11:39:00', 'Trip_Pickup_DateTime': '2009-06-11 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763168, 'End_Lon': -73.981742, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75013, 'Start_Lon': -73.994772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-14 12:49:00', 'Trip_Pickup_DateTime': '2009-06-14 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72099, 'End_Lon': -74.01005, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796405, 'Start_Lon': -73.961255, 'Tip_Amt': 3.94, 'Tolls_Amt': 0.0, 'Total_Amt': 23.64, 'Trip_Distance': 7.43, 'Trip_Dropoff_DateTime': '2009-06-15 09:41:00', 'Trip_Pickup_DateTime': '2009-06-15 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720413, 'End_Lon': -73.987322, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725805, 'Start_Lon': -73.989777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-11 00:55:00', 'Trip_Pickup_DateTime': '2009-06-11 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729163, 'End_Lon': -73.99383, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755907, 'Start_Lon': -73.990523, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-15 06:38:00', 'Trip_Pickup_DateTime': '2009-06-15 06:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790953, 'End_Lon': -73.965177, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771648, 'Start_Lon': -73.949523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-11 11:56:00', 'Trip_Pickup_DateTime': '2009-06-11 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780548, 'End_Lon': -73.984643, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758055, 'Start_Lon': -73.989502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-10 22:47:00', 'Trip_Pickup_DateTime': '2009-06-10 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75164, 'End_Lon': -73.991953, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763078, 'Start_Lon': -73.983642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-11 02:09:00', 'Trip_Pickup_DateTime': '2009-06-11 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762708, 'End_Lon': -73.981838, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775637, 'Start_Lon': -73.953427, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-15 07:15:00', 'Trip_Pickup_DateTime': '2009-06-15 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79445, 'End_Lon': -73.968285, 'Fare_Amt': 18.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725958, 'Start_Lon': -73.99732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 6.31, 'Trip_Dropoff_DateTime': '2009-06-14 16:23:00', 'Trip_Pickup_DateTime': '2009-06-14 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713177, 'End_Lon': -74.010858, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752263, 'Start_Lon': -73.993327, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.85, 'Trip_Dropoff_DateTime': '2009-06-11 15:17:00', 'Trip_Pickup_DateTime': '2009-06-11 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72951, 'End_Lon': -73.830872, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721312, 'Start_Lon': -73.844263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-11 02:51:00', 'Trip_Pickup_DateTime': '2009-06-11 02:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752282, 'End_Lon': -73.978385, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757237, 'Start_Lon': -73.999322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-11 15:40:00', 'Trip_Pickup_DateTime': '2009-06-11 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754887, 'End_Lon': -73.976727, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765705, 'Start_Lon': -73.990982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-15 08:18:00', 'Trip_Pickup_DateTime': '2009-06-15 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804025, 'End_Lon': -73.966227, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764267, 'Start_Lon': -73.971145, 'Tip_Amt': 3.14, 'Tolls_Amt': 0.0, 'Total_Amt': 18.84, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-15 12:28:00', 'Trip_Pickup_DateTime': '2009-06-15 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758358, 'End_Lon': -73.981577, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749, 'Start_Lon': -73.973298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-11 11:21:00', 'Trip_Pickup_DateTime': '2009-06-11 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778315, 'End_Lon': -73.960958, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797375, 'Start_Lon': -73.97171, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-13 20:33:00', 'Trip_Pickup_DateTime': '2009-06-13 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756128, 'End_Lon': -73.983228, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7349, 'Start_Lon': -73.991157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-11 15:44:00', 'Trip_Pickup_DateTime': '2009-06-11 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763792, 'End_Lon': -73.981208, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726842, 'Start_Lon': -73.991503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-14 01:15:00', 'Trip_Pickup_DateTime': '2009-06-14 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69506, 'End_Lon': -74.177363, 'Fare_Amt': 52.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739605, 'Start_Lon': -73.9872, 'Tip_Amt': 13.07, 'Tolls_Amt': 8.0, 'Total_Amt': 73.37, 'Trip_Distance': 16.64, 'Trip_Dropoff_DateTime': '2009-06-15 06:37:00', 'Trip_Pickup_DateTime': '2009-06-15 06:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793527, 'End_Lon': -73.966838, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764282, 'Start_Lon': -73.969148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-11 15:28:00', 'Trip_Pickup_DateTime': '2009-06-11 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781578, 'End_Lon': -73.948538, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749048, 'Start_Lon': -73.979703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-21 14:31:00', 'Trip_Pickup_DateTime': '2009-06-21 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758898, 'End_Lon': -73.99608, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74295, 'Start_Lon': -73.996885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-13 15:33:00', 'Trip_Pickup_DateTime': '2009-06-13 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764887, 'End_Lon': -73.960895, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736942, 'Start_Lon': -73.986365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-13 20:55:00', 'Trip_Pickup_DateTime': '2009-06-13 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76159, 'End_Lon': -73.974533, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755247, 'Start_Lon': -73.965278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-15 10:22:00', 'Trip_Pickup_DateTime': '2009-06-15 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741733, 'End_Lon': -73.974915, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75865, 'Start_Lon': -73.966262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-15 06:56:00', 'Trip_Pickup_DateTime': '2009-06-15 06:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 6.72, 'Trip_Dropoff_DateTime': '2009-06-11 00:20:00', 'Trip_Pickup_DateTime': '2009-06-10 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760975, 'End_Lon': -73.984155, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78775, 'Start_Lon': -73.941592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.99, 'Trip_Dropoff_DateTime': '2009-06-11 00:49:00', 'Trip_Pickup_DateTime': '2009-06-11 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761602, 'End_Lon': -73.975912, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761938, 'Start_Lon': -73.966762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-15 07:26:00', 'Trip_Pickup_DateTime': '2009-06-15 07:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74282, 'End_Lon': -73.992585, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747048, 'Start_Lon': -73.985703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-14 00:36:00', 'Trip_Pickup_DateTime': '2009-06-14 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800557, 'End_Lon': -73.961997, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746542, 'Start_Lon': -73.891477, 'Tip_Amt': 2.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.55, 'Trip_Distance': 8.03, 'Trip_Dropoff_DateTime': '2009-06-11 06:13:00', 'Trip_Pickup_DateTime': '2009-06-11 05:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71727, 'End_Lon': -73.990837, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715592, 'Start_Lon': -74.009077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-14 19:01:00', 'Trip_Pickup_DateTime': '2009-06-14 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713893, 'End_Lon': -73.949048, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762822, 'Start_Lon': -73.967453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.08, 'Trip_Dropoff_DateTime': '2009-06-11 00:05:00', 'Trip_Pickup_DateTime': '2009-06-10 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752693, 'End_Lon': -73.975347, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755062, 'Start_Lon': -73.965273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-14 12:15:00', 'Trip_Pickup_DateTime': '2009-06-14 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722583, 'End_Lon': -73.987883, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735938, 'Start_Lon': -73.987468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-13 23:57:00', 'Trip_Pickup_DateTime': '2009-06-13 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762038, 'End_Lon': -73.970478, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761405, 'Start_Lon': -73.99023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-21 11:32:00', 'Trip_Pickup_DateTime': '2009-06-21 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758065, 'End_Lon': -73.977388, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748603, 'Start_Lon': -73.976487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-15 07:39:00', 'Trip_Pickup_DateTime': '2009-06-15 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751275, 'End_Lon': -73.993022, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761388, 'Start_Lon': -73.983247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-21 14:24:00', 'Trip_Pickup_DateTime': '2009-06-21 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73692, 'End_Lon': -73.995457, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75283, 'Start_Lon': -73.988087, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-11 10:48:00', 'Trip_Pickup_DateTime': '2009-06-11 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734618, 'End_Lon': -73.990667, 'Fare_Amt': 5.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744832, 'Start_Lon': -73.97593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-11 11:03:00', 'Trip_Pickup_DateTime': '2009-06-11 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.685732, 'End_Lon': -73.994258, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728403, 'Start_Lon': -74.005265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-10 22:43:00', 'Trip_Pickup_DateTime': '2009-06-10 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766008, 'End_Lon': -73.997828, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769018, 'Start_Lon': -73.982205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-21 13:21:00', 'Trip_Pickup_DateTime': '2009-06-21 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747928, 'End_Lon': -73.97363, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766075, 'Start_Lon': -73.955058, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-11 09:59:00', 'Trip_Pickup_DateTime': '2009-06-11 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.838448, 'End_Lon': -73.943677, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77575, 'Start_Lon': -73.98225, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 19.6, 'Trip_Distance': 5.08, 'Trip_Dropoff_DateTime': '2009-06-15 17:13:00', 'Trip_Pickup_DateTime': '2009-06-15 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731513, 'End_Lon': -73.988577, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764093, 'Start_Lon': -73.988648, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-14 11:23:00', 'Trip_Pickup_DateTime': '2009-06-14 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751622, 'End_Lon': -73.982602, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74212, 'Start_Lon': -73.974858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-10 11:18:00', 'Trip_Pickup_DateTime': '2009-06-10 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.666222, 'End_Lon': -73.992343, 'Fare_Amt': 18.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742648, 'Start_Lon': -73.988777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 6.33, 'Trip_Dropoff_DateTime': '2009-06-11 22:31:00', 'Trip_Pickup_DateTime': '2009-06-11 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736452, 'End_Lon': -73.979008, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728555, 'Start_Lon': -74.00277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-10 18:56:00', 'Trip_Pickup_DateTime': '2009-06-10 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777358, 'End_Lon': -73.961347, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748852, 'Start_Lon': -74.003243, 'Tip_Amt': 3.02, 'Tolls_Amt': 0.0, 'Total_Amt': 18.12, 'Trip_Distance': 3.94, 'Trip_Dropoff_DateTime': '2009-06-10 19:00:00', 'Trip_Pickup_DateTime': '2009-06-10 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756223, 'End_Lon': -73.969705, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772388, 'Start_Lon': -73.955897, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-14 19:44:00', 'Trip_Pickup_DateTime': '2009-06-14 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771862, 'End_Lon': -73.961687, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76079, 'Start_Lon': -73.961042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-10 21:35:00', 'Trip_Pickup_DateTime': '2009-06-10 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721967, 'End_Lon': -74.01009, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716953, 'Start_Lon': -73.998207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-13 22:08:00', 'Trip_Pickup_DateTime': '2009-06-13 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773118, 'End_Lon': -73.978317, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768323, 'Start_Lon': -73.969093, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-11 06:22:00', 'Trip_Pickup_DateTime': '2009-06-11 06:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756758, 'End_Lon': -73.878947, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781115, 'Start_Lon': -73.9725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.98, 'Trip_Dropoff_DateTime': '2009-06-10 20:39:00', 'Trip_Pickup_DateTime': '2009-06-10 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.26, 'Trip_Dropoff_DateTime': '2009-06-11 19:47:00', 'Trip_Pickup_DateTime': '2009-06-11 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754957, 'End_Lon': -73.970495, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758583, 'Start_Lon': -73.9634, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-10 18:56:00', 'Trip_Pickup_DateTime': '2009-06-10 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733692, 'End_Lon': -74.002758, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755378, 'Start_Lon': -73.987875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-13 22:29:00', 'Trip_Pickup_DateTime': '2009-06-13 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783437, 'End_Lon': -73.982942, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751495, 'Start_Lon': -74.001308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-15 00:37:00', 'Trip_Pickup_DateTime': '2009-06-15 00:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7099, 'End_Lon': -74.01556, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.22, 'Trip_Dropoff_DateTime': '2009-06-11 00:00:00', 'Trip_Pickup_DateTime': '2009-06-10 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.64696, 'End_Lon': -73.78994, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755212, 'Start_Lon': -73.973765, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.13, 'Trip_Dropoff_DateTime': '2009-06-11 18:53:00', 'Trip_Pickup_DateTime': '2009-06-11 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7552, 'End_Lon': -73.967787, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705017, 'Start_Lon': -74.009468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.76, 'Trip_Dropoff_DateTime': '2009-06-14 03:17:00', 'Trip_Pickup_DateTime': '2009-06-14 03:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74647, 'End_Lon': -74.001178, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71344, 'Start_Lon': -73.958137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.63, 'Trip_Dropoff_DateTime': '2009-06-14 03:47:00', 'Trip_Pickup_DateTime': '2009-06-14 03:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782155, 'End_Lon': -73.976137, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742143, 'Start_Lon': -74.004613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.5, 'Trip_Dropoff_DateTime': '2009-06-13 23:51:00', 'Trip_Pickup_DateTime': '2009-06-13 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761138, 'End_Lon': -73.96868, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762542, 'Start_Lon': -73.982897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-14 00:14:00', 'Trip_Pickup_DateTime': '2009-06-14 00:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774353, 'End_Lon': -73.873195, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715925, 'Start_Lon': -74.007357, 'Tip_Amt': 7.02, 'Tolls_Amt': 0.0, 'Total_Amt': 35.12, 'Trip_Distance': 12.06, 'Trip_Dropoff_DateTime': '2009-06-14 13:30:00', 'Trip_Pickup_DateTime': '2009-06-14 13:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744157, 'End_Lon': -73.981, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751213, 'Start_Lon': -73.970897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-15 15:29:00', 'Trip_Pickup_DateTime': '2009-06-15 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757282, 'End_Lon': -73.93439, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760432, 'Start_Lon': -73.987855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-14 05:51:00', 'Trip_Pickup_DateTime': '2009-06-14 05:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779402, 'End_Lon': -73.984752, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784563, 'Start_Lon': -73.9577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-11 18:44:00', 'Trip_Pickup_DateTime': '2009-06-11 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774937, 'End_Lon': -73.989127, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716877, 'Start_Lon': -74.008063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-15 01:07:00', 'Trip_Pickup_DateTime': '2009-06-15 00:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73195, 'End_Lon': -73.983693, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725895, 'Start_Lon': -74.005637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-12 02:11:00', 'Trip_Pickup_DateTime': '2009-06-12 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734192, 'End_Lon': -74.002727, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787298, 'Start_Lon': -73.975007, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-13 21:50:00', 'Trip_Pickup_DateTime': '2009-06-13 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721548, 'End_Lon': -73.988652, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737813, 'Start_Lon': -73.986562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-10 19:11:00', 'Trip_Pickup_DateTime': '2009-06-10 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785637, 'End_Lon': -73.976423, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733798, 'Start_Lon': -73.998378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.64, 'Trip_Dropoff_DateTime': '2009-06-14 02:28:00', 'Trip_Pickup_DateTime': '2009-06-14 02:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763563, 'End_Lon': -73.969447, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75648, 'Start_Lon': -73.974118, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-14 08:22:00', 'Trip_Pickup_DateTime': '2009-06-14 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720095, 'End_Lon': -73.98821, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78278, 'Start_Lon': -73.947993, 'Tip_Amt': 3.32, 'Tolls_Amt': 0.0, 'Total_Amt': 19.92, 'Trip_Distance': 6.06, 'Trip_Dropoff_DateTime': '2009-06-14 23:14:00', 'Trip_Pickup_DateTime': '2009-06-14 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706067, 'End_Lon': -74.005615, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719422, 'Start_Lon': -73.989692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-14 03:57:00', 'Trip_Pickup_DateTime': '2009-06-14 03:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722415, 'End_Lon': -73.983113, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758732, 'Start_Lon': -73.962702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 4.26, 'Trip_Dropoff_DateTime': '2009-06-14 14:04:00', 'Trip_Pickup_DateTime': '2009-06-14 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745603, 'End_Lon': -73.99895, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762702, 'Start_Lon': -73.989467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-10 19:37:00', 'Trip_Pickup_DateTime': '2009-06-10 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760498, 'End_Lon': -73.969798, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784665, 'Start_Lon': -73.952045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-11 10:01:00', 'Trip_Pickup_DateTime': '2009-06-11 09:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742558, 'End_Lon': -73.990093, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75409, 'Start_Lon': -73.980588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-11 13:52:00', 'Trip_Pickup_DateTime': '2009-06-11 13:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750553, 'End_Lon': -73.981203, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753603, 'Start_Lon': -73.984732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-15 16:10:00', 'Trip_Pickup_DateTime': '2009-06-15 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749555, 'End_Lon': -73.981063, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7556, 'Start_Lon': -73.9884, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-11 10:22:00', 'Trip_Pickup_DateTime': '2009-06-11 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729973, 'End_Lon': -74.000493, 'Fare_Amt': 25.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729973, 'Start_Lon': -74.000493, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.8, 'Trip_Distance': 8.12, 'Trip_Dropoff_DateTime': '2009-06-14 01:45:00', 'Trip_Pickup_DateTime': '2009-06-14 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758645, 'End_Lon': -73.985462, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76394, 'Start_Lon': -73.969135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-11 19:13:00', 'Trip_Pickup_DateTime': '2009-06-11 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771492, 'End_Lon': -73.95212, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764053, 'Start_Lon': -73.954347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-14 12:15:00', 'Trip_Pickup_DateTime': '2009-06-14 12:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747657, 'End_Lon': -73.976702, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724188, 'Start_Lon': -73.990322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-12 00:57:00', 'Trip_Pickup_DateTime': '2009-06-12 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76418, 'End_Lon': -73.971465, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753935, 'Start_Lon': -73.971658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-15 19:02:00', 'Trip_Pickup_DateTime': '2009-06-15 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.594745, 'End_Lon': -73.77959, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.593627, 'Start_Lon': -73.775853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-11 18:54:00', 'Trip_Pickup_DateTime': '2009-06-11 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766002, 'End_Lon': -73.99279, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751962, 'Start_Lon': -73.993362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-15 19:13:00', 'Trip_Pickup_DateTime': '2009-06-15 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721528, 'End_Lon': -74.001975, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7594, 'Start_Lon': -73.984885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-15 13:22:00', 'Trip_Pickup_DateTime': '2009-06-15 13:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73229, 'End_Lon': -73.995967, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758688, 'Start_Lon': -73.976932, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-15 15:00:00', 'Trip_Pickup_DateTime': '2009-06-15 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750465, 'End_Lon': -73.99457, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7399, 'Start_Lon': -74.007088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-12 00:37:00', 'Trip_Pickup_DateTime': '2009-06-12 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79518, 'End_Lon': -73.95045, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773682, 'Start_Lon': -73.870872, 'Tip_Amt': 3.96, 'Tolls_Amt': 4.15, 'Total_Amt': 27.91, 'Trip_Distance': 7.57, 'Trip_Dropoff_DateTime': '2009-06-12 01:01:00', 'Trip_Pickup_DateTime': '2009-06-12 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774397, 'End_Lon': -73.957217, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755753, 'Start_Lon': -73.972722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-13 21:33:00', 'Trip_Pickup_DateTime': '2009-06-13 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768769, 'End_Lon': -73.982288, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.771738, 'Start_Lon': -73.965122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-15 10:25:01', 'Trip_Pickup_DateTime': '2009-06-15 10:19:45', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.787188, 'End_Lon': -73.967893, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753778, 'Start_Lon': -73.968017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 6.58, 'Trip_Dropoff_DateTime': '2009-06-12 00:53:00', 'Trip_Pickup_DateTime': '2009-06-12 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694445, 'End_Lon': -73.995858, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.677145, 'Start_Lon': -73.979948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-12 01:09:00', 'Trip_Pickup_DateTime': '2009-06-12 01:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752877, 'End_Lon': -73.979398, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739935, 'Start_Lon': -74.00233, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-11 18:00:00', 'Trip_Pickup_DateTime': '2009-06-11 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787612, 'End_Lon': -73.974707, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780923, 'Start_Lon': -73.961115, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-15 18:43:00', 'Trip_Pickup_DateTime': '2009-06-15 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731252, 'End_Lon': -73.974148, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756673, 'Start_Lon': -73.966838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-12 00:35:00', 'Trip_Pickup_DateTime': '2009-06-12 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727427, 'End_Lon': -73.993642, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767437, 'Start_Lon': -73.98195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-11 20:55:00', 'Trip_Pickup_DateTime': '2009-06-11 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76358, 'End_Lon': -73.989155, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726613, 'Start_Lon': -73.994097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-15 19:11:00', 'Trip_Pickup_DateTime': '2009-06-15 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.828427, 'End_Lon': -73.856597, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739505, 'Start_Lon': -73.976717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 10.47, 'Trip_Dropoff_DateTime': '2009-06-14 06:08:00', 'Trip_Pickup_DateTime': '2009-06-14 05:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754027, 'End_Lon': -73.995737, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764368, 'Start_Lon': -73.990278, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-11 21:54:00', 'Trip_Pickup_DateTime': '2009-06-11 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76447, 'End_Lon': -73.973343, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734653, 'Start_Lon': -74.00711, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.31, 'Trip_Dropoff_DateTime': '2009-06-15 11:05:00', 'Trip_Pickup_DateTime': '2009-06-15 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780718, 'End_Lon': -73.985752, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781455, 'Start_Lon': -73.95825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-11 14:00:00', 'Trip_Pickup_DateTime': '2009-06-11 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770138, 'End_Lon': -73.953615, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758692, 'Start_Lon': -73.962898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 14:48:00', 'Trip_Pickup_DateTime': '2009-06-15 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762547, 'End_Lon': -73.982787, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752313, 'Start_Lon': -73.9776, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-11 23:02:00', 'Trip_Pickup_DateTime': '2009-06-11 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800362, 'End_Lon': -73.96944, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788148, 'Start_Lon': -73.976633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-11 19:40:00', 'Trip_Pickup_DateTime': '2009-06-11 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783093, 'End_Lon': -73.974018, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782582, 'Start_Lon': -73.957597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-15 16:51:00', 'Trip_Pickup_DateTime': '2009-06-15 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750392, 'End_Lon': -73.991308, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751442, 'Start_Lon': -73.97555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-11 20:30:00', 'Trip_Pickup_DateTime': '2009-06-11 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73677, 'End_Lon': -73.972797, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771802, 'Start_Lon': -73.950097, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-15 18:24:00', 'Trip_Pickup_DateTime': '2009-06-15 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656293, 'End_Lon': -73.973755, 'Fare_Amt': 23.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740617, 'Start_Lon': -73.993763, 'Tip_Amt': 4.66, 'Tolls_Amt': 0.0, 'Total_Amt': 27.96, 'Trip_Distance': 8.03, 'Trip_Dropoff_DateTime': '2009-06-11 14:55:00', 'Trip_Pickup_DateTime': '2009-06-11 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720175, 'End_Lon': -74.009813, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736535, 'Start_Lon': -74.005242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-15 14:00:00', 'Trip_Pickup_DateTime': '2009-06-15 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761952, 'End_Lon': -73.98587, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776587, 'Start_Lon': -73.985505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-11 20:18:00', 'Trip_Pickup_DateTime': '2009-06-11 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763188, 'End_Lon': -73.981443, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75056, 'Start_Lon': -73.988133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-15 13:58:00', 'Trip_Pickup_DateTime': '2009-06-15 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70436, 'End_Lon': -74.01428, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745403, 'Start_Lon': -73.99448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.04, 'Trip_Dropoff_DateTime': '2009-06-15 14:39:00', 'Trip_Pickup_DateTime': '2009-06-15 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734595, 'End_Lon': -73.998868, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742268, 'Start_Lon': -73.982215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-11 18:22:00', 'Trip_Pickup_DateTime': '2009-06-11 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763553, 'End_Lon': -73.978837, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774265, 'Start_Lon': -73.963177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-15 19:07:00', 'Trip_Pickup_DateTime': '2009-06-15 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752762, 'End_Lon': -73.990387, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763647, 'Start_Lon': -73.982268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-15 13:35:00', 'Trip_Pickup_DateTime': '2009-06-15 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748663, 'End_Lon': -73.978173, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742977, 'Start_Lon': -74.007678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-11 19:27:00', 'Trip_Pickup_DateTime': '2009-06-11 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734653, 'End_Lon': -73.990437, 'Fare_Amt': 12.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759248, 'Start_Lon': -73.972618, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-11 17:02:00', 'Trip_Pickup_DateTime': '2009-06-11 16:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.638515, 'End_Lon': -73.786213, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768967, 'Start_Lon': -73.862613, 'Tip_Amt': 6.02, 'Tolls_Amt': 0.0, 'Total_Amt': 36.12, 'Trip_Distance': 12.21, 'Trip_Dropoff_DateTime': '2009-06-15 16:03:00', 'Trip_Pickup_DateTime': '2009-06-15 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732798, 'End_Lon': -74.000082, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761563, 'Start_Lon': -73.99042, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-11 18:55:00', 'Trip_Pickup_DateTime': '2009-06-11 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763037, 'End_Lon': -73.996678, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73343, 'Start_Lon': -73.993515, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-11 20:00:00', 'Trip_Pickup_DateTime': '2009-06-11 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779882, 'End_Lon': -73.958587, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76952, 'Start_Lon': -73.951673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-11 17:17:00', 'Trip_Pickup_DateTime': '2009-06-11 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745865, 'End_Lon': -73.999792, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761643, 'Start_Lon': -73.96478, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-11 19:28:00', 'Trip_Pickup_DateTime': '2009-06-11 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772437, 'End_Lon': -73.96681, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73536, 'Start_Lon': -73.97963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-11 18:22:00', 'Trip_Pickup_DateTime': '2009-06-11 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781922, 'End_Lon': -73.957737, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76089, 'Start_Lon': -73.97321, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-15 14:34:00', 'Trip_Pickup_DateTime': '2009-06-15 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750668, 'End_Lon': -73.994498, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74178, 'Start_Lon': -74.001175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-11 20:31:00', 'Trip_Pickup_DateTime': '2009-06-11 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761648, 'End_Lon': -73.980353, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761328, 'Start_Lon': -73.993458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-11 19:04:00', 'Trip_Pickup_DateTime': '2009-06-11 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75663, 'End_Lon': -73.979677, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757052, 'Start_Lon': -73.991712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-10 22:07:00', 'Trip_Pickup_DateTime': '2009-06-10 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747473, 'End_Lon': -73.982598, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75563, 'Start_Lon': -73.96791, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-15 11:18:00', 'Trip_Pickup_DateTime': '2009-06-15 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708103, 'End_Lon': -73.828282, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72145, 'Start_Lon': -73.844438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-11 20:04:00', 'Trip_Pickup_DateTime': '2009-06-11 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758465, 'End_Lon': -73.98269, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747193, 'Start_Lon': -73.977035, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-15 14:10:00', 'Trip_Pickup_DateTime': '2009-06-15 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773765, 'End_Lon': -73.957758, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769512, 'Start_Lon': -73.960208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-11 17:15:00', 'Trip_Pickup_DateTime': '2009-06-11 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729872, 'End_Lon': -74.003698, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721132, 'Start_Lon': -74.009877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-15 12:51:00', 'Trip_Pickup_DateTime': '2009-06-15 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740678, 'End_Lon': -73.997982, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747302, 'Start_Lon': -73.993883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-11 17:28:00', 'Trip_Pickup_DateTime': '2009-06-11 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707398, 'End_Lon': -74.004217, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718868, 'Start_Lon': -74.001148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-11 18:07:00', 'Trip_Pickup_DateTime': '2009-06-11 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750953, 'End_Lon': -73.980288, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735232, 'Start_Lon': -74.00611, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-30 22:58:00', 'Trip_Pickup_DateTime': '2009-06-30 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753112, 'End_Lon': -73.995515, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720782, 'Start_Lon': -74.00837, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-11 17:40:00', 'Trip_Pickup_DateTime': '2009-06-11 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718718, 'End_Lon': -74.002552, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717175, 'Start_Lon': -73.991365, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-15 10:40:00', 'Trip_Pickup_DateTime': '2009-06-15 10:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.821905, 'End_Lon': -73.938758, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73746, 'Start_Lon': -73.996797, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.7, 'Trip_Distance': 8.64, 'Trip_Dropoff_DateTime': '2009-06-11 14:49:00', 'Trip_Pickup_DateTime': '2009-06-11 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76762, 'End_Lon': -73.9595, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763048, 'Start_Lon': -73.974267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-29 18:42:00', 'Trip_Pickup_DateTime': '2009-06-29 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755978, 'End_Lon': -73.980595, 'Fare_Amt': 16.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781695, 'Start_Lon': -73.96036, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-10 14:14:00', 'Trip_Pickup_DateTime': '2009-06-10 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756307, 'End_Lon': -73.975187, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746092, 'Start_Lon': -73.990528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-30 12:42:00', 'Trip_Pickup_DateTime': '2009-06-30 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775447, 'End_Lon': -73.984, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795898, 'Start_Lon': -73.970888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-30 12:17:00', 'Trip_Pickup_DateTime': '2009-06-30 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762475, 'End_Lon': -73.982452, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773698, 'Start_Lon': -73.870873, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.75, 'Trip_Distance': 10.88, 'Trip_Dropoff_DateTime': '2009-06-08 22:54:00', 'Trip_Pickup_DateTime': '2009-06-08 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765192, 'End_Lon': -73.975025, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746392, 'Start_Lon': -74.001458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-12 08:55:00', 'Trip_Pickup_DateTime': '2009-06-12 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774288, 'End_Lon': -74.155853, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806542, 'Start_Lon': -74.188228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.75, 'Trip_Dropoff_DateTime': '2009-06-15 18:47:00', 'Trip_Pickup_DateTime': '2009-06-15 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761413, 'End_Lon': -73.976695, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756052, 'Start_Lon': -73.99034, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-12 09:43:00', 'Trip_Pickup_DateTime': '2009-06-12 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739978, 'End_Lon': -73.982295, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77639, 'Start_Lon': -73.975857, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-11 21:12:00', 'Trip_Pickup_DateTime': '2009-06-11 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78143, 'End_Lon': -73.954718, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776583, 'Start_Lon': -73.983838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-29 19:36:00', 'Trip_Pickup_DateTime': '2009-06-29 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749103, 'End_Lon': -73.974912, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765998, 'Start_Lon': -73.997712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-14 10:32:00', 'Trip_Pickup_DateTime': '2009-06-14 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749977, 'End_Lon': -73.99159, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77299, 'Start_Lon': -73.962273, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-11 21:18:00', 'Trip_Pickup_DateTime': '2009-06-11 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792863, 'End_Lon': -73.976393, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71341, 'Start_Lon': -74.009402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.28, 'Trip_Dropoff_DateTime': '2009-06-08 20:51:00', 'Trip_Pickup_DateTime': '2009-06-08 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.686318, 'End_Lon': -73.999263, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784103, 'Start_Lon': -73.97452, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.6, 'Trip_Distance': 8.83, 'Trip_Dropoff_DateTime': '2009-06-11 21:11:00', 'Trip_Pickup_DateTime': '2009-06-11 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724572, 'End_Lon': -73.981878, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736768, 'Start_Lon': -73.977895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-11 09:01:00', 'Trip_Pickup_DateTime': '2009-06-11 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724837, 'End_Lon': -73.998603, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768452, 'Start_Lon': -73.98359, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-11 12:59:00', 'Trip_Pickup_DateTime': '2009-06-11 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718795, 'End_Lon': -74.002325, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734555, 'Start_Lon': -73.986125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-08 20:27:00', 'Trip_Pickup_DateTime': '2009-06-08 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756865, 'End_Lon': -73.97226, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77315, 'Start_Lon': -73.88548, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 38.3, 'Trip_Distance': 12.73, 'Trip_Dropoff_DateTime': '2009-06-10 11:24:00', 'Trip_Pickup_DateTime': '2009-06-10 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755757, 'End_Lon': -73.977072, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74185, 'Start_Lon': -73.995133, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-11 20:57:00', 'Trip_Pickup_DateTime': '2009-06-11 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767895, 'End_Lon': -73.956925, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72309, 'Start_Lon': -73.995112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-30 22:56:00', 'Trip_Pickup_DateTime': '2009-06-30 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763372, 'End_Lon': -73.969387, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770575, 'Start_Lon': -73.960187, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-12 09:10:00', 'Trip_Pickup_DateTime': '2009-06-12 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758245, 'End_Lon': -74.000583, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760465, 'Start_Lon': -73.984778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-10 11:36:00', 'Trip_Pickup_DateTime': '2009-06-10 11:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770943, 'End_Lon': -73.979783, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75949, 'Start_Lon': -73.98094, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-08 21:34:00', 'Trip_Pickup_DateTime': '2009-06-08 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758267, 'End_Lon': -73.971153, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772305, 'Start_Lon': -73.96083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-10 11:06:00', 'Trip_Pickup_DateTime': '2009-06-10 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749763, 'End_Lon': -73.991705, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731117, 'Start_Lon': -73.990385, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-08 20:22:00', 'Trip_Pickup_DateTime': '2009-06-08 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.679208, 'End_Lon': -73.978617, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749738, 'Start_Lon': -73.98535, 'Tip_Amt': 3.56, 'Tolls_Amt': 0.0, 'Total_Amt': 21.36, 'Trip_Distance': 6.05, 'Trip_Dropoff_DateTime': '2009-06-30 23:24:00', 'Trip_Pickup_DateTime': '2009-06-30 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 19.69, 'Trip_Dropoff_DateTime': '2009-06-12 05:56:00', 'Trip_Pickup_DateTime': '2009-06-12 05:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756992, 'End_Lon': -73.97924, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739492, 'Start_Lon': -73.976598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-12 06:21:00', 'Trip_Pickup_DateTime': '2009-06-12 06:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748032, 'End_Lon': -74.00543, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761525, 'Start_Lon': -73.997868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-10 11:56:00', 'Trip_Pickup_DateTime': '2009-06-10 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716488, 'End_Lon': -73.99599, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71806, 'Start_Lon': -73.986345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-10 13:15:00', 'Trip_Pickup_DateTime': '2009-06-10 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761067, 'End_Lon': -73.975623, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781133, 'Start_Lon': -73.972425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-10 12:45:00', 'Trip_Pickup_DateTime': '2009-06-10 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776488, 'End_Lon': -73.960063, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753457, 'Start_Lon': -73.96681, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-17 23:47:00', 'Trip_Pickup_DateTime': '2009-06-17 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714463, 'End_Lon': -74.015782, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70784, 'Start_Lon': -74.007117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-12 07:37:00', 'Trip_Pickup_DateTime': '2009-06-12 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780762, 'End_Lon': -73.97672, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777695, 'Start_Lon': -73.974962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-15 18:31:00', 'Trip_Pickup_DateTime': '2009-06-15 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.676105, 'End_Lon': -73.971725, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72764, 'Start_Lon': -73.99083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.17, 'Trip_Dropoff_DateTime': '2009-06-17 23:28:00', 'Trip_Pickup_DateTime': '2009-06-17 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763552, 'End_Lon': -73.9815, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745687, 'Start_Lon': -74.005748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-11 18:28:00', 'Trip_Pickup_DateTime': '2009-06-11 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759163, 'End_Lon': -73.98797, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742055, 'Start_Lon': -73.979147, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-29 00:20:00', 'Trip_Pickup_DateTime': '2009-06-29 00:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-10 11:54:00', 'Trip_Pickup_DateTime': '2009-06-10 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734002, 'End_Lon': -74.004912, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.957988, 'Start_Lon': -73.86998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-15 18:13:00', 'Trip_Pickup_DateTime': '2009-06-15 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789255, 'End_Lon': -73.979028, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760742, 'Start_Lon': -73.978418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-10 11:52:00', 'Trip_Pickup_DateTime': '2009-06-10 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803912, 'End_Lon': -73.963062, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79756, 'Start_Lon': -73.960508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-15 16:53:00', 'Trip_Pickup_DateTime': '2009-06-15 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765673, 'End_Lon': -73.971893, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786753, 'Start_Lon': -73.953423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-10 11:16:00', 'Trip_Pickup_DateTime': '2009-06-10 10:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756163, 'End_Lon': -73.990647, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751048, 'Start_Lon': -73.982362, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-10 14:54:00', 'Trip_Pickup_DateTime': '2009-06-10 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727397, 'End_Lon': -74.00308, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715497, 'Start_Lon': -74.00741, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-11 23:05:00', 'Trip_Pickup_DateTime': '2009-06-11 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778022, 'End_Lon': -73.95306, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767567, 'Start_Lon': -73.959318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-10 14:57:00', 'Trip_Pickup_DateTime': '2009-06-10 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731547, 'End_Lon': -73.99686, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76844, 'Start_Lon': -73.984703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-11 20:09:00', 'Trip_Pickup_DateTime': '2009-06-11 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755273, 'End_Lon': -73.968915, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774587, 'Start_Lon': -73.983908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-13 18:37:00', 'Trip_Pickup_DateTime': '2009-06-13 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771382, 'End_Lon': -73.963812, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770653, 'Start_Lon': -73.967008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.28, 'Trip_Dropoff_DateTime': '2009-06-10 12:16:00', 'Trip_Pickup_DateTime': '2009-06-10 12:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757793, 'End_Lon': -73.968125, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75943, 'Start_Lon': -73.981488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-18 00:08:00', 'Trip_Pickup_DateTime': '2009-06-18 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745013, 'End_Lon': -73.981627, 'Fare_Amt': 6.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75878, 'Start_Lon': -73.97286, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-10 12:10:00', 'Trip_Pickup_DateTime': '2009-06-10 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.643997, 'End_Lon': -73.782878, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755302, 'Start_Lon': -73.968263, 'Tip_Amt': 5.45, 'Tolls_Amt': 4.15, 'Total_Amt': 54.6, 'Trip_Distance': 16.63, 'Trip_Dropoff_DateTime': '2009-06-14 16:29:00', 'Trip_Pickup_DateTime': '2009-06-14 15:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73993, 'End_Lon': -74.005342, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72133, 'Start_Lon': -74.005137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-15 18:23:00', 'Trip_Pickup_DateTime': '2009-06-15 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785567, 'End_Lon': -73.972208, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735562, 'Start_Lon': -73.991407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-14 23:29:00', 'Trip_Pickup_DateTime': '2009-06-14 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750398, 'End_Lon': -73.991005, 'Fare_Amt': 25.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750423, 'Start_Lon': -73.978468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-15 17:22:00', 'Trip_Pickup_DateTime': '2009-06-15 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73006, 'End_Lon': -73.983458, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750628, 'Start_Lon': -73.99447, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-14 21:11:00', 'Trip_Pickup_DateTime': '2009-06-14 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771168, 'End_Lon': -73.986633, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772848, 'Start_Lon': -73.952145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-10 15:51:00', 'Trip_Pickup_DateTime': '2009-06-10 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745942, 'End_Lon': -73.986, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756843, 'Start_Lon': -73.97508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-10 16:15:00', 'Trip_Pickup_DateTime': '2009-06-10 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748643, 'End_Lon': -73.96436, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757908, 'Start_Lon': -73.979933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-10 13:26:00', 'Trip_Pickup_DateTime': '2009-06-10 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751598, 'End_Lon': -73.993417, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744035, 'Start_Lon': -73.991922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-10 16:47:00', 'Trip_Pickup_DateTime': '2009-06-10 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760122, 'End_Lon': -73.988508, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756453, 'Start_Lon': -74.001673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-10 13:48:00', 'Trip_Pickup_DateTime': '2009-06-10 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786905, 'End_Lon': -73.974788, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757013, 'Start_Lon': -73.989827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-14 21:45:00', 'Trip_Pickup_DateTime': '2009-06-14 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747473, 'End_Lon': -73.956723, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76257, 'Start_Lon': -73.969843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-14 00:39:00', 'Trip_Pickup_DateTime': '2009-06-14 00:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75029, 'End_Lon': -73.991255, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748663, 'Start_Lon': -73.978153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-14 17:43:00', 'Trip_Pickup_DateTime': '2009-06-14 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780197, 'End_Lon': -73.9469, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771538, 'Start_Lon': -73.864202, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.65, 'Trip_Distance': 8.25, 'Trip_Dropoff_DateTime': '2009-06-10 17:29:00', 'Trip_Pickup_DateTime': '2009-06-10 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78601, 'End_Lon': -73.957357, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771102, 'Start_Lon': -73.983103, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-13 21:59:00', 'Trip_Pickup_DateTime': '2009-06-13 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737597, 'End_Lon': -73.982283, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725603, 'Start_Lon': -73.994925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-11 22:11:00', 'Trip_Pickup_DateTime': '2009-06-11 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.685085, 'End_Lon': -73.977703, 'Fare_Amt': 21.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770373, 'Start_Lon': -73.984307, 'Tip_Amt': 4.36, 'Tolls_Amt': 0.0, 'Total_Amt': 26.16, 'Trip_Distance': 7.45, 'Trip_Dropoff_DateTime': '2009-06-14 21:40:00', 'Trip_Pickup_DateTime': '2009-06-14 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775812, 'End_Lon': -73.962565, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75869, 'Start_Lon': -73.982007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-10 17:24:00', 'Trip_Pickup_DateTime': '2009-06-10 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749262, 'End_Lon': -73.968767, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741437, 'Start_Lon': -73.98965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-10 18:04:00', 'Trip_Pickup_DateTime': '2009-06-10 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783357, 'End_Lon': -73.980463, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784757, 'Start_Lon': -73.958115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-10 17:08:00', 'Trip_Pickup_DateTime': '2009-06-10 17:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788057, 'End_Lon': -73.977162, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777278, 'Start_Lon': -73.98624, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-10 19:49:00', 'Trip_Pickup_DateTime': '2009-06-10 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765002, 'End_Lon': -73.98681, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759307, 'Start_Lon': -73.988392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-10 17:14:00', 'Trip_Pickup_DateTime': '2009-06-10 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755292, 'End_Lon': -73.941575, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75281, 'Start_Lon': -73.942118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-10 17:24:00', 'Trip_Pickup_DateTime': '2009-06-10 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725552, 'End_Lon': -73.999447, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734935, 'Start_Lon': -74.000455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-14 20:24:00', 'Trip_Pickup_DateTime': '2009-06-14 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761252, 'End_Lon': -73.972605, 'Fare_Amt': 6.9, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738975, 'Start_Lon': -73.987195, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-11 20:01:00', 'Trip_Pickup_DateTime': '2009-06-11 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756597, 'End_Lon': -73.98856, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714702, 'Start_Lon': -74.016262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-15 19:46:00', 'Trip_Pickup_DateTime': '2009-06-15 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7424, 'End_Lon': -73.954262, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760725, 'Start_Lon': -73.965698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-14 19:35:00', 'Trip_Pickup_DateTime': '2009-06-14 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760058, 'End_Lon': -73.973647, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763172, 'Start_Lon': -73.96774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-14 15:48:00', 'Trip_Pickup_DateTime': '2009-06-14 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.848188, 'End_Lon': -73.854832, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.855478, 'Start_Lon': -73.85387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-17 22:58:00', 'Trip_Pickup_DateTime': '2009-06-17 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736885, 'End_Lon': -73.992875, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76181, 'Start_Lon': -73.982748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-10 20:47:00', 'Trip_Pickup_DateTime': '2009-06-10 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784092, 'End_Lon': -73.958523, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80686, 'Start_Lon': -73.964898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-10 18:46:00', 'Trip_Pickup_DateTime': '2009-06-10 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687338, 'End_Lon': -73.869353, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769045, 'Start_Lon': -73.862907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.7, 'Trip_Distance': 10.53, 'Trip_Dropoff_DateTime': '2009-06-10 18:15:00', 'Trip_Pickup_DateTime': '2009-06-10 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771257, 'End_Lon': -73.959515, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785138, 'Start_Lon': -73.953635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-14 13:21:00', 'Trip_Pickup_DateTime': '2009-06-14 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723803, 'End_Lon': -73.993682, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76201, 'Start_Lon': -73.960218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-14 13:24:00', 'Trip_Pickup_DateTime': '2009-06-14 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755677, 'End_Lon': -73.976613, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774283, 'Start_Lon': -73.951502, 'Tip_Amt': 2.3, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-14 14:55:00', 'Trip_Pickup_DateTime': '2009-06-14 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775777, 'End_Lon': -73.983833, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757785, 'Start_Lon': -73.96947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-13 19:24:00', 'Trip_Pickup_DateTime': '2009-06-13 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775127, 'End_Lon': -73.944785, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780617, 'Start_Lon': -73.958652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-17 20:01:00', 'Trip_Pickup_DateTime': '2009-06-17 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723152, 'End_Lon': -73.989272, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725547, 'Start_Lon': -74.003912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-14 01:37:00', 'Trip_Pickup_DateTime': '2009-06-14 01:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7409, 'End_Lon': -73.988432, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749883, 'Start_Lon': -73.991593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-14 14:56:00', 'Trip_Pickup_DateTime': '2009-06-14 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755195, 'End_Lon': -73.970595, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734587, 'Start_Lon': -73.980338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-14 17:58:00', 'Trip_Pickup_DateTime': '2009-06-14 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766727, 'End_Lon': -73.985462, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765915, 'Start_Lon': -73.981185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-14 04:34:00', 'Trip_Pickup_DateTime': '2009-06-14 04:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731615, 'End_Lon': -74.003225, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73482, 'Start_Lon': -73.990647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-14 12:45:00', 'Trip_Pickup_DateTime': '2009-06-14 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751522, 'End_Lon': -73.981977, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707843, 'Start_Lon': -74.016173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.07, 'Trip_Dropoff_DateTime': '2009-06-14 10:45:00', 'Trip_Pickup_DateTime': '2009-06-14 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72776, 'End_Lon': -73.991355, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745355, 'Start_Lon': -73.980472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-13 21:50:00', 'Trip_Pickup_DateTime': '2009-06-13 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791995, 'End_Lon': -73.973533, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784637, 'Start_Lon': -73.97934, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-10 16:33:00', 'Trip_Pickup_DateTime': '2009-06-10 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786383, 'End_Lon': -73.978222, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79209, 'Start_Lon': -73.973912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-10 19:36:00', 'Trip_Pickup_DateTime': '2009-06-10 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79249, 'End_Lon': -73.966487, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763215, 'Start_Lon': -73.985315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-15 17:33:00', 'Trip_Pickup_DateTime': '2009-06-15 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733483, 'End_Lon': -74.002322, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736742, 'Start_Lon': -73.988867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-14 11:40:00', 'Trip_Pickup_DateTime': '2009-06-14 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738557, 'End_Lon': -73.986517, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723357, 'Start_Lon': -73.9883, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-14 03:16:00', 'Trip_Pickup_DateTime': '2009-06-14 03:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.808637, 'End_Lon': -73.959665, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740288, 'Start_Lon': -74.001702, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 5.57, 'Trip_Dropoff_DateTime': '2009-06-13 21:04:00', 'Trip_Pickup_DateTime': '2009-06-13 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.795407, 'End_Lon': -74.003983, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.801833, 'Start_Lon': -73.997407, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-10 20:54:00', 'Trip_Pickup_DateTime': '2009-06-10 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76516, 'End_Lon': -73.976673, 'Fare_Amt': 6.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753557, 'Start_Lon': -73.980557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-22 14:51:00', 'Trip_Pickup_DateTime': '2009-06-22 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749075, 'End_Lon': -73.99113, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715248, 'Start_Lon': -74.002813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-22 15:12:00', 'Trip_Pickup_DateTime': '2009-06-22 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727735, 'End_Lon': -74.003185, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714247, 'Start_Lon': -74.00834, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-11 12:26:00', 'Trip_Pickup_DateTime': '2009-06-11 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76908, 'End_Lon': -73.98133, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748812, 'Start_Lon': -73.982952, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-22 18:57:00', 'Trip_Pickup_DateTime': '2009-06-22 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750733, 'End_Lon': -73.982675, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740002, 'Start_Lon': -73.99489, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-15 20:15:00', 'Trip_Pickup_DateTime': '2009-06-15 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775353, 'End_Lon': -73.983825, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742783, 'Start_Lon': -73.992387, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-30 21:04:00', 'Trip_Pickup_DateTime': '2009-06-30 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759285, 'End_Lon': -73.976578, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770388, 'Start_Lon': -73.961958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-30 07:37:00', 'Trip_Pickup_DateTime': '2009-06-30 07:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749647, 'End_Lon': -73.972512, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773445, 'Start_Lon': -73.955288, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-11 09:42:00', 'Trip_Pickup_DateTime': '2009-06-11 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770604, 'End_Lon': -73.981695, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75353, 'Start_Lon': -73.98851, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-25 20:49:01', 'Trip_Pickup_DateTime': '2009-06-25 20:42:00', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.777133, 'End_Lon': -73.94993, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755908, 'Start_Lon': -73.98688, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-15 20:12:00', 'Trip_Pickup_DateTime': '2009-06-15 20:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726117, 'End_Lon': -73.983642, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728755, 'Start_Lon': -73.978677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-18 02:40:00', 'Trip_Pickup_DateTime': '2009-06-18 02:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726483, 'End_Lon': -74.005388, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722115, 'Start_Lon': -73.997818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 01:25:00', 'Trip_Pickup_DateTime': '2009-06-18 01:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730998, 'End_Lon': -73.979695, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75429, 'Start_Lon': -73.985282, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-18 00:26:00', 'Trip_Pickup_DateTime': '2009-06-18 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762782, 'End_Lon': -73.979132, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757915, 'Start_Lon': -73.989278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-29 14:14:00', 'Trip_Pickup_DateTime': '2009-06-29 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704143, 'End_Lon': -74.01717, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75515, 'Start_Lon': -73.975423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.39, 'Trip_Dropoff_DateTime': '2009-06-29 15:11:00', 'Trip_Pickup_DateTime': '2009-06-29 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-11 23:24:00', 'Trip_Pickup_DateTime': '2009-06-11 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763945, 'End_Lon': -73.9605, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739383, 'Start_Lon': -73.98691, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-30 11:24:00', 'Trip_Pickup_DateTime': '2009-06-30 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747182, 'End_Lon': -73.984908, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790057, 'Start_Lon': -73.952155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-18 01:27:00', 'Trip_Pickup_DateTime': '2009-06-18 01:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758257, 'End_Lon': -73.973265, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782817, 'Start_Lon': -73.955353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-30 09:21:00', 'Trip_Pickup_DateTime': '2009-06-30 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743459, 'End_Lon': -73.972526, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.764982, 'Start_Lon': -73.961134, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-22 12:40:48', 'Trip_Pickup_DateTime': '2009-06-22 12:30:55', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.725765, 'End_Lon': -73.950722, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758275, 'Start_Lon': -73.989282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-18 00:56:00', 'Trip_Pickup_DateTime': '2009-06-18 00:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802403, 'End_Lon': -73.958722, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.802403, 'Start_Lon': -73.958722, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-29 23:13:00', 'Trip_Pickup_DateTime': '2009-06-29 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761155, 'End_Lon': -73.996577, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734615, 'Start_Lon': -73.998722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-30 21:36:00', 'Trip_Pickup_DateTime': '2009-06-30 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739225, 'End_Lon': -73.982745, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730652, 'Start_Lon': -74.002307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-29 22:22:00', 'Trip_Pickup_DateTime': '2009-06-29 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717952, 'End_Lon': -73.95, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774095, 'Start_Lon': -73.8721, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 6.75, 'Trip_Dropoff_DateTime': '2009-06-29 22:19:00', 'Trip_Pickup_DateTime': '2009-06-29 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717395, 'End_Lon': -74.015978, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72378, 'Start_Lon': -73.979022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.58, 'Trip_Dropoff_DateTime': '2009-06-11 23:22:00', 'Trip_Pickup_DateTime': '2009-06-11 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74298, 'End_Lon': -74.00599, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778605, 'Start_Lon': -73.985293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-15 20:53:00', 'Trip_Pickup_DateTime': '2009-06-15 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788425, 'End_Lon': -73.953302, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750645, 'Start_Lon': -73.99136, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-30 08:20:00', 'Trip_Pickup_DateTime': '2009-06-30 08:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778777, 'End_Lon': -73.949785, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765188, 'Start_Lon': -73.970347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-30 16:22:00', 'Trip_Pickup_DateTime': '2009-06-30 16:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.677787, 'End_Lon': -73.981875, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749792, 'Start_Lon': -73.993557, 'Tip_Amt': 3.72, 'Tolls_Amt': 0.0, 'Total_Amt': 22.32, 'Trip_Distance': 6.22, 'Trip_Dropoff_DateTime': '2009-06-30 22:24:00', 'Trip_Pickup_DateTime': '2009-06-30 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738708, 'End_Lon': -73.995825, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724845, 'Start_Lon': -73.994227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-29 22:27:00', 'Trip_Pickup_DateTime': '2009-06-29 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749597, 'End_Lon': -73.976692, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762822, 'Start_Lon': -73.967812, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-30 15:11:00', 'Trip_Pickup_DateTime': '2009-06-30 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772213, 'End_Lon': -73.962267, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760923, 'Start_Lon': -73.975262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-30 19:46:00', 'Trip_Pickup_DateTime': '2009-06-30 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737972, 'End_Lon': -73.988073, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75385, 'Start_Lon': -73.982117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-30 17:53:00', 'Trip_Pickup_DateTime': '2009-06-30 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757122, 'End_Lon': -73.977358, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751222, 'Start_Lon': -74.006903, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-30 11:23:00', 'Trip_Pickup_DateTime': '2009-06-30 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74918, 'End_Lon': -73.99218, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729598, 'Start_Lon': -73.988472, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-30 22:06:00', 'Trip_Pickup_DateTime': '2009-06-30 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781583, 'End_Lon': -73.959648, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781448, 'Start_Lon': -73.949345, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-29 10:56:00', 'Trip_Pickup_DateTime': '2009-06-29 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740282, 'End_Lon': -74.005865, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735235, 'Start_Lon': -73.98283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-12 00:09:00', 'Trip_Pickup_DateTime': '2009-06-11 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77435, 'End_Lon': -73.870728, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754297, 'Start_Lon': -73.970883, 'Tip_Amt': 4.5, 'Tolls_Amt': 4.15, 'Total_Amt': 29.15, 'Trip_Distance': 8.69, 'Trip_Dropoff_DateTime': '2009-06-29 13:53:00', 'Trip_Pickup_DateTime': '2009-06-29 13:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75361, 'End_Lon': -73.977445, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770017, 'Start_Lon': -73.984152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-15 20:16:00', 'Trip_Pickup_DateTime': '2009-06-15 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705113, 'End_Lon': -74.010162, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748407, 'Start_Lon': -74.005843, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-29 20:19:00', 'Trip_Pickup_DateTime': '2009-06-29 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.825843, 'End_Lon': -73.870923, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.821215, 'Start_Lon': -73.875962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-30 19:52:00', 'Trip_Pickup_DateTime': '2009-06-30 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758082, 'End_Lon': -73.991115, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732278, 'Start_Lon': -74.005505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-30 23:03:00', 'Trip_Pickup_DateTime': '2009-06-30 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713033, 'End_Lon': -73.985315, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714303, 'Start_Lon': -74.015318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-15 20:02:00', 'Trip_Pickup_DateTime': '2009-06-15 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68643, 'End_Lon': -73.962413, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754015, 'Start_Lon': -73.988303, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.1, 'Trip_Distance': 6.39, 'Trip_Dropoff_DateTime': '2009-06-15 20:06:00', 'Trip_Pickup_DateTime': '2009-06-15 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.618787, 'End_Lon': -73.93913, 'Fare_Amt': 30.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756693, 'Start_Lon': -73.98994, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.4, 'Trip_Distance': 13.07, 'Trip_Dropoff_DateTime': '2009-06-30 23:58:00', 'Trip_Pickup_DateTime': '2009-06-30 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762865, 'End_Lon': -73.97208, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764278, 'Start_Lon': -73.979707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-29 11:08:00', 'Trip_Pickup_DateTime': '2009-06-29 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749285, 'End_Lon': -73.992262, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742407, 'Start_Lon': -73.983612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-29 21:03:00', 'Trip_Pickup_DateTime': '2009-06-29 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758773, 'End_Lon': -73.979085, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800017, 'Start_Lon': -73.954967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-29 13:22:00', 'Trip_Pickup_DateTime': '2009-06-29 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730203, 'End_Lon': -73.99279, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742772, 'Start_Lon': -73.984562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-30 23:21:00', 'Trip_Pickup_DateTime': '2009-06-30 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753567, 'End_Lon': -73.977937, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762773, 'Start_Lon': -73.974672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-30 15:28:00', 'Trip_Pickup_DateTime': '2009-06-30 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744235, 'End_Lon': -73.992298, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751, 'Start_Lon': -74.006283, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-29 12:31:00', 'Trip_Pickup_DateTime': '2009-06-29 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767687, 'End_Lon': -73.99076, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749578, 'Start_Lon': -73.981855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-12 00:05:00', 'Trip_Pickup_DateTime': '2009-06-11 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75623, 'End_Lon': -73.978708, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736968, 'Start_Lon': -73.974263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-30 13:31:00', 'Trip_Pickup_DateTime': '2009-06-30 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752382, 'End_Lon': -73.986265, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747943, 'Start_Lon': -73.976687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-11 23:47:00', 'Trip_Pickup_DateTime': '2009-06-11 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761752, 'End_Lon': -73.987328, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738627, 'Start_Lon': -73.990292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-30 20:15:00', 'Trip_Pickup_DateTime': '2009-06-30 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743417, 'End_Lon': -73.992373, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738632, 'Start_Lon': -73.990232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-29 18:55:00', 'Trip_Pickup_DateTime': '2009-06-29 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76103, 'End_Lon': -73.979527, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736262, 'Start_Lon': -73.997655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-30 07:00:00', 'Trip_Pickup_DateTime': '2009-06-30 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762377, 'End_Lon': -73.971888, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75069, 'Start_Lon': -73.974135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-11 19:03:00', 'Trip_Pickup_DateTime': '2009-06-11 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751187, 'End_Lon': -73.991197, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752853, 'Start_Lon': -73.973282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-11 23:32:00', 'Trip_Pickup_DateTime': '2009-06-11 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717318, 'End_Lon': -74.003175, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752185, 'Start_Lon': -73.990217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-29 17:32:00', 'Trip_Pickup_DateTime': '2009-06-29 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645132, 'End_Lon': -73.77659, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.652833, 'Start_Lon': -73.78675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.87, 'Trip_Dropoff_DateTime': '2009-06-29 19:24:00', 'Trip_Pickup_DateTime': '2009-06-29 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714095, 'End_Lon': -73.989733, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754688, 'Start_Lon': -73.972513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-30 21:41:00', 'Trip_Pickup_DateTime': '2009-06-30 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73791, 'End_Lon': -73.99406, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761667, 'Start_Lon': -73.985792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-11 23:23:00', 'Trip_Pickup_DateTime': '2009-06-11 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74172, 'End_Lon': -73.997558, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755128, 'Start_Lon': -73.984183, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-11 22:42:00', 'Trip_Pickup_DateTime': '2009-06-11 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75197, 'End_Lon': -73.96942, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732677, 'Start_Lon': -73.993503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-29 18:02:00', 'Trip_Pickup_DateTime': '2009-06-29 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74854, 'End_Lon': -73.986073, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749165, 'Start_Lon': -73.990588, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-30 23:26:00', 'Trip_Pickup_DateTime': '2009-06-30 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750195, 'End_Lon': -73.995868, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74535, 'Start_Lon': -73.993933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-11 21:20:00', 'Trip_Pickup_DateTime': '2009-06-11 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773988, 'End_Lon': -73.978323, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793762, 'Start_Lon': -73.970515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-30 09:09:00', 'Trip_Pickup_DateTime': '2009-06-30 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73223, 'End_Lon': -73.984513, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748755, 'Start_Lon': -73.984377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-30 12:49:00', 'Trip_Pickup_DateTime': '2009-06-30 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779613, 'End_Lon': -73.976038, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75791, 'Start_Lon': -73.97304, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-11 22:58:00', 'Trip_Pickup_DateTime': '2009-06-11 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755828, 'End_Lon': -73.968717, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76047, 'Start_Lon': -73.931203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-29 06:18:00', 'Trip_Pickup_DateTime': '2009-06-29 06:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764552, 'End_Lon': -73.9636, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76455, 'Start_Lon': -73.964637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.06, 'Trip_Dropoff_DateTime': '2009-06-29 19:12:00', 'Trip_Pickup_DateTime': '2009-06-29 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702312, 'End_Lon': -73.984447, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75784, 'Start_Lon': -73.977807, 'Tip_Amt': 3.8, 'Tolls_Amt': 0.0, 'Total_Amt': 22.8, 'Trip_Distance': 6.94, 'Trip_Dropoff_DateTime': '2009-06-11 22:39:00', 'Trip_Pickup_DateTime': '2009-06-11 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760697, 'End_Lon': -74.002458, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763818, 'Start_Lon': -73.974603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-29 15:42:00', 'Trip_Pickup_DateTime': '2009-06-29 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778055, 'End_Lon': -73.969828, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779438, 'Start_Lon': -73.952487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-27 16:21:00', 'Trip_Pickup_DateTime': '2009-06-27 15:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764735, 'End_Lon': -73.972028, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751758, 'Start_Lon': -73.98014, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-15 17:35:00', 'Trip_Pickup_DateTime': '2009-06-15 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781915, 'End_Lon': -73.979233, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756088, 'Start_Lon': -73.996685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-11 22:15:00', 'Trip_Pickup_DateTime': '2009-06-11 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761193, 'End_Lon': -73.978522, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733165, 'Start_Lon': -73.999977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-29 18:49:00', 'Trip_Pickup_DateTime': '2009-06-29 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741753, 'End_Lon': -73.97491, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75009, 'Start_Lon': -73.991705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.31, 'Trip_Dropoff_DateTime': '2009-06-30 13:54:00', 'Trip_Pickup_DateTime': '2009-06-30 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772965, 'End_Lon': -73.956942, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768412, 'Start_Lon': -73.967963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-30 18:40:00', 'Trip_Pickup_DateTime': '2009-06-30 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76332, 'End_Lon': -73.978262, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746555, 'Start_Lon': -73.989278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-29 16:41:00', 'Trip_Pickup_DateTime': '2009-06-29 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760367, 'End_Lon': -73.985205, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746182, 'Start_Lon': -73.994288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-30 08:15:00', 'Trip_Pickup_DateTime': '2009-06-30 08:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746152, 'End_Lon': -73.891078, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746018, 'Start_Lon': -73.91249, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-30 09:11:00', 'Trip_Pickup_DateTime': '2009-06-30 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748357, 'End_Lon': -73.984663, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762187, 'Start_Lon': -73.977788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-30 11:45:00', 'Trip_Pickup_DateTime': '2009-06-30 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781183, 'End_Lon': -73.983528, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77533, 'Start_Lon': -73.982428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-30 14:58:00', 'Trip_Pickup_DateTime': '2009-06-30 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72075, 'End_Lon': -73.99707, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720262, 'Start_Lon': -73.988105, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-07-01 00:03:00', 'Trip_Pickup_DateTime': '2009-06-30 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77262, 'End_Lon': -73.951298, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774167, 'Start_Lon': -73.959435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-30 05:28:00', 'Trip_Pickup_DateTime': '2009-06-30 05:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782347, 'End_Lon': -73.98265, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782347, 'Start_Lon': -73.98265, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-30 12:21:00', 'Trip_Pickup_DateTime': '2009-06-30 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779207, 'End_Lon': -73.977017, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756845, 'Start_Lon': -73.98237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-29 19:51:00', 'Trip_Pickup_DateTime': '2009-06-29 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730477, 'End_Lon': -73.993655, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732223, 'Start_Lon': -74.000565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-08 22:32:00', 'Trip_Pickup_DateTime': '2009-06-08 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765828, 'End_Lon': -73.744957, 'Fare_Amt': 42.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75178, 'Start_Lon': -74.004795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 42.6, 'Trip_Distance': 17.77, 'Trip_Dropoff_DateTime': '2009-06-13 04:51:00', 'Trip_Pickup_DateTime': '2009-06-13 04:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76388, 'End_Lon': -73.9734, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76334, 'Start_Lon': -73.962782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-13 19:49:00', 'Trip_Pickup_DateTime': '2009-06-13 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793458, 'End_Lon': -73.941115, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770853, 'Start_Lon': -73.959692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-08 22:32:00', 'Trip_Pickup_DateTime': '2009-06-08 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761748, 'End_Lon': -73.961163, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752405, 'Start_Lon': -73.979307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-15 18:50:00', 'Trip_Pickup_DateTime': '2009-06-15 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773247, 'End_Lon': -73.982538, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74973, 'Start_Lon': -73.993443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-12 08:37:00', 'Trip_Pickup_DateTime': '2009-06-12 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755637, 'End_Lon': -73.99139, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755755, 'Start_Lon': -73.971308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-08 21:23:00', 'Trip_Pickup_DateTime': '2009-06-08 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782433, 'End_Lon': -73.97867, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761072, 'Start_Lon': -73.990838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-10 14:39:00', 'Trip_Pickup_DateTime': '2009-06-10 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737432, 'End_Lon': -73.993082, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733087, 'Start_Lon': -74.006332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-08 20:47:00', 'Trip_Pickup_DateTime': '2009-06-08 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729395, 'End_Lon': -74.0016, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71933, 'Start_Lon': -74.008733, 'Tip_Amt': 12.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.5, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-11 19:55:00', 'Trip_Pickup_DateTime': '2009-06-11 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739668, 'End_Lon': -74.006299, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718951, 'Start_Lon': -73.985111, 'Tip_Amt': 2.38, 'Tolls_Amt': 0.0, 'Total_Amt': 13.28, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-03 17:34:30', 'Trip_Pickup_DateTime': '2009-06-03 17:17:43', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.781178, 'End_Lon': -73.954729, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.757083, 'Start_Lon': -73.975676, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-01 16:01:23', 'Trip_Pickup_DateTime': '2009-06-01 15:52:13', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.730899, 'End_Lon': -73.99555, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.723365, 'Start_Lon': -74.002788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-22 01:37:19', 'Trip_Pickup_DateTime': '2009-06-22 01:32:57', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.753683, 'End_Lon': -73.992603, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731485, 'Start_Lon': -74.001132, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-29 00:03:00', 'Trip_Pickup_DateTime': '2009-06-28 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730518, 'End_Lon': -73.983108, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731105, 'Start_Lon': -74.001288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-25 00:22:00', 'Trip_Pickup_DateTime': '2009-06-25 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761323, 'End_Lon': -73.99945, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74836, 'Start_Lon': -73.988795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-24 21:05:00', 'Trip_Pickup_DateTime': '2009-06-24 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781042, 'End_Lon': -73.956972, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790168, 'Start_Lon': -73.954093, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-22 11:27:00', 'Trip_Pickup_DateTime': '2009-06-22 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772033, 'End_Lon': -73.98216, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759352, 'Start_Lon': -73.984145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-23 18:46:00', 'Trip_Pickup_DateTime': '2009-06-23 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761438, 'End_Lon': -73.976368, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759902, 'Start_Lon': -73.987818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-23 08:59:00', 'Trip_Pickup_DateTime': '2009-06-23 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802125, 'End_Lon': -73.950702, 'Fare_Amt': 2.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802125, 'Start_Lon': -73.950702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-22 13:43:00', 'Trip_Pickup_DateTime': '2009-06-22 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718515, 'End_Lon': -74.000393, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719698, 'Start_Lon': -73.986975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-27 03:35:00', 'Trip_Pickup_DateTime': '2009-06-27 03:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763827, 'End_Lon': -73.958892, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775732, 'Start_Lon': -73.982593, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-22 19:54:00', 'Trip_Pickup_DateTime': '2009-06-22 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755567, 'End_Lon': -73.975867, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733277, 'Start_Lon': -74.002545, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-23 09:27:00', 'Trip_Pickup_DateTime': '2009-06-23 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745925, 'End_Lon': -73.984583, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739738, 'Start_Lon': -74.006445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-27 02:41:00', 'Trip_Pickup_DateTime': '2009-06-27 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746368, 'End_Lon': -74.000927, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732148, 'Start_Lon': -73.984387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-27 23:28:00', 'Trip_Pickup_DateTime': '2009-06-27 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.82522, 'End_Lon': -73.951545, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.808065, 'Start_Lon': -73.963628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-22 22:43:00', 'Trip_Pickup_DateTime': '2009-06-22 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768622, 'End_Lon': -73.962008, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773565, 'Start_Lon': -73.977987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-22 12:32:00', 'Trip_Pickup_DateTime': '2009-06-22 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744177, 'End_Lon': -74.006455, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729262, 'Start_Lon': -73.98739, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-27 00:00:00', 'Trip_Pickup_DateTime': '2009-06-26 23:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755663, 'End_Lon': -73.98369, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746448, 'Start_Lon': -73.990253, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-22 14:29:00', 'Trip_Pickup_DateTime': '2009-06-22 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760198, 'End_Lon': -73.991238, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753612, 'Start_Lon': -73.987475, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-10 21:34:00', 'Trip_Pickup_DateTime': '2009-06-10 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752573, 'End_Lon': -73.97811, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743822, 'Start_Lon': -73.985985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-28 10:55:00', 'Trip_Pickup_DateTime': '2009-06-28 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74545, 'End_Lon': -73.97716, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761227, 'Start_Lon': -73.971412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-10 20:27:00', 'Trip_Pickup_DateTime': '2009-06-10 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734537, 'End_Lon': -73.978612, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755877, 'Start_Lon': -73.991247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-14 08:18:00', 'Trip_Pickup_DateTime': '2009-06-14 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752465, 'End_Lon': -73.975763, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768012, 'Start_Lon': -73.964052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-10 20:54:00', 'Trip_Pickup_DateTime': '2009-06-10 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771117, 'End_Lon': -73.983037, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760775, 'Start_Lon': -73.980573, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-14 14:29:00', 'Trip_Pickup_DateTime': '2009-06-14 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.700053, 'End_Lon': -73.991885, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721613, 'Start_Lon': -73.983872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-14 01:00:00', 'Trip_Pickup_DateTime': '2009-06-14 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725118, 'End_Lon': -73.995847, 'Fare_Amt': 16.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790292, 'Start_Lon': -73.977017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.85, 'Trip_Dropoff_DateTime': '2009-06-28 12:04:00', 'Trip_Pickup_DateTime': '2009-06-28 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766, 'End_Lon': -73.961493, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777742, 'Start_Lon': -73.958928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-27 15:23:00', 'Trip_Pickup_DateTime': '2009-06-27 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754652, 'End_Lon': -73.973307, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782582, 'Start_Lon': -73.980702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-25 00:08:00', 'Trip_Pickup_DateTime': '2009-06-24 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728245, 'End_Lon': -73.979335, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735893, 'Start_Lon': -73.997403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-27 17:56:00', 'Trip_Pickup_DateTime': '2009-06-27 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745098, 'End_Lon': -73.987915, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760498, 'Start_Lon': -73.973458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-14 09:43:00', 'Trip_Pickup_DateTime': '2009-06-14 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770957, 'End_Lon': -73.980543, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763477, 'Start_Lon': -73.977802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-28 18:59:00', 'Trip_Pickup_DateTime': '2009-06-28 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735472, 'End_Lon': -73.992193, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751233, 'Start_Lon': -73.99404, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-25 21:34:00', 'Trip_Pickup_DateTime': '2009-06-25 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740115, 'End_Lon': -73.989187, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773775, 'Start_Lon': -73.870938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 9.14, 'Trip_Dropoff_DateTime': '2009-06-27 14:56:00', 'Trip_Pickup_DateTime': '2009-06-27 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777033, 'End_Lon': -73.946405, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802825, 'Start_Lon': -73.967955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-28 10:06:00', 'Trip_Pickup_DateTime': '2009-06-28 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753998, 'End_Lon': -73.99797, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76186, 'Start_Lon': -73.99289, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-25 11:03:00', 'Trip_Pickup_DateTime': '2009-06-25 10:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.671238, 'End_Lon': -73.980077, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702488, 'Start_Lon': -74.012712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.2, 'Trip_Dropoff_DateTime': '2009-06-26 21:52:00', 'Trip_Pickup_DateTime': '2009-06-26 21:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723345, 'End_Lon': -73.983012, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728345, 'Start_Lon': -73.994527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-26 22:24:00', 'Trip_Pickup_DateTime': '2009-06-26 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711045, 'End_Lon': -73.963483, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75345, 'Start_Lon': -73.977578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.0, 'Trip_Dropoff_DateTime': '2009-06-26 22:28:00', 'Trip_Pickup_DateTime': '2009-06-26 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72141, 'End_Lon': -74.001933, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706725, 'Start_Lon': -74.00781, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-28 05:06:00', 'Trip_Pickup_DateTime': '2009-06-28 05:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766013, 'End_Lon': -73.979632, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764522, 'Start_Lon': -73.984878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-27 13:59:00', 'Trip_Pickup_DateTime': '2009-06-27 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719978, 'End_Lon': -74.008105, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728425, 'Start_Lon': -74.002978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-14 08:15:00', 'Trip_Pickup_DateTime': '2009-06-14 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737553, 'End_Lon': -74.000398, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735777, 'Start_Lon': -73.995282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-26 23:16:00', 'Trip_Pickup_DateTime': '2009-06-26 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75561, 'End_Lon': -73.977927, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764257, 'Start_Lon': -73.973217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-29 15:09:00', 'Trip_Pickup_DateTime': '2009-06-29 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734522, 'End_Lon': -73.983262, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.700877, 'Start_Lon': -73.987807, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-26 11:01:00', 'Trip_Pickup_DateTime': '2009-06-26 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738757, 'End_Lon': -74.005313, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734828, 'Start_Lon': -73.989927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-23 09:45:00', 'Trip_Pickup_DateTime': '2009-06-23 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714652, 'End_Lon': -73.984282, 'Fare_Amt': 7.7, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72505, 'Start_Lon': -74.001813, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-25 22:12:00', 'Trip_Pickup_DateTime': '2009-06-25 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721078, 'End_Lon': -73.987805, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764648, 'Start_Lon': -73.981703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 5.12, 'Trip_Dropoff_DateTime': '2009-06-25 21:11:00', 'Trip_Pickup_DateTime': '2009-06-25 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711857, 'End_Lon': -74.009948, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752445, 'Start_Lon': -73.978078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-19 21:13:00', 'Trip_Pickup_DateTime': '2009-06-19 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761618, 'End_Lon': -74.002172, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73638, 'Start_Lon': -73.997605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-10 19:22:00', 'Trip_Pickup_DateTime': '2009-06-10 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74372, 'End_Lon': -73.972865, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756762, 'Start_Lon': -73.969307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-24 13:33:00', 'Trip_Pickup_DateTime': '2009-06-24 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752707, 'End_Lon': -73.985782, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723657, 'Start_Lon': -74.004892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-25 11:30:00', 'Trip_Pickup_DateTime': '2009-06-25 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760905, 'End_Lon': -73.733098, 'Fare_Amt': 29.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763845, 'Start_Lon': -73.763767, 'Tip_Amt': 3.8, 'Tolls_Amt': 0.0, 'Total_Amt': 34.0, 'Trip_Distance': 10.96, 'Trip_Dropoff_DateTime': '2009-06-22 22:51:00', 'Trip_Pickup_DateTime': '2009-06-22 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644093, 'End_Lon': -73.782503, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764283, 'Start_Lon': -73.968562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 16.41, 'Trip_Dropoff_DateTime': '2009-06-25 15:45:00', 'Trip_Pickup_DateTime': '2009-06-25 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786318, 'End_Lon': -73.976082, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77711, 'Start_Lon': -73.982637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-24 10:40:00', 'Trip_Pickup_DateTime': '2009-06-24 10:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774315, 'End_Lon': -73.872642, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760185, 'Start_Lon': -73.973762, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85, 'Trip_Distance': 10.22, 'Trip_Dropoff_DateTime': '2009-06-30 14:37:00', 'Trip_Pickup_DateTime': '2009-06-30 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757717, 'End_Lon': -73.968872, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770658, 'Start_Lon': -73.956513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-23 21:40:00', 'Trip_Pickup_DateTime': '2009-06-23 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78426, 'End_Lon': -73.956277, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774642, 'Start_Lon': -73.963403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-23 10:37:00', 'Trip_Pickup_DateTime': '2009-06-23 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772117, 'End_Lon': -73.952792, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759245, 'Start_Lon': -73.970367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-24 19:45:00', 'Trip_Pickup_DateTime': '2009-06-24 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}]\n",
            "got page number 3 with 1000 records\n",
            "[{'End_Lat': 40.749565, 'End_Lon': -73.989942, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766313, 'Start_Lon': -73.98203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-23 22:18:00', 'Trip_Pickup_DateTime': '2009-06-23 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759395, 'End_Lon': -73.986705, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737287, 'Start_Lon': -73.978258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-25 11:09:00', 'Trip_Pickup_DateTime': '2009-06-25 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726345, 'End_Lon': -73.998893, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734183, 'Start_Lon': -74.00366, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-11 09:51:00', 'Trip_Pickup_DateTime': '2009-06-11 09:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748017, 'End_Lon': -73.983697, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745568, 'Start_Lon': -73.998392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-24 22:57:00', 'Trip_Pickup_DateTime': '2009-06-24 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768238, 'End_Lon': -73.98529, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778168, 'Start_Lon': -73.962807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-24 14:48:00', 'Trip_Pickup_DateTime': '2009-06-24 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.69546, 'End_Lon': -73.996668, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711073, 'Start_Lon': -74.008913, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-13 21:05:00', 'Trip_Pickup_DateTime': '2009-06-13 20:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711665, 'End_Lon': -73.957427, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729927, 'Start_Lon': -73.989512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-23 22:24:00', 'Trip_Pickup_DateTime': '2009-06-23 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751197, 'End_Lon': -73.97822, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747862, 'Start_Lon': -73.973072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-25 14:49:00', 'Trip_Pickup_DateTime': '2009-06-25 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70951, 'End_Lon': -74.015665, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76165, 'Start_Lon': -73.979862, 'Tip_Amt': 6.97, 'Tolls_Amt': 0.0, 'Total_Amt': 34.87, 'Trip_Distance': 5.44, 'Trip_Dropoff_DateTime': '2009-06-24 19:03:00', 'Trip_Pickup_DateTime': '2009-06-24 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776958, 'End_Lon': -73.94988, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785893, 'Start_Lon': -73.951107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-30 10:18:00', 'Trip_Pickup_DateTime': '2009-06-30 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772242, 'End_Lon': -73.954455, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753425, 'Start_Lon': -73.97231, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-24 19:23:00', 'Trip_Pickup_DateTime': '2009-06-24 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737537, 'End_Lon': -73.992678, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742692, 'Start_Lon': -73.993327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-23 11:05:00', 'Trip_Pickup_DateTime': '2009-06-23 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726485, 'End_Lon': -73.999795, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740987, 'Start_Lon': -73.985718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-24 19:48:00', 'Trip_Pickup_DateTime': '2009-06-24 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751217, 'End_Lon': -73.979323, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763688, 'Start_Lon': -73.96924, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-23 18:23:00', 'Trip_Pickup_DateTime': '2009-06-23 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757132, 'End_Lon': -73.98789, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734647, 'Start_Lon': -73.996678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-23 21:47:00', 'Trip_Pickup_DateTime': '2009-06-23 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730517, 'End_Lon': -73.993657, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76541, 'Start_Lon': -73.980943, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-25 00:30:00', 'Trip_Pickup_DateTime': '2009-06-25 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752747, 'End_Lon': -73.994317, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745485, 'Start_Lon': -73.994898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-25 00:28:00', 'Trip_Pickup_DateTime': '2009-06-25 00:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751585, 'End_Lon': -73.990375, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759505, 'Start_Lon': -73.984752, 'Tip_Amt': 1.05, 'Tolls_Amt': 0.0, 'Total_Amt': 5.15, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-14 11:44:00', 'Trip_Pickup_DateTime': '2009-06-14 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729665, 'End_Lon': -73.986798, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740865, 'Start_Lon': -74.005573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-29 19:24:00', 'Trip_Pickup_DateTime': '2009-06-29 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74363, 'End_Lon': -73.979565, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717085, 'Start_Lon': -74.006045, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-24 22:14:00', 'Trip_Pickup_DateTime': '2009-06-24 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759215, 'End_Lon': -73.975753, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74463, 'Start_Lon': -73.984852, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-24 12:17:00', 'Trip_Pickup_DateTime': '2009-06-24 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704917, 'End_Lon': -74.01692, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727267, 'Start_Lon': -74.000547, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-23 09:45:00', 'Trip_Pickup_DateTime': '2009-06-23 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76045, 'End_Lon': -73.982813, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724333, 'Start_Lon': -73.998008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-22 13:32:00', 'Trip_Pickup_DateTime': '2009-06-22 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758853, 'End_Lon': -73.990453, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750808, 'Start_Lon': -74.00202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-11 03:57:00', 'Trip_Pickup_DateTime': '2009-06-11 03:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738252, 'End_Lon': -73.957533, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738932, 'Start_Lon': -73.960083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-30 22:44:00', 'Trip_Pickup_DateTime': '2009-06-30 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.712725, 'End_Lon': -73.989523, 'Fare_Amt': 12.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747888, 'Start_Lon': -74.004312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-11 01:45:00', 'Trip_Pickup_DateTime': '2009-06-11 01:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760653, 'End_Lon': -73.984868, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813917, 'Start_Lon': -73.936802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 5.38, 'Trip_Dropoff_DateTime': '2009-06-22 16:14:00', 'Trip_Pickup_DateTime': '2009-06-22 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724183, 'End_Lon': -73.978792, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798557, 'Start_Lon': -73.969098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 6.48, 'Trip_Dropoff_DateTime': '2009-06-13 23:52:00', 'Trip_Pickup_DateTime': '2009-06-13 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77772, 'End_Lon': -73.951508, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769263, 'Start_Lon': -73.958947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-29 12:05:00', 'Trip_Pickup_DateTime': '2009-06-29 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750832, 'End_Lon': -73.975997, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746017, 'Start_Lon': -75.233332, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-30 08:16:00', 'Trip_Pickup_DateTime': '2009-06-30 08:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774117, 'End_Lon': -73.870967, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77775, 'Start_Lon': -73.955543, 'Tip_Amt': 4.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.85, 'Trip_Distance': 8.15, 'Trip_Dropoff_DateTime': '2009-06-22 19:39:00', 'Trip_Pickup_DateTime': '2009-06-22 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784968, 'End_Lon': -73.947923, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78324, 'Start_Lon': -73.952252, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-22 22:15:00', 'Trip_Pickup_DateTime': '2009-06-22 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763995, 'End_Lon': -73.97163, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748368, 'Start_Lon': -73.97854, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-29 13:33:00', 'Trip_Pickup_DateTime': '2009-06-29 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781607, 'End_Lon': -73.952555, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7598, 'Start_Lon': -73.97196, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-22 19:52:00', 'Trip_Pickup_DateTime': '2009-06-22 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76998, 'End_Lon': -73.961095, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757383, 'Start_Lon': -73.981717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-30 21:45:00', 'Trip_Pickup_DateTime': '2009-06-30 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721813, 'End_Lon': -73.989205, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721813, 'Start_Lon': -73.989205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-22 18:37:00', 'Trip_Pickup_DateTime': '2009-06-22 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.824078, 'End_Lon': -73.9449, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758715, 'Start_Lon': -73.988733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.12, 'Trip_Dropoff_DateTime': '2009-06-29 23:01:00', 'Trip_Pickup_DateTime': '2009-06-29 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728652, 'End_Lon': -73.981623, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739442, 'Start_Lon': -73.979795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-29 11:09:00', 'Trip_Pickup_DateTime': '2009-06-29 11:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756182, 'End_Lon': -73.971045, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753133, 'Start_Lon': -73.985948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-22 11:38:00', 'Trip_Pickup_DateTime': '2009-06-22 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736948, 'End_Lon': -73.996122, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72925, 'Start_Lon': -73.978087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-30 20:08:00', 'Trip_Pickup_DateTime': '2009-06-30 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78687, 'End_Lon': -73.952798, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795052, 'Start_Lon': -73.971583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-30 15:48:00', 'Trip_Pickup_DateTime': '2009-06-30 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798268, 'End_Lon': -73.948087, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775752, 'Start_Lon': -73.956457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-22 19:46:00', 'Trip_Pickup_DateTime': '2009-06-22 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72336, 'End_Lon': -73.995807, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74764, 'Start_Lon': -73.974087, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-30 19:38:00', 'Trip_Pickup_DateTime': '2009-06-30 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803503, 'End_Lon': -73.957932, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71766, 'Start_Lon': -73.999505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.4, 'Trip_Distance': 9.65, 'Trip_Dropoff_DateTime': '2009-06-22 21:11:00', 'Trip_Pickup_DateTime': '2009-06-22 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7604, 'End_Lon': -73.971445, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721422, 'Start_Lon': -74.00025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-14 15:05:00', 'Trip_Pickup_DateTime': '2009-06-14 14:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78363, 'End_Lon': -73.953157, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799558, 'Start_Lon': -73.969775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-24 15:21:00', 'Trip_Pickup_DateTime': '2009-06-24 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738185, 'End_Lon': -73.994562, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776817, 'Start_Lon': -73.979162, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-10 18:55:00', 'Trip_Pickup_DateTime': '2009-06-10 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757795, 'End_Lon': -73.982537, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741813, 'Start_Lon': -73.981538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-25 13:01:00', 'Trip_Pickup_DateTime': '2009-06-25 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737408, 'End_Lon': -73.979638, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747377, 'Start_Lon': -73.99215, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-22 22:47:00', 'Trip_Pickup_DateTime': '2009-06-22 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784627, 'End_Lon': -73.957902, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770538, 'Start_Lon': -73.966523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-22 14:52:00', 'Trip_Pickup_DateTime': '2009-06-22 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741922, 'End_Lon': -73.972457, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762437, 'Start_Lon': -73.997723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 8.99, 'Trip_Dropoff_DateTime': '2009-06-14 11:14:00', 'Trip_Pickup_DateTime': '2009-06-14 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752928, 'End_Lon': -73.97565, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775232, 'Start_Lon': -73.984352, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-23 08:09:00', 'Trip_Pickup_DateTime': '2009-06-23 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76111, 'End_Lon': -73.968733, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743177, 'Start_Lon': -73.984567, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-17 21:53:00', 'Trip_Pickup_DateTime': '2009-06-17 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746283, 'End_Lon': -73.993878, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742118, 'Start_Lon': -73.986495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-28 11:52:00', 'Trip_Pickup_DateTime': '2009-06-28 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.617115, 'End_Lon': -74.036728, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75958, 'Start_Lon': -73.991817, 'Tip_Amt': 6.68, 'Tolls_Amt': 0.0, 'Total_Amt': 40.08, 'Trip_Distance': 14.31, 'Trip_Dropoff_DateTime': '2009-06-24 04:34:00', 'Trip_Pickup_DateTime': '2009-06-24 04:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.671712, 'End_Lon': -73.97768, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752018, 'Start_Lon': -73.990948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.1, 'Trip_Dropoff_DateTime': '2009-06-23 01:34:00', 'Trip_Pickup_DateTime': '2009-06-23 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.801408, 'End_Lon': -73.96869, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759413, 'Start_Lon': -73.992283, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.82, 'Trip_Dropoff_DateTime': '2009-06-27 21:49:00', 'Trip_Pickup_DateTime': '2009-06-27 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720012, 'End_Lon': -74.009803, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732092, 'Start_Lon': -73.987957, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-24 12:34:00', 'Trip_Pickup_DateTime': '2009-06-24 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73249, 'End_Lon': -73.991155, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754232, 'Start_Lon': -73.98695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-22 15:03:00', 'Trip_Pickup_DateTime': '2009-06-22 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774252, 'End_Lon': -73.871755, 'Fare_Amt': 29.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730962, 'Start_Lon': -73.990405, 'Tip_Amt': 7.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.45, 'Trip_Distance': 9.76, 'Trip_Dropoff_DateTime': '2009-06-24 18:34:00', 'Trip_Pickup_DateTime': '2009-06-24 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.82545, 'End_Lon': -73.943632, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788222, 'Start_Lon': -73.967225, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-15 21:47:00', 'Trip_Pickup_DateTime': '2009-06-15 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772308, 'End_Lon': -73.945832, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773192, 'Start_Lon': -73.979103, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-27 23:15:00', 'Trip_Pickup_DateTime': '2009-06-27 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756938, 'End_Lon': -73.988128, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764203, 'Start_Lon': -73.981172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-27 16:58:00', 'Trip_Pickup_DateTime': '2009-06-27 16:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704483, 'End_Lon': -74.009297, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704445, 'Start_Lon': -74.009423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 00:15:00', 'Trip_Pickup_DateTime': '2009-06-24 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780092, 'End_Lon': -73.960788, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733938, 'Start_Lon': -73.990287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.75, 'Trip_Dropoff_DateTime': '2009-06-27 23:37:00', 'Trip_Pickup_DateTime': '2009-06-27 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741662, 'End_Lon': -73.936217, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746402, 'Start_Lon': -73.943898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-24 08:44:00', 'Trip_Pickup_DateTime': '2009-06-24 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746675, 'End_Lon': -73.97231, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737123, 'Start_Lon': -73.988522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-15 21:45:00', 'Trip_Pickup_DateTime': '2009-06-15 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786337, 'End_Lon': -73.953927, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733238, 'Start_Lon': -74.006251, 'Tip_Amt': 4.55, 'Tolls_Amt': 0.0, 'Total_Amt': 22.25, 'Trip_Distance': 6.0, 'Trip_Dropoff_DateTime': '2009-06-16 22:25:13', 'Trip_Pickup_DateTime': '2009-06-16 21:58:55', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.71354, 'End_Lon': -73.843275, 'Fare_Amt': 26.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729125, 'Start_Lon': -73.998142, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.55, 'Trip_Distance': 10.69, 'Trip_Dropoff_DateTime': '2009-06-15 21:42:00', 'Trip_Pickup_DateTime': '2009-06-15 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775282, 'End_Lon': -73.97179, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767875, 'Start_Lon': -73.969518, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-25 21:41:00', 'Trip_Pickup_DateTime': '2009-06-25 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779575, 'End_Lon': -73.953542, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743375, 'Start_Lon': -73.979752, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-15 21:55:00', 'Trip_Pickup_DateTime': '2009-06-15 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707452, 'End_Lon': -74.008817, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727802, 'Start_Lon': -73.988248, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 3.67, 'Trip_Dropoff_DateTime': '2009-06-28 00:01:00', 'Trip_Pickup_DateTime': '2009-06-27 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758995, 'End_Lon': -73.963208, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76975, 'Start_Lon': -73.95322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-10 19:50:00', 'Trip_Pickup_DateTime': '2009-06-10 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759165, 'End_Lon': -73.986263, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759165, 'Start_Lon': -73.986263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-25 19:37:00', 'Trip_Pickup_DateTime': '2009-06-25 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645635, 'End_Lon': -73.776305, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75005, 'Start_Lon': -73.96927, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.92, 'Trip_Dropoff_DateTime': '2009-06-29 10:37:00', 'Trip_Pickup_DateTime': '2009-06-29 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759392, 'End_Lon': -73.973138, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75052, 'Start_Lon': -73.978672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-23 13:51:00', 'Trip_Pickup_DateTime': '2009-06-23 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759077, 'End_Lon': -73.973947, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760418, 'Start_Lon': -73.987202, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-23 08:06:00', 'Trip_Pickup_DateTime': '2009-06-23 07:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725308, 'End_Lon': -73.992317, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727043, 'Start_Lon': -73.985852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-24 15:31:00', 'Trip_Pickup_DateTime': '2009-06-24 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799563, 'End_Lon': -73.936017, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72658, 'Start_Lon': -73.994388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 6.2, 'Trip_Dropoff_DateTime': '2009-06-14 01:45:00', 'Trip_Pickup_DateTime': '2009-06-14 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745865, 'End_Lon': -73.994875, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758455, 'Start_Lon': -73.972915, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-25 15:41:00', 'Trip_Pickup_DateTime': '2009-06-25 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745958, 'End_Lon': -73.988115, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772458, 'Start_Lon': -73.95584, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-22 21:47:00', 'Trip_Pickup_DateTime': '2009-06-22 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756245, 'End_Lon': -73.997268, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757013, 'Start_Lon': -73.963607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-24 18:11:00', 'Trip_Pickup_DateTime': '2009-06-24 17:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760615, 'End_Lon': -74.002743, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.795932, 'Start_Lon': -73.97268, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-30 17:55:00', 'Trip_Pickup_DateTime': '2009-06-30 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763353, 'End_Lon': -73.959072, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766078, 'Start_Lon': -73.981408, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 7.75, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-15 22:03:00', 'Trip_Pickup_DateTime': '2009-06-15 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756578, 'End_Lon': -73.974595, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77672, 'Start_Lon': -73.955498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-24 08:34:00', 'Trip_Pickup_DateTime': '2009-06-24 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718902, 'End_Lon': -74.01083, 'Fare_Amt': 13.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74831, 'Start_Lon': -74.003732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-23 22:16:00', 'Trip_Pickup_DateTime': '2009-06-23 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774845, 'End_Lon': -73.982063, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761722, 'Start_Lon': -73.973243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-25 15:33:00', 'Trip_Pickup_DateTime': '2009-06-25 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745865, 'End_Lon': -73.97823, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760758, 'Start_Lon': -73.961072, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-23 21:02:00', 'Trip_Pickup_DateTime': '2009-06-23 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760385, 'End_Lon': -73.987678, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648592, 'Start_Lon': -73.783307, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.83, 'Trip_Dropoff_DateTime': '2009-06-25 17:58:00', 'Trip_Pickup_DateTime': '2009-06-25 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.685948, 'End_Lon': -73.962282, 'Fare_Amt': 24.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740275, 'Start_Lon': -73.986457, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.4, 'Trip_Distance': 8.86, 'Trip_Dropoff_DateTime': '2009-06-23 23:48:00', 'Trip_Pickup_DateTime': '2009-06-23 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71561, 'End_Lon': -74.002645, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751492, 'Start_Lon': -73.97881, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-23 13:31:00', 'Trip_Pickup_DateTime': '2009-06-23 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76305, 'End_Lon': -73.967705, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744235, 'Start_Lon': -73.996722, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-18 07:16:00', 'Trip_Pickup_DateTime': '2009-06-18 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728533, 'End_Lon': -74.00471, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722158, 'Start_Lon': -73.988777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-23 22:47:00', 'Trip_Pickup_DateTime': '2009-06-23 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737105, 'End_Lon': -73.981055, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741237, 'Start_Lon': -74.001338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-23 19:59:00', 'Trip_Pickup_DateTime': '2009-06-23 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725105, 'End_Lon': -73.999302, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729157, 'Start_Lon': -73.99233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-10 17:48:00', 'Trip_Pickup_DateTime': '2009-06-10 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751177, 'End_Lon': -73.990588, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753547, 'Start_Lon': -73.977958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-24 16:19:00', 'Trip_Pickup_DateTime': '2009-06-24 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74915, 'End_Lon': -73.992267, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717405, 'Start_Lon': -73.995257, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-23 21:29:00', 'Trip_Pickup_DateTime': '2009-06-23 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715045, 'End_Lon': -73.917837, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715687, 'Start_Lon': -73.918618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-26 10:18:00', 'Trip_Pickup_DateTime': '2009-06-26 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797473, 'End_Lon': -73.972423, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781715, 'Start_Lon': -73.985127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-23 20:06:00', 'Trip_Pickup_DateTime': '2009-06-23 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711363, 'End_Lon': -74.017065, 'Fare_Amt': 6.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716322, 'Start_Lon': -74.009218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-26 11:20:00', 'Trip_Pickup_DateTime': '2009-06-26 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740335, 'End_Lon': -74.008062, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730065, 'Start_Lon': -73.97935, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-25 19:58:00', 'Trip_Pickup_DateTime': '2009-06-25 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743227, 'End_Lon': -73.988263, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781058, 'Start_Lon': -73.979902, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 12.15, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-25 10:33:00', 'Trip_Pickup_DateTime': '2009-06-25 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723793, 'End_Lon': -73.991302, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753252, 'Start_Lon': -73.980787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-26 14:50:00', 'Trip_Pickup_DateTime': '2009-06-26 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741957, 'End_Lon': -74.004607, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762402, 'Start_Lon': -73.974123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-10 20:05:00', 'Trip_Pickup_DateTime': '2009-06-10 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733397, 'End_Lon': -74.002705, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745672, 'Start_Lon': -73.990547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-14 01:15:00', 'Trip_Pickup_DateTime': '2009-06-14 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762022, 'End_Lon': -73.979455, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751072, 'Start_Lon': -73.987065, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-24 13:05:00', 'Trip_Pickup_DateTime': '2009-06-24 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707278, 'End_Lon': -73.954813, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717698, 'Start_Lon': -74.005775, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-10 20:22:00', 'Trip_Pickup_DateTime': '2009-06-10 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764673, 'End_Lon': -73.977088, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755772, 'Start_Lon': -73.975558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-24 07:55:00', 'Trip_Pickup_DateTime': '2009-06-24 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766213, 'End_Lon': -73.981315, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.646737, 'Start_Lon': -73.789865, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 55.0, 'Trip_Distance': 17.53, 'Trip_Dropoff_DateTime': '2009-06-14 20:56:00', 'Trip_Pickup_DateTime': '2009-06-14 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754902, 'End_Lon': -73.974282, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75856, 'Start_Lon': -73.987618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-24 23:21:00', 'Trip_Pickup_DateTime': '2009-06-24 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707097, 'End_Lon': -74.004648, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720662, 'Start_Lon': -74.00027, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-24 09:13:00', 'Trip_Pickup_DateTime': '2009-06-24 09:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752452, 'End_Lon': -73.994488, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758438, 'Start_Lon': -73.992722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-25 19:29:00', 'Trip_Pickup_DateTime': '2009-06-25 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791982, 'End_Lon': -73.971312, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765947, 'Start_Lon': -73.980037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-26 17:43:00', 'Trip_Pickup_DateTime': '2009-06-26 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734458, 'End_Lon': -73.995478, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73644, 'Start_Lon': -73.988803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-26 23:28:00', 'Trip_Pickup_DateTime': '2009-06-26 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786177, 'End_Lon': -73.971638, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78301, 'Start_Lon': -73.948195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-26 16:45:00', 'Trip_Pickup_DateTime': '2009-06-26 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739698, 'End_Lon': -73.995363, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731068, 'Start_Lon': -73.990348, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-24 15:44:00', 'Trip_Pickup_DateTime': '2009-06-24 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716327, 'End_Lon': -74.002767, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744052, 'Start_Lon': -73.986505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-26 11:47:00', 'Trip_Pickup_DateTime': '2009-06-26 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719077, 'End_Lon': -73.990608, 'Fare_Amt': 39.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773702, 'Start_Lon': -73.870938, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 43.45, 'Trip_Distance': 14.86, 'Trip_Dropoff_DateTime': '2009-06-26 10:26:00', 'Trip_Pickup_DateTime': '2009-06-26 09:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748768, 'End_Lon': -73.997837, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756297, 'Start_Lon': -73.983702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-27 13:28:00', 'Trip_Pickup_DateTime': '2009-06-27 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734907, 'End_Lon': -73.986027, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728205, 'Start_Lon': -73.9988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-24 08:38:00', 'Trip_Pickup_DateTime': '2009-06-24 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704293, 'End_Lon': -74.009348, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737932, 'Start_Lon': -73.987655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-24 15:12:00', 'Trip_Pickup_DateTime': '2009-06-24 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754338, 'End_Lon': -73.980402, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765498, 'Start_Lon': -73.971963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-23 08:02:00', 'Trip_Pickup_DateTime': '2009-06-23 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746892, 'End_Lon': -73.987027, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749685, 'Start_Lon': -73.979285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-24 09:35:00', 'Trip_Pickup_DateTime': '2009-06-24 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757003, 'End_Lon': -73.972085, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753658, 'Start_Lon': -73.97947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-24 11:30:00', 'Trip_Pickup_DateTime': '2009-06-24 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782057, 'End_Lon': -73.953507, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709082, 'Start_Lon': -74.007382, 'Tip_Amt': 4.04, 'Tolls_Amt': 0.0, 'Total_Amt': 24.24, 'Trip_Distance': 7.65, 'Trip_Dropoff_DateTime': '2009-06-24 23:15:00', 'Trip_Pickup_DateTime': '2009-06-24 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746403, 'End_Lon': -73.974852, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768108, 'Start_Lon': -73.952902, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-24 18:11:00', 'Trip_Pickup_DateTime': '2009-06-24 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.868208, 'End_Lon': -73.922808, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739865, 'Start_Lon': -74.002658, 'Tip_Amt': 5.4, 'Tolls_Amt': 0.0, 'Total_Amt': 32.4, 'Trip_Distance': 10.72, 'Trip_Dropoff_DateTime': '2009-06-14 03:06:00', 'Trip_Pickup_DateTime': '2009-06-14 02:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79381, 'End_Lon': -73.967618, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757188, 'Start_Lon': -73.971608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-10 20:59:00', 'Trip_Pickup_DateTime': '2009-06-10 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741562, 'End_Lon': -73.987487, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746535, 'Start_Lon': -73.974555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-23 19:06:00', 'Trip_Pickup_DateTime': '2009-06-23 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761252, 'End_Lon': -73.972987, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755507, 'Start_Lon': -73.981445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-24 17:48:00', 'Trip_Pickup_DateTime': '2009-06-24 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72696, 'End_Lon': -74.00013, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778605, 'Start_Lon': -73.982052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.79, 'Trip_Dropoff_DateTime': '2009-06-27 00:07:00', 'Trip_Pickup_DateTime': '2009-06-26 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759537, 'End_Lon': -73.967312, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787145, 'Start_Lon': -73.979197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-24 08:16:00', 'Trip_Pickup_DateTime': '2009-06-24 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.841, 'End_Lon': -73.949235, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.848827, 'Start_Lon': -73.932987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-15 01:01:00', 'Trip_Pickup_DateTime': '2009-06-15 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761998, 'End_Lon': -73.969737, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76849, 'Start_Lon': -73.985225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-23 07:54:00', 'Trip_Pickup_DateTime': '2009-06-23 07:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758093, 'End_Lon': -73.962505, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758097, 'Start_Lon': -73.962505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 17:04:00', 'Trip_Pickup_DateTime': '2009-06-24 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68075, 'End_Lon': -74.001087, 'Fare_Amt': 44.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64481, 'Start_Lon': -73.782023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 20.26, 'Trip_Dropoff_DateTime': '2009-06-15 00:14:00', 'Trip_Pickup_DateTime': '2009-06-14 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739367, 'End_Lon': -74.006402, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751253, 'Start_Lon': -73.939948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.14, 'Trip_Dropoff_DateTime': '2009-06-14 18:33:00', 'Trip_Pickup_DateTime': '2009-06-14 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720008, 'End_Lon': -73.98828, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750173, 'Start_Lon': -73.994453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-14 23:11:00', 'Trip_Pickup_DateTime': '2009-06-14 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75924, 'End_Lon': -73.973447, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746977, 'Start_Lon': -73.973342, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-25 08:48:00', 'Trip_Pickup_DateTime': '2009-06-25 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721592, 'End_Lon': -73.998032, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734903, 'Start_Lon': -73.998665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-24 15:14:00', 'Trip_Pickup_DateTime': '2009-06-24 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.698578, 'End_Lon': -73.991493, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722473, 'Start_Lon': -73.987317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.99, 'Trip_Dropoff_DateTime': '2009-06-27 23:11:00', 'Trip_Pickup_DateTime': '2009-06-27 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804213, 'End_Lon': -73.9368, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771608, 'Start_Lon': -73.950273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-28 10:10:00', 'Trip_Pickup_DateTime': '2009-06-28 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737982, 'End_Lon': -73.989957, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724653, 'Start_Lon': -73.994077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-10 23:55:00', 'Trip_Pickup_DateTime': '2009-06-10 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761573, 'End_Lon': -74.000012, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731808, 'Start_Lon': -73.990182, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-26 22:38:00', 'Trip_Pickup_DateTime': '2009-06-26 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756198, 'End_Lon': -73.98982, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749097, 'Start_Lon': -73.988028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-23 21:19:00', 'Trip_Pickup_DateTime': '2009-06-23 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741823, 'End_Lon': -73.98993, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752543, 'Start_Lon': -73.98192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-26 15:50:00', 'Trip_Pickup_DateTime': '2009-06-26 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71287, 'End_Lon': -74.007187, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734863, 'Start_Lon': -74.006085, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 10.65, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-14 02:49:00', 'Trip_Pickup_DateTime': '2009-06-14 02:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777783, 'End_Lon': -73.952058, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768498, 'Start_Lon': -73.963613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-23 05:09:00', 'Trip_Pickup_DateTime': '2009-06-23 05:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73749, 'End_Lon': -73.991135, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727443, 'Start_Lon': -73.993533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-25 21:17:00', 'Trip_Pickup_DateTime': '2009-06-25 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764178, 'End_Lon': -73.99229, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756743, 'Start_Lon': -73.993818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-26 19:40:00', 'Trip_Pickup_DateTime': '2009-06-26 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733457, 'End_Lon': -73.954797, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724, 'Start_Lon': -73.951103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-14 03:00:00', 'Trip_Pickup_DateTime': '2009-06-14 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752553, 'End_Lon': -73.987125, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747307, 'Start_Lon': -73.972173, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-24 08:13:00', 'Trip_Pickup_DateTime': '2009-06-24 08:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.849357, 'End_Lon': -73.938823, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763875, 'Start_Lon': -73.985248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.44, 'Trip_Dropoff_DateTime': '2009-06-26 01:44:00', 'Trip_Pickup_DateTime': '2009-06-26 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791305, 'End_Lon': -73.974072, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771805, 'Start_Lon': -73.959188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-10 17:56:00', 'Trip_Pickup_DateTime': '2009-06-10 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762708, 'End_Lon': -73.965447, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782197, 'Start_Lon': -73.948712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-24 07:23:00', 'Trip_Pickup_DateTime': '2009-06-24 07:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7654, 'End_Lon': -73.88249, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774492, 'Start_Lon': -73.884063, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-22 21:48:00', 'Trip_Pickup_DateTime': '2009-06-22 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751497, 'End_Lon': -74.003512, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76589, 'Start_Lon': -73.95734, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-26 19:44:00', 'Trip_Pickup_DateTime': '2009-06-26 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778057, 'End_Lon': -73.94841, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729873, 'Start_Lon': -73.977737, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-18 06:24:00', 'Trip_Pickup_DateTime': '2009-06-18 06:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749423, 'End_Lon': -73.975387, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748523, 'Start_Lon': -73.988448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-22 22:40:00', 'Trip_Pickup_DateTime': '2009-06-22 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762755, 'End_Lon': -73.979252, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732638, 'Start_Lon': -74.003327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-26 23:31:00', 'Trip_Pickup_DateTime': '2009-06-26 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806443, 'End_Lon': -73.950323, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803932, 'Start_Lon': -73.966765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-15 23:23:00', 'Trip_Pickup_DateTime': '2009-06-15 23:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757562, 'End_Lon': -73.968808, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76731, 'Start_Lon': -73.953628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-26 07:45:00', 'Trip_Pickup_DateTime': '2009-06-26 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76718, 'End_Lon': -73.98253, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756382, 'Start_Lon': -73.976715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-26 08:00:00', 'Trip_Pickup_DateTime': '2009-06-26 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745932, 'End_Lon': -74.005413, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709287, 'Start_Lon': -74.015588, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-18 07:46:00', 'Trip_Pickup_DateTime': '2009-06-18 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752775, 'End_Lon': -73.985532, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709805, 'Start_Lon': -74.01139, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-23 08:07:00', 'Trip_Pickup_DateTime': '2009-06-23 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723443, 'End_Lon': -74.006282, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757442, 'Start_Lon': -73.993333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-26 08:41:00', 'Trip_Pickup_DateTime': '2009-06-26 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751608, 'End_Lon': -73.97672, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73799, 'Start_Lon': -73.996308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-26 20:28:00', 'Trip_Pickup_DateTime': '2009-06-26 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727355, 'End_Lon': -74.001533, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721365, 'Start_Lon': -73.988495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-25 20:43:00', 'Trip_Pickup_DateTime': '2009-06-25 20:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767478, 'End_Lon': -73.993998, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755833, 'Start_Lon': -73.988663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-27 11:57:00', 'Trip_Pickup_DateTime': '2009-06-27 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742137, 'End_Lon': -73.980998, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750827, 'Start_Lon': -74.001712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-23 00:54:00', 'Trip_Pickup_DateTime': '2009-06-23 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7922, 'End_Lon': -73.940115, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796292, 'Start_Lon': -73.949705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-25 17:28:00', 'Trip_Pickup_DateTime': '2009-06-25 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805088, 'End_Lon': -73.938927, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785292, 'Start_Lon': -73.949222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-26 06:56:00', 'Trip_Pickup_DateTime': '2009-06-26 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719143, 'End_Lon': -73.999783, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747732, 'Start_Lon': -73.984963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-15 22:40:00', 'Trip_Pickup_DateTime': '2009-06-15 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74275, 'End_Lon': -73.992637, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7461, 'Start_Lon': -73.993812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-26 12:18:00', 'Trip_Pickup_DateTime': '2009-06-26 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714705, 'End_Lon': -73.998778, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716232, 'Start_Lon': -73.998057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-25 14:24:00', 'Trip_Pickup_DateTime': '2009-06-25 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735402, 'End_Lon': -74.001648, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757652, 'Start_Lon': -73.978925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-27 13:50:00', 'Trip_Pickup_DateTime': '2009-06-27 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76919, 'End_Lon': -73.95513, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77489, 'Start_Lon': -73.947838, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-24 20:01:00', 'Trip_Pickup_DateTime': '2009-06-24 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750967, 'End_Lon': -73.986608, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749348, 'Start_Lon': -73.988815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.74, 'Trip_Dropoff_DateTime': '2009-06-28 04:00:00', 'Trip_Pickup_DateTime': '2009-06-28 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783765, 'End_Lon': -73.983367, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769408, 'Start_Lon': -73.965407, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-25 19:53:00', 'Trip_Pickup_DateTime': '2009-06-25 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760697, 'End_Lon': -73.972437, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773035, 'Start_Lon': -73.958535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-29 06:50:00', 'Trip_Pickup_DateTime': '2009-06-29 06:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789963, 'End_Lon': -73.969757, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80212, 'Start_Lon': -73.967932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-26 08:28:00', 'Trip_Pickup_DateTime': '2009-06-26 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741122, 'End_Lon': -73.994032, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751193, 'Start_Lon': -73.990625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-22 13:51:00', 'Trip_Pickup_DateTime': '2009-06-22 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757163, 'End_Lon': -73.966288, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760283, 'Start_Lon': -73.974327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-28 15:32:00', 'Trip_Pickup_DateTime': '2009-06-28 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760993, 'End_Lon': -73.984788, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767552, 'Start_Lon': -73.970567, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-23 14:32:00', 'Trip_Pickup_DateTime': '2009-06-23 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759257, 'End_Lon': -73.973277, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755527, 'Start_Lon': -73.966295, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-26 06:39:00', 'Trip_Pickup_DateTime': '2009-06-26 06:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774142, 'End_Lon': -73.870985, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72166, 'Start_Lon': -73.993388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.5, 'Trip_Distance': 9.85, 'Trip_Dropoff_DateTime': '2009-06-14 17:54:00', 'Trip_Pickup_DateTime': '2009-06-14 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78504, 'End_Lon': -73.980627, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762962, 'Start_Lon': -73.978453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-23 18:13:00', 'Trip_Pickup_DateTime': '2009-06-23 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723292, 'End_Lon': -73.990155, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750735, 'Start_Lon': -73.988042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-10 18:15:00', 'Trip_Pickup_DateTime': '2009-06-10 18:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761923, 'End_Lon': -73.96841, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764605, 'Start_Lon': -73.973855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-26 09:10:00', 'Trip_Pickup_DateTime': '2009-06-26 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771618, 'End_Lon': -73.950282, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750632, 'Start_Lon': -73.969008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-14 10:17:00', 'Trip_Pickup_DateTime': '2009-06-14 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749622, 'End_Lon': -73.979453, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644687, 'Start_Lon': -73.782368, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.15, 'Trip_Dropoff_DateTime': '2009-06-27 17:44:00', 'Trip_Pickup_DateTime': '2009-06-27 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 5.06, 'Tolls_Amt': 0.0, 'Total_Amt': 30.36, 'Trip_Distance': 8.4, 'Trip_Dropoff_DateTime': '2009-06-25 09:03:00', 'Trip_Pickup_DateTime': '2009-06-25 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74873, 'End_Lon': -73.976775, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77922, 'Start_Lon': -73.9506, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-25 11:30:00', 'Trip_Pickup_DateTime': '2009-06-25 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786692, 'End_Lon': -73.977773, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774098, 'Start_Lon': -73.982468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-13 19:35:00', 'Trip_Pickup_DateTime': '2009-06-13 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743893, 'End_Lon': -73.99907, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72558, 'Start_Lon': -74.000462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-22 19:25:00', 'Trip_Pickup_DateTime': '2009-06-22 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769405, 'End_Lon': -73.98535, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731272, 'Start_Lon': -73.98261, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-26 02:40:00', 'Trip_Pickup_DateTime': '2009-06-26 02:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774785, 'End_Lon': -73.982227, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784273, 'Start_Lon': -73.956823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-10 17:57:00', 'Trip_Pickup_DateTime': '2009-06-10 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778123, 'End_Lon': -73.985347, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771207, 'Start_Lon': -73.984943, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.2, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-25 20:06:00', 'Trip_Pickup_DateTime': '2009-06-25 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780193, 'End_Lon': -73.953605, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763592, 'Start_Lon': -73.976953, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-25 23:14:00', 'Trip_Pickup_DateTime': '2009-06-25 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777085, 'End_Lon': -73.955072, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754268, 'Start_Lon': -73.973245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-25 14:19:00', 'Trip_Pickup_DateTime': '2009-06-25 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79119, 'End_Lon': -73.968158, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776583, 'Start_Lon': -73.96174, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-25 15:36:00', 'Trip_Pickup_DateTime': '2009-06-25 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742467, 'End_Lon': -74.004142, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768747, 'Start_Lon': -73.982245, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-24 20:32:00', 'Trip_Pickup_DateTime': '2009-06-24 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716115, 'End_Lon': -73.959508, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721685, 'Start_Lon': -73.995607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-27 23:30:00', 'Trip_Pickup_DateTime': '2009-06-27 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789762, 'End_Lon': -73.97546, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797828, 'Start_Lon': -73.969582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-22 17:21:00', 'Trip_Pickup_DateTime': '2009-06-22 17:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808615, 'End_Lon': -73.908793, 'Fare_Amt': 32.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783952, 'Start_Lon': -73.977682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.4, 'Trip_Distance': 13.67, 'Trip_Dropoff_DateTime': '2009-06-14 01:37:00', 'Trip_Pickup_DateTime': '2009-06-14 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737845, 'End_Lon': -73.976553, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782912, 'Start_Lon': -73.944228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-28 15:11:00', 'Trip_Pickup_DateTime': '2009-06-28 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789843, 'End_Lon': -73.977313, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761065, 'Start_Lon': -73.972878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-26 13:05:00', 'Trip_Pickup_DateTime': '2009-06-26 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752598, 'End_Lon': -73.989603, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7642, 'Start_Lon': -73.982685, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-25 08:06:00', 'Trip_Pickup_DateTime': '2009-06-25 08:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742528, 'End_Lon': -73.98951, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741152, 'Start_Lon': -74.001497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-25 11:40:00', 'Trip_Pickup_DateTime': '2009-06-25 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774493, 'End_Lon': -73.960877, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765173, 'Start_Lon': -73.966512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-25 15:23:00', 'Trip_Pickup_DateTime': '2009-06-25 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779733, 'End_Lon': -73.980843, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768798, 'Start_Lon': -73.982002, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-25 07:45:00', 'Trip_Pickup_DateTime': '2009-06-25 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741545, 'End_Lon': -73.99714, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768672, 'Start_Lon': -73.955355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-22 15:04:00', 'Trip_Pickup_DateTime': '2009-06-22 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749582, 'End_Lon': -73.97013, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750018, 'Start_Lon': -73.991015, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-25 01:20:00', 'Trip_Pickup_DateTime': '2009-06-25 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780614, 'End_Lon': -73.950172, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.776884, 'Start_Lon': -73.952891, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-20 03:19:09', 'Trip_Pickup_DateTime': '2009-06-20 03:15:39', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.746502, 'End_Lon': -73.97617, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780683, 'Start_Lon': -73.98148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-24 20:30:00', 'Trip_Pickup_DateTime': '2009-06-24 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711515, 'End_Lon': -74.01529, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77035, 'Start_Lon': -73.960083, 'Tip_Amt': 3.78, 'Tolls_Amt': 0.0, 'Total_Amt': 22.68, 'Trip_Distance': 7.8, 'Trip_Dropoff_DateTime': '2009-06-25 07:53:00', 'Trip_Pickup_DateTime': '2009-06-25 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754502, 'End_Lon': -73.979632, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74452, 'Start_Lon': -73.991753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-25 07:16:00', 'Trip_Pickup_DateTime': '2009-06-25 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720347, 'End_Lon': -73.989663, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704112, 'Start_Lon': -74.008477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-10 18:42:00', 'Trip_Pickup_DateTime': '2009-06-10 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701927, 'End_Lon': -74.0127, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737727, 'Start_Lon': -73.981128, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-25 09:30:00', 'Trip_Pickup_DateTime': '2009-06-25 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747267, 'End_Lon': -73.996822, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764302, 'Start_Lon': -73.986867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-14 16:15:00', 'Trip_Pickup_DateTime': '2009-06-14 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740057, 'End_Lon': -73.986667, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715662, 'Start_Lon': -74.00156, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-22 12:19:00', 'Trip_Pickup_DateTime': '2009-06-22 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796027, 'End_Lon': -73.971177, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718598, 'Start_Lon': -74.005015, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.4, 'Trip_Distance': 6.29, 'Trip_Dropoff_DateTime': '2009-06-25 22:58:00', 'Trip_Pickup_DateTime': '2009-06-25 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77143, 'End_Lon': -73.989537, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716303, 'Start_Lon': -74.016538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.41, 'Trip_Dropoff_DateTime': '2009-06-23 16:00:00', 'Trip_Pickup_DateTime': '2009-06-23 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736853, 'End_Lon': -73.993498, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734358, 'Start_Lon': -73.983458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-25 15:00:00', 'Trip_Pickup_DateTime': '2009-06-25 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77729, 'End_Lon': -73.946082, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763023, 'Start_Lon': -73.967608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-10 19:27:00', 'Trip_Pickup_DateTime': '2009-06-10 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739343, 'End_Lon': -73.984765, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778182, 'Start_Lon': -73.952605, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-24 19:47:00', 'Trip_Pickup_DateTime': '2009-06-24 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.677892, 'End_Lon': -73.972188, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722755, 'Start_Lon': -73.988403, 'Tip_Amt': 3.64, 'Tolls_Amt': 0.0, 'Total_Amt': 21.84, 'Trip_Distance': 6.02, 'Trip_Dropoff_DateTime': '2009-06-24 23:08:00', 'Trip_Pickup_DateTime': '2009-06-24 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76679, 'End_Lon': -73.986528, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774175, 'Start_Lon': -73.961505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-10 19:11:00', 'Trip_Pickup_DateTime': '2009-06-10 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.55, 'Trip_Distance': 8.28, 'Trip_Dropoff_DateTime': '2009-06-14 22:25:00', 'Trip_Pickup_DateTime': '2009-06-14 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767375, 'End_Lon': -73.970578, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780218, 'Start_Lon': -73.961553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-27 15:04:00', 'Trip_Pickup_DateTime': '2009-06-27 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756555, 'End_Lon': -73.985932, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710978, 'Start_Lon': -74.008995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-14 18:20:00', 'Trip_Pickup_DateTime': '2009-06-14 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779337, 'End_Lon': -73.977517, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76746, 'Start_Lon': -73.982168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-24 17:42:00', 'Trip_Pickup_DateTime': '2009-06-24 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716495, 'End_Lon': -73.99653, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747192, 'Start_Lon': -73.979538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-15 13:39:00', 'Trip_Pickup_DateTime': '2009-06-15 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761938, 'End_Lon': -73.97499, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778163, 'Start_Lon': -73.956725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-29 10:27:00', 'Trip_Pickup_DateTime': '2009-06-29 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774137, 'End_Lon': -73.963753, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738943, 'Start_Lon': -74.006467, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-30 21:20:00', 'Trip_Pickup_DateTime': '2009-06-30 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766387, 'End_Lon': -73.980483, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774058, 'Start_Lon': -73.87443, 'Tip_Amt': 5.38, 'Tolls_Amt': 5.0, 'Total_Amt': 37.28, 'Trip_Distance': 10.34, 'Trip_Dropoff_DateTime': '2009-06-22 11:35:00', 'Trip_Pickup_DateTime': '2009-06-22 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764093, 'End_Lon': -73.954208, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761032, 'Start_Lon': -73.994477, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-23 07:19:00', 'Trip_Pickup_DateTime': '2009-06-23 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645135, 'End_Lon': -73.776437, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771652, 'Start_Lon': -73.982675, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.71, 'Trip_Dropoff_DateTime': '2009-06-23 18:43:00', 'Trip_Pickup_DateTime': '2009-06-23 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.823917, 'End_Lon': -73.952508, 'Fare_Amt': 23.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733908, 'Start_Lon': -73.989787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 8.52, 'Trip_Dropoff_DateTime': '2009-06-15 00:37:00', 'Trip_Pickup_DateTime': '2009-06-15 00:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727845, 'End_Lon': -73.979268, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740352, 'Start_Lon': -73.981992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-28 19:50:00', 'Trip_Pickup_DateTime': '2009-06-28 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767148, 'End_Lon': -73.960333, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776137, 'Start_Lon': -73.955852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-15 20:45:00', 'Trip_Pickup_DateTime': '2009-06-15 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775632, 'End_Lon': -73.947435, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764652, 'Start_Lon': -73.970545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-23 18:47:00', 'Trip_Pickup_DateTime': '2009-06-23 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774455, 'End_Lon': -73.87229, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756923, 'Start_Lon': -73.963772, 'Tip_Amt': 6.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.9, 'Trip_Distance': 8.78, 'Trip_Dropoff_DateTime': '2009-06-23 07:33:00', 'Trip_Pickup_DateTime': '2009-06-23 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779858, 'End_Lon': -73.950207, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754302, 'Start_Lon': -73.97167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-28 00:19:00', 'Trip_Pickup_DateTime': '2009-06-28 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784053, 'End_Lon': -73.954715, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77623, 'Start_Lon': -73.96223, 'Tip_Amt': 0.4, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-30 10:13:00', 'Trip_Pickup_DateTime': '2009-06-30 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751385, 'End_Lon': -73.990562, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757268, 'Start_Lon': -73.997727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-25 08:25:00', 'Trip_Pickup_DateTime': '2009-06-25 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74561, 'End_Lon': -73.977865, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7214, 'Start_Lon': -73.987547, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-27 01:57:00', 'Trip_Pickup_DateTime': '2009-06-27 01:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711373, 'End_Lon': -74.009247, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750547, 'Start_Lon': -73.991242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-29 11:23:00', 'Trip_Pickup_DateTime': '2009-06-29 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788587, 'End_Lon': -73.97929, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774537, 'Start_Lon': -73.982312, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 6.55, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-10 13:35:00', 'Trip_Pickup_DateTime': '2009-06-10 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748995, 'End_Lon': -74.008275, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764873, 'Start_Lon': -73.960993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.94, 'Trip_Dropoff_DateTime': '2009-06-29 08:47:00', 'Trip_Pickup_DateTime': '2009-06-29 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757173, 'End_Lon': -73.969985, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769118, 'Start_Lon': -73.86274, 'Tip_Amt': 4.6, 'Tolls_Amt': 0.0, 'Total_Amt': 27.6, 'Trip_Distance': 9.13, 'Trip_Dropoff_DateTime': '2009-06-29 22:51:00', 'Trip_Pickup_DateTime': '2009-06-29 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.899467, 'End_Lon': -73.932623, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759608, 'Start_Lon': -73.9929, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 9.36, 'Trip_Dropoff_DateTime': '2009-06-24 22:45:00', 'Trip_Pickup_DateTime': '2009-06-24 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719728, 'End_Lon': -74.002558, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757927, 'Start_Lon': -73.985642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-24 10:52:00', 'Trip_Pickup_DateTime': '2009-06-24 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792502, 'End_Lon': -73.975105, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777443, 'Start_Lon': -73.98232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-27 16:23:00', 'Trip_Pickup_DateTime': '2009-06-27 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704807, 'End_Lon': -74.016758, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754602, 'Start_Lon': -73.977578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 6.01, 'Trip_Dropoff_DateTime': '2009-06-26 08:53:00', 'Trip_Pickup_DateTime': '2009-06-26 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764968, 'End_Lon': -73.973302, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743123, 'Start_Lon': -73.984323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-24 18:03:00', 'Trip_Pickup_DateTime': '2009-06-24 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720108, 'End_Lon': -74.009837, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731645, 'Start_Lon': -74.00083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-24 07:40:00', 'Trip_Pickup_DateTime': '2009-06-24 07:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769652, 'End_Lon': -73.9897, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7237, 'Start_Lon': -74.002823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-29 00:53:00', 'Trip_Pickup_DateTime': '2009-06-29 00:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74973, 'End_Lon': -73.97563, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.680143, 'Start_Lon': -73.99921, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 6.17, 'Trip_Dropoff_DateTime': '2009-06-24 07:16:00', 'Trip_Pickup_DateTime': '2009-06-24 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75345, 'End_Lon': -73.99846, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798842, 'Start_Lon': -73.959513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.08, 'Trip_Dropoff_DateTime': '2009-06-24 08:27:00', 'Trip_Pickup_DateTime': '2009-06-24 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730125, 'End_Lon': -73.986498, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752695, 'Start_Lon': -73.970553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-10 14:41:00', 'Trip_Pickup_DateTime': '2009-06-10 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761338, 'End_Lon': -73.980338, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716362, 'Start_Lon': -73.996652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 6.15, 'Trip_Dropoff_DateTime': '2009-06-24 11:08:00', 'Trip_Pickup_DateTime': '2009-06-24 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767015, 'End_Lon': -73.966705, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750805, 'Start_Lon': -73.990835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-10 14:00:00', 'Trip_Pickup_DateTime': '2009-06-10 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715838, 'End_Lon': -74.016575, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744562, 'Start_Lon': -73.991802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.83, 'Trip_Dropoff_DateTime': '2009-06-24 08:58:00', 'Trip_Pickup_DateTime': '2009-06-24 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739462, 'End_Lon': -73.991022, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75905, 'Start_Lon': -73.992245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-10 14:52:00', 'Trip_Pickup_DateTime': '2009-06-10 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763577, 'End_Lon': -73.988758, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77393, 'Start_Lon': -73.872287, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.35, 'Trip_Distance': 10.98, 'Trip_Dropoff_DateTime': '2009-06-14 21:37:00', 'Trip_Pickup_DateTime': '2009-06-14 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786363, 'End_Lon': -73.978217, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787337, 'Start_Lon': -73.954233, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-10 14:40:00', 'Trip_Pickup_DateTime': '2009-06-10 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760552, 'End_Lon': -74.002792, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718165, 'Start_Lon': -74.015145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-28 20:34:00', 'Trip_Pickup_DateTime': '2009-06-28 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735758, 'End_Lon': -73.986813, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748113, 'Start_Lon': -73.973153, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-14 01:29:00', 'Trip_Pickup_DateTime': '2009-06-14 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757337, 'End_Lon': -73.975173, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770988, 'Start_Lon': -73.982097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-14 23:01:00', 'Trip_Pickup_DateTime': '2009-06-14 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743487, 'End_Lon': -73.972965, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76926, 'Start_Lon': -73.961482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-10 14:46:00', 'Trip_Pickup_DateTime': '2009-06-10 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687277, 'End_Lon': -73.974225, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721333, 'Start_Lon': -73.983285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-24 04:49:00', 'Trip_Pickup_DateTime': '2009-06-24 04:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736245, 'End_Lon': -73.994302, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75021, 'Start_Lon': -73.990977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-28 12:08:00', 'Trip_Pickup_DateTime': '2009-06-28 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703815, 'End_Lon': -74.011147, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780003, 'Start_Lon': -73.955245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 6.58, 'Trip_Dropoff_DateTime': '2009-06-25 07:49:00', 'Trip_Pickup_DateTime': '2009-06-25 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735447, 'End_Lon': -73.979768, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702353, 'Start_Lon': -73.987465, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.71, 'Trip_Dropoff_DateTime': '2009-06-23 22:36:00', 'Trip_Pickup_DateTime': '2009-06-23 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775878, 'End_Lon': -73.983598, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761368, 'Start_Lon': -73.987303, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-24 15:47:00', 'Trip_Pickup_DateTime': '2009-06-24 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772535, 'End_Lon': -73.953263, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764208, 'Start_Lon': -73.964668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-23 20:42:00', 'Trip_Pickup_DateTime': '2009-06-23 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715003, 'End_Lon': -73.901253, 'Fare_Amt': 20.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756925, 'Start_Lon': -73.98263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.9, 'Trip_Distance': 6.65, 'Trip_Dropoff_DateTime': '2009-06-23 19:38:00', 'Trip_Pickup_DateTime': '2009-06-23 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724407, 'End_Lon': -73.986898, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7295, 'Start_Lon': -73.980752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-28 23:05:00', 'Trip_Pickup_DateTime': '2009-06-28 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709677, 'End_Lon': -74.014182, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749887, 'Start_Lon': -73.99504, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-27 18:11:00', 'Trip_Pickup_DateTime': '2009-06-27 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744848, 'End_Lon': -73.876978, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738605, 'Start_Lon': -73.875325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-27 19:53:00', 'Trip_Pickup_DateTime': '2009-06-27 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72329, 'End_Lon': -73.98953, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744418, 'Start_Lon': -74.006593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-25 01:13:00', 'Trip_Pickup_DateTime': '2009-06-25 01:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711123, 'End_Lon': -73.952295, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758013, 'Start_Lon': -73.977508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.6, 'Trip_Dropoff_DateTime': '2009-06-23 22:57:00', 'Trip_Pickup_DateTime': '2009-06-23 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767722, 'End_Lon': -73.960017, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778673, 'Start_Lon': -73.958385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-25 19:56:00', 'Trip_Pickup_DateTime': '2009-06-25 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780158, 'End_Lon': -73.952928, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77827, 'Start_Lon': -73.962805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-25 18:53:00', 'Trip_Pickup_DateTime': '2009-06-25 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734893, 'End_Lon': -74.002635, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738385, 'Start_Lon': -73.983683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-25 12:12:00', 'Trip_Pickup_DateTime': '2009-06-25 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78516, 'End_Lon': -73.980965, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788662, 'Start_Lon': -73.967025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-28 12:39:00', 'Trip_Pickup_DateTime': '2009-06-28 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805467, 'End_Lon': -73.94995, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758855, 'Start_Lon': -73.98852, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.08, 'Trip_Dropoff_DateTime': '2009-06-15 23:21:00', 'Trip_Pickup_DateTime': '2009-06-15 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722062, 'End_Lon': -73.997203, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.689333, 'Start_Lon': -73.994757, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-26 08:02:00', 'Trip_Pickup_DateTime': '2009-06-26 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76673, 'End_Lon': -73.978363, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779105, 'Start_Lon': -73.98856, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-22 15:28:00', 'Trip_Pickup_DateTime': '2009-06-22 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750997, 'End_Lon': -73.990605, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762227, 'Start_Lon': -73.989868, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-23 20:28:00', 'Trip_Pickup_DateTime': '2009-06-23 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770223, 'End_Lon': -73.984832, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769992, 'Start_Lon': -73.960995, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-27 23:51:00', 'Trip_Pickup_DateTime': '2009-06-27 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.796888, 'End_Lon': -73.97105, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739963, 'Start_Lon': -73.986988, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-15 23:26:00', 'Trip_Pickup_DateTime': '2009-06-15 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74878, 'End_Lon': -73.98854, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758365, 'Start_Lon': -73.972578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-23 13:05:00', 'Trip_Pickup_DateTime': '2009-06-23 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756177, 'End_Lon': -73.965633, 'Fare_Amt': 10.2, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756177, 'Start_Lon': -73.965633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 03:01:00', 'Trip_Pickup_DateTime': '2009-06-24 03:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75368, 'End_Lon': -73.995998, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757338, 'Start_Lon': -73.989255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-24 09:03:00', 'Trip_Pickup_DateTime': '2009-06-24 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751352, 'End_Lon': -74.006637, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709163, 'Start_Lon': -74.00199, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.3, 'Trip_Dropoff_DateTime': '2009-06-26 07:57:00', 'Trip_Pickup_DateTime': '2009-06-26 07:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782905, 'End_Lon': -73.948813, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75195, 'Start_Lon': -73.970698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-23 18:41:00', 'Trip_Pickup_DateTime': '2009-06-23 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768437, 'End_Lon': -73.862763, 'Fare_Amt': 31.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758525, 'Start_Lon': -73.985545, 'Tip_Amt': 6.26, 'Tolls_Amt': 4.15, 'Total_Amt': 42.11, 'Trip_Distance': 11.66, 'Trip_Dropoff_DateTime': '2009-06-10 15:26:00', 'Trip_Pickup_DateTime': '2009-06-10 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749277, 'End_Lon': -73.99225, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736678, 'Start_Lon': -73.997277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-24 20:45:00', 'Trip_Pickup_DateTime': '2009-06-24 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788092, 'End_Lon': -73.975847, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749143, 'Start_Lon': -73.988897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-25 00:51:00', 'Trip_Pickup_DateTime': '2009-06-25 00:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749203, 'End_Lon': -73.995657, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755258, 'Start_Lon': -73.980313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-27 12:37:00', 'Trip_Pickup_DateTime': '2009-06-27 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744565, 'End_Lon': -73.987392, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729653, 'Start_Lon': -73.998292, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-26 21:52:00', 'Trip_Pickup_DateTime': '2009-06-26 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725042, 'End_Lon': -74.001333, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727578, 'Start_Lon': -73.988427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-10 15:27:00', 'Trip_Pickup_DateTime': '2009-06-10 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763755, 'End_Lon': -73.981712, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746215, 'Start_Lon': -73.977725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-24 22:11:00', 'Trip_Pickup_DateTime': '2009-06-24 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762357, 'End_Lon': -73.968165, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785272, 'Start_Lon': -73.946395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-26 17:10:00', 'Trip_Pickup_DateTime': '2009-06-26 17:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733287, 'End_Lon': -74.000895, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75481, 'Start_Lon': -73.968825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-27 14:17:00', 'Trip_Pickup_DateTime': '2009-06-27 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753178, 'End_Lon': -73.987723, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75886, 'Start_Lon': -73.99235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-27 12:15:00', 'Trip_Pickup_DateTime': '2009-06-27 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783613, 'End_Lon': -73.97938, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759997, 'Start_Lon': -73.969715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-10 16:18:00', 'Trip_Pickup_DateTime': '2009-06-10 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.842683, 'End_Lon': -73.846038, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734348, 'Start_Lon': -73.989822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.4, 'Trip_Distance': 13.13, 'Trip_Dropoff_DateTime': '2009-06-27 02:51:00', 'Trip_Pickup_DateTime': '2009-06-27 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749683, 'End_Lon': -73.97238, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761515, 'Start_Lon': -73.968878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-23 09:06:00', 'Trip_Pickup_DateTime': '2009-06-23 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76396, 'End_Lon': -73.954187, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776965, 'Start_Lon': -73.98197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-23 18:15:00', 'Trip_Pickup_DateTime': '2009-06-23 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708938, 'End_Lon': -73.853372, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72131, 'Start_Lon': -73.844373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-13 22:05:00', 'Trip_Pickup_DateTime': '2009-06-13 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717745, 'End_Lon': -73.992435, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.682338, 'Start_Lon': -73.993478, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-27 20:02:00', 'Trip_Pickup_DateTime': '2009-06-27 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721808, 'End_Lon': -73.97515, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743468, 'Start_Lon': -73.976895, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-27 15:27:00', 'Trip_Pickup_DateTime': '2009-06-27 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71949, 'End_Lon': -73.988625, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771422, 'Start_Lon': -73.98034, 'Tip_Amt': 4.38, 'Tolls_Amt': 0.0, 'Total_Amt': 26.28, 'Trip_Distance': 5.66, 'Trip_Dropoff_DateTime': '2009-06-24 17:36:00', 'Trip_Pickup_DateTime': '2009-06-24 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748955, 'End_Lon': -73.979567, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749822, 'Start_Lon': -73.972663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-24 14:09:00', 'Trip_Pickup_DateTime': '2009-06-24 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747782, 'End_Lon': -73.977253, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72307, 'Start_Lon': -73.994972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-26 23:58:00', 'Trip_Pickup_DateTime': '2009-06-26 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70617, 'End_Lon': -73.924312, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706398, 'Start_Lon': -73.939648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-28 03:43:00', 'Trip_Pickup_DateTime': '2009-06-28 03:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762815, 'End_Lon': -73.983173, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74549, 'Start_Lon': -73.982027, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-28 12:53:00', 'Trip_Pickup_DateTime': '2009-06-28 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688145, 'End_Lon': -73.985545, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728632, 'Start_Lon': -73.9876, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-22 23:13:00', 'Trip_Pickup_DateTime': '2009-06-22 22:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644117, 'End_Lon': -73.782585, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765595, 'Start_Lon': -73.98297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 16.8, 'Trip_Dropoff_DateTime': '2009-06-27 14:37:00', 'Trip_Pickup_DateTime': '2009-06-27 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80783, 'End_Lon': -73.960177, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7893, 'Start_Lon': -73.973607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-14 16:12:00', 'Trip_Pickup_DateTime': '2009-06-14 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767579, 'End_Lon': -73.955141, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.779213, 'Start_Lon': -73.953965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-20 16:13:18', 'Trip_Pickup_DateTime': '2009-06-20 16:04:36', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.774177, 'End_Lon': -73.959237, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74766, 'Start_Lon': -73.985155, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-24 13:51:00', 'Trip_Pickup_DateTime': '2009-06-24 13:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761373, 'End_Lon': -73.987332, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765637, 'Start_Lon': -73.97793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-23 12:49:00', 'Trip_Pickup_DateTime': '2009-06-23 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705168, 'End_Lon': -74.01726, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732585, 'Start_Lon': -73.9877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-22 20:53:00', 'Trip_Pickup_DateTime': '2009-06-22 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747935, 'End_Lon': -74.006853, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726973, 'Start_Lon': -73.980068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-24 07:54:00', 'Trip_Pickup_DateTime': '2009-06-24 07:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768073, 'End_Lon': -73.982043, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746843, 'Start_Lon': -73.997227, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-27 22:58:00', 'Trip_Pickup_DateTime': '2009-06-27 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792657, 'End_Lon': -73.964617, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784042, 'Start_Lon': -73.980523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-23 22:44:00', 'Trip_Pickup_DateTime': '2009-06-23 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751307, 'End_Lon': -73.990225, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762095, 'Start_Lon': -73.982548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-26 20:24:00', 'Trip_Pickup_DateTime': '2009-06-26 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767082, 'End_Lon': -73.996957, 'Fare_Amt': 29.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770335, 'Start_Lon': -73.865807, 'Tip_Amt': 7.32, 'Tolls_Amt': 4.15, 'Total_Amt': 40.77, 'Trip_Distance': 12.16, 'Trip_Dropoff_DateTime': '2009-06-14 09:32:00', 'Trip_Pickup_DateTime': '2009-06-14 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759652, 'End_Lon': -73.984203, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765173, 'Start_Lon': -73.980118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-24 19:55:00', 'Trip_Pickup_DateTime': '2009-06-24 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741788, 'End_Lon': -74.007363, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742533, 'Start_Lon': -73.982477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-14 21:15:00', 'Trip_Pickup_DateTime': '2009-06-14 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73008, 'End_Lon': -74.004773, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73935, 'Start_Lon': -73.99913, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-27 10:39:00', 'Trip_Pickup_DateTime': '2009-06-27 10:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.818162, 'End_Lon': -73.960237, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79627, 'Start_Lon': -73.961832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-14 21:03:00', 'Trip_Pickup_DateTime': '2009-06-14 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749747, 'End_Lon': -73.983935, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763827, 'Start_Lon': -73.997525, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-23 18:58:00', 'Trip_Pickup_DateTime': '2009-06-23 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767322, 'End_Lon': -73.954352, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70251, 'Start_Lon': -74.012772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.54, 'Trip_Dropoff_DateTime': '2009-06-22 15:33:00', 'Trip_Pickup_DateTime': '2009-06-22 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 30.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 6.5, 'Tolls_Amt': 0.0, 'Total_Amt': 38.4, 'Trip_Distance': 10.27, 'Trip_Dropoff_DateTime': '2009-06-10 17:19:00', 'Trip_Pickup_DateTime': '2009-06-10 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768265, 'End_Lon': -73.861565, 'Fare_Amt': 34.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705127, 'Start_Lon': -74.017178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.9, 'Trip_Distance': 15.01, 'Trip_Dropoff_DateTime': '2009-06-26 14:08:00', 'Trip_Pickup_DateTime': '2009-06-26 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809512, 'End_Lon': -73.953277, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780075, 'Start_Lon': -73.946728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-27 15:06:00', 'Trip_Pickup_DateTime': '2009-06-27 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741715, 'End_Lon': -73.975007, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761608, 'Start_Lon': -73.971765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-25 17:48:00', 'Trip_Pickup_DateTime': '2009-06-25 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752983, 'End_Lon': -73.980155, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757473, 'Start_Lon': -73.986287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-23 21:43:00', 'Trip_Pickup_DateTime': '2009-06-23 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72753, 'End_Lon': -73.988892, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725768, 'Start_Lon': -73.99409, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-26 00:41:00', 'Trip_Pickup_DateTime': '2009-06-26 00:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644407, 'End_Lon': -73.798355, 'Fare_Amt': 24.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773723, 'Start_Lon': -73.870908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.4, 'Trip_Distance': 11.11, 'Trip_Dropoff_DateTime': '2009-06-30 20:47:00', 'Trip_Pickup_DateTime': '2009-06-30 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749185, 'End_Lon': -73.976415, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74867, 'Start_Lon': -73.992153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-28 19:08:00', 'Trip_Pickup_DateTime': '2009-06-28 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737162, 'End_Lon': -73.988703, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737128, 'Start_Lon': -73.98861, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-27 04:18:00', 'Trip_Pickup_DateTime': '2009-06-27 04:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755128, 'End_Lon': -73.994923, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.791277, 'Start_Lon': -73.94216, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 4.73, 'Trip_Dropoff_DateTime': '2009-06-28 14:59:00', 'Trip_Pickup_DateTime': '2009-06-28 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774092, 'End_Lon': -73.98258, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765133, 'Start_Lon': -73.97668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-30 10:46:00', 'Trip_Pickup_DateTime': '2009-06-30 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808302, 'End_Lon': -73.9646, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78865, 'Start_Lon': -73.976108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-28 18:13:00', 'Trip_Pickup_DateTime': '2009-06-28 18:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781945, 'End_Lon': -73.95072, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773563, 'Start_Lon': -73.956295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-28 21:53:00', 'Trip_Pickup_DateTime': '2009-06-28 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792792, 'End_Lon': -73.971215, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763503, 'Start_Lon': -73.9858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-28 19:38:00', 'Trip_Pickup_DateTime': '2009-06-28 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773065, 'End_Lon': -73.946262, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764183, 'Start_Lon': -73.954108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-27 18:32:00', 'Trip_Pickup_DateTime': '2009-06-27 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749968, 'End_Lon': -73.995032, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704788, 'Start_Lon': -74.008322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.54, 'Trip_Dropoff_DateTime': '2009-06-28 11:01:00', 'Trip_Pickup_DateTime': '2009-06-28 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701357, 'End_Lon': -73.989877, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766415, 'Start_Lon': -73.956857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.57, 'Trip_Dropoff_DateTime': '2009-06-08 22:51:00', 'Trip_Pickup_DateTime': '2009-06-08 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728408, 'End_Lon': -73.991273, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744463, 'Start_Lon': -73.996417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-26 09:48:00', 'Trip_Pickup_DateTime': '2009-06-26 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703327, 'End_Lon': -74.00991, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70923, 'Start_Lon': -74.01501, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-25 07:29:00', 'Trip_Pickup_DateTime': '2009-06-25 07:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-29 02:30:00', 'Trip_Pickup_DateTime': '2009-06-29 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.67736, 'End_Lon': -73.781523, 'Fare_Amt': 26.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77343, 'Start_Lon': -73.870695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.9, 'Trip_Distance': 11.19, 'Trip_Dropoff_DateTime': '2009-06-30 19:44:00', 'Trip_Pickup_DateTime': '2009-06-30 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756217, 'End_Lon': -73.878457, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754613, 'Start_Lon': -73.991572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 6.92, 'Trip_Dropoff_DateTime': '2009-06-28 21:43:00', 'Trip_Pickup_DateTime': '2009-06-28 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761705, 'End_Lon': -73.984357, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741105, 'Start_Lon': -73.993582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-27 01:59:00', 'Trip_Pickup_DateTime': '2009-06-27 01:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721702, 'End_Lon': -73.996575, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718127, 'Start_Lon': -74.014807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-30 10:53:00', 'Trip_Pickup_DateTime': '2009-06-30 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713195, 'End_Lon': -73.99796, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731572, 'Start_Lon': -73.99582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-27 12:47:00', 'Trip_Pickup_DateTime': '2009-06-27 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760613, 'End_Lon': -74.00238, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752118, 'Start_Lon': -73.99329, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 09:31:00', 'Trip_Pickup_DateTime': '2009-06-26 09:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761853, 'End_Lon': -73.978347, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750127, 'Start_Lon': -73.991988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-28 11:27:00', 'Trip_Pickup_DateTime': '2009-06-28 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765963, 'End_Lon': -73.982362, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764307, 'Start_Lon': -73.968743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-27 21:25:00', 'Trip_Pickup_DateTime': '2009-06-27 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725382, 'End_Lon': -73.996357, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774775, 'Start_Lon': -73.95894, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-27 12:15:00', 'Trip_Pickup_DateTime': '2009-06-27 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691087, 'End_Lon': -73.970602, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.691092, 'Start_Lon': -73.970555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-10 15:57:00', 'Trip_Pickup_DateTime': '2009-06-10 15:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755785, 'End_Lon': -73.985212, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72391, 'Start_Lon': -74.002652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-10 12:56:00', 'Trip_Pickup_DateTime': '2009-06-10 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753255, 'End_Lon': -73.985252, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753255, 'Start_Lon': -73.985252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-28 02:06:00', 'Trip_Pickup_DateTime': '2009-06-28 02:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.862885, 'End_Lon': -73.90214, 'Fare_Amt': 20.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80448, 'Start_Lon': -73.966587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.0, 'Trip_Distance': 7.9, 'Trip_Dropoff_DateTime': '2009-06-28 02:07:00', 'Trip_Pickup_DateTime': '2009-06-28 01:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724395, 'End_Lon': -73.997575, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743318, 'Start_Lon': -73.996173, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-28 17:44:00', 'Trip_Pickup_DateTime': '2009-06-28 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76068, 'End_Lon': -73.984525, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797153, 'Start_Lon': -73.964348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-29 01:16:00', 'Trip_Pickup_DateTime': '2009-06-29 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759523, 'End_Lon': -73.980997, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722465, 'Start_Lon': -73.997493, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-27 19:56:00', 'Trip_Pickup_DateTime': '2009-06-27 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763102, 'End_Lon': -73.97896, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750357, 'Start_Lon': -73.988055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-10 12:32:00', 'Trip_Pickup_DateTime': '2009-06-10 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.65195, 'End_Lon': -73.964923, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72983, 'Start_Lon': -74.000644, 'Tip_Amt': 2.61, 'Tolls_Amt': 0.0, 'Total_Amt': 19.51, 'Trip_Distance': 6.3, 'Trip_Dropoff_DateTime': '2009-06-06 04:22:46', 'Trip_Pickup_DateTime': '2009-06-06 04:05:28', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.743373, 'End_Lon': -73.999847, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719457, 'Start_Lon': -74.005187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-27 14:17:00', 'Trip_Pickup_DateTime': '2009-06-27 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771558, 'End_Lon': -73.983172, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.808563, 'Start_Lon': -73.96488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-26 20:52:00', 'Trip_Pickup_DateTime': '2009-06-26 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749408, 'End_Lon': -73.98229, 'Fare_Amt': 10.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721243, 'Start_Lon': -74.000417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-28 20:37:00', 'Trip_Pickup_DateTime': '2009-06-28 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76866, 'End_Lon': -73.95795, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749433, 'Start_Lon': -73.988352, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-10 12:57:00', 'Trip_Pickup_DateTime': '2009-06-10 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768831, 'End_Lon': -73.955193, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Dispute', 'Rate_Code': None, 'Start_Lat': 40.727948, 'Start_Lon': -73.982199, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-07 23:58:55', 'Trip_Pickup_DateTime': '2009-06-07 23:50:00', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.755477, 'End_Lon': -73.965993, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726867, 'Start_Lon': -73.991517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-14 03:37:00', 'Trip_Pickup_DateTime': '2009-06-14 03:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751015, 'End_Lon': -73.940117, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751242, 'Start_Lon': -73.941357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-26 17:50:00', 'Trip_Pickup_DateTime': '2009-06-26 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754772, 'End_Lon': -73.998122, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75155, 'Start_Lon': -74.005548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-26 10:07:00', 'Trip_Pickup_DateTime': '2009-06-26 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757977, 'End_Lon': -73.981138, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733145, 'Start_Lon': -73.975538, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-26 07:48:00', 'Trip_Pickup_DateTime': '2009-06-26 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779418, 'End_Lon': -73.961327, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763908, 'Start_Lon': -73.97753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-10 12:40:00', 'Trip_Pickup_DateTime': '2009-06-10 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754173, 'End_Lon': -73.97112, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720385, 'Start_Lon': -73.989292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-28 01:02:00', 'Trip_Pickup_DateTime': '2009-06-28 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721293, 'End_Lon': -73.994912, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708375, 'Start_Lon': -74.011138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-26 02:42:00', 'Trip_Pickup_DateTime': '2009-06-26 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768403, 'End_Lon': -73.95518, 'Fare_Amt': 22.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768462, 'Start_Lon': -73.863592, 'Tip_Amt': 4.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.25, 'Trip_Distance': 9.55, 'Trip_Dropoff_DateTime': '2009-06-10 13:05:00', 'Trip_Pickup_DateTime': '2009-06-10 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785215, 'End_Lon': -73.815518, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739082, 'Start_Lon': -73.860777, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 15.98, 'Trip_Dropoff_DateTime': '2009-06-27 18:16:00', 'Trip_Pickup_DateTime': '2009-06-27 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774693, 'End_Lon': -73.960337, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776797, 'Start_Lon': -73.982312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-10 11:33:00', 'Trip_Pickup_DateTime': '2009-06-10 11:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787302, 'End_Lon': -73.976402, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763382, 'Start_Lon': -73.977632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-27 16:25:00', 'Trip_Pickup_DateTime': '2009-06-27 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763182, 'End_Lon': -73.989068, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768997, 'Start_Lon': -73.988403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-26 15:15:00', 'Trip_Pickup_DateTime': '2009-06-26 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750285, 'End_Lon': -73.99472, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71134, 'Start_Lon': -74.015872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-26 18:37:00', 'Trip_Pickup_DateTime': '2009-06-26 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775235, 'End_Lon': -73.976667, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763642, 'Start_Lon': -73.981742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-26 14:03:00', 'Trip_Pickup_DateTime': '2009-06-26 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76941, 'End_Lon': -73.984743, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749763, 'Start_Lon': -73.992347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-26 13:07:00', 'Trip_Pickup_DateTime': '2009-06-26 12:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738043, 'End_Lon': -74.00822, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751742, 'Start_Lon': -73.98262, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-26 16:14:00', 'Trip_Pickup_DateTime': '2009-06-26 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747963, 'End_Lon': -73.94746, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769878, 'Start_Lon': -73.96072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-26 12:00:00', 'Trip_Pickup_DateTime': '2009-06-26 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785698, 'End_Lon': -73.972882, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75318, 'Start_Lon': -73.966603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-26 20:48:00', 'Trip_Pickup_DateTime': '2009-06-26 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772183, 'End_Lon': -73.986307, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768988, 'Start_Lon': -73.988703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.28, 'Trip_Dropoff_DateTime': '2009-06-10 17:35:00', 'Trip_Pickup_DateTime': '2009-06-10 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769625, 'End_Lon': -73.968598, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77559, 'Start_Lon': -73.960507, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-26 15:56:00', 'Trip_Pickup_DateTime': '2009-06-26 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736647, 'End_Lon': -74.001193, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75679, 'Start_Lon': -73.972987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-28 04:13:00', 'Trip_Pickup_DateTime': '2009-06-28 04:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739523, 'End_Lon': -74.007933, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729675, 'Start_Lon': -73.980943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-25 21:01:00', 'Trip_Pickup_DateTime': '2009-06-25 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75992, 'End_Lon': -73.975395, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764495, 'Start_Lon': -73.97388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-26 19:16:00', 'Trip_Pickup_DateTime': '2009-06-26 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785547, 'End_Lon': -73.980208, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763122, 'Start_Lon': -73.98563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-28 19:57:00', 'Trip_Pickup_DateTime': '2009-06-28 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752238, 'End_Lon': -73.990108, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766248, 'Start_Lon': -73.979675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-27 12:37:00', 'Trip_Pickup_DateTime': '2009-06-27 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761247, 'End_Lon': -73.926082, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765932, 'Start_Lon': -73.960638, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-24 15:50:00', 'Trip_Pickup_DateTime': '2009-06-24 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722468, 'End_Lon': -73.997445, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750723, 'Start_Lon': -74.005807, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-25 19:17:00', 'Trip_Pickup_DateTime': '2009-06-25 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724775, 'End_Lon': -73.99835, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730985, 'Start_Lon': -74.004732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-25 18:16:00', 'Trip_Pickup_DateTime': '2009-06-25 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809888, 'End_Lon': -73.96039, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77854, 'Start_Lon': -73.981242, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-10 16:11:00', 'Trip_Pickup_DateTime': '2009-06-10 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736912, 'End_Lon': -73.989648, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717032, 'Start_Lon': -73.998568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-27 13:55:00', 'Trip_Pickup_DateTime': '2009-06-27 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730415, 'End_Lon': -74.000255, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782372, 'Start_Lon': -73.981053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-25 21:38:00', 'Trip_Pickup_DateTime': '2009-06-25 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74374, 'End_Lon': -73.989527, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752147, 'Start_Lon': -73.993222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-13 15:49:00', 'Trip_Pickup_DateTime': '2009-06-13 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75775, 'End_Lon': -73.99871, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75775, 'Start_Lon': -73.99871, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-18 08:00:00', 'Trip_Pickup_DateTime': '2009-06-18 07:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757575, 'End_Lon': -73.96139, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754808, 'Start_Lon': -73.965665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-15 22:49:00', 'Trip_Pickup_DateTime': '2009-06-15 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754783, 'End_Lon': -73.977602, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770662, 'Start_Lon': -73.864418, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.25, 'Trip_Distance': 9.07, 'Trip_Dropoff_DateTime': '2009-06-25 15:23:00', 'Trip_Pickup_DateTime': '2009-06-25 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728992, 'End_Lon': -74.001153, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740117, 'Start_Lon': -73.986158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-27 09:35:00', 'Trip_Pickup_DateTime': '2009-06-27 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756377, 'End_Lon': -73.990185, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753895, 'Start_Lon': -73.971107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-18 07:31:00', 'Trip_Pickup_DateTime': '2009-06-18 07:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768678, 'End_Lon': -73.955063, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745667, 'Start_Lon': -73.977897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-27 02:03:00', 'Trip_Pickup_DateTime': '2009-06-27 01:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777365, 'End_Lon': -73.98343, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750745, 'Start_Lon': -73.982067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-30 23:40:00', 'Trip_Pickup_DateTime': '2009-06-30 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755987, 'End_Lon': -73.996003, 'Fare_Amt': 6.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735515, 'Start_Lon': -73.990783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-24 05:23:00', 'Trip_Pickup_DateTime': '2009-06-24 05:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732917, 'End_Lon': -73.977723, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706273, 'Start_Lon': -74.004422, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-25 16:34:00', 'Trip_Pickup_DateTime': '2009-06-25 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7801, 'End_Lon': -73.978952, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76557, 'Start_Lon': -73.975937, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.15, 'Trip_Dropoff_DateTime': '2009-06-25 09:51:00', 'Trip_Pickup_DateTime': '2009-06-25 09:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776703, 'End_Lon': -73.977028, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755812, 'Start_Lon': -73.987885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-25 16:20:00', 'Trip_Pickup_DateTime': '2009-06-25 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73595, 'End_Lon': -74.001547, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765035, 'Start_Lon': -73.961182, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-27 22:55:00', 'Trip_Pickup_DateTime': '2009-06-27 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757568, 'End_Lon': -73.975297, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779003, 'Start_Lon': -73.95839, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-24 13:00:00', 'Trip_Pickup_DateTime': '2009-06-24 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790425, 'End_Lon': -73.969203, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793425, 'Start_Lon': -73.967148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-25 14:37:00', 'Trip_Pickup_DateTime': '2009-06-25 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755723, 'End_Lon': -73.929362, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763078, 'Start_Lon': -73.980608, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-29 23:34:00', 'Trip_Pickup_DateTime': '2009-06-29 23:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732635, 'End_Lon': -73.985753, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735738, 'Start_Lon': -73.987205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-26 00:27:00', 'Trip_Pickup_DateTime': '2009-06-26 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723943, 'End_Lon': -73.999092, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731803, 'Start_Lon': -74.003932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-24 11:06:00', 'Trip_Pickup_DateTime': '2009-06-24 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761, 'End_Lon': -73.983968, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761872, 'Start_Lon': -73.972213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-22 15:56:00', 'Trip_Pickup_DateTime': '2009-06-22 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740072, 'End_Lon': -74.005418, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748008, 'Start_Lon': -73.986372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-25 00:14:00', 'Trip_Pickup_DateTime': '2009-06-25 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78149, 'End_Lon': -73.783432, 'Fare_Amt': 47.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742052, 'Start_Lon': -73.974732, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 52.45, 'Trip_Distance': 14.93, 'Trip_Dropoff_DateTime': '2009-06-26 19:05:00', 'Trip_Pickup_DateTime': '2009-06-26 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750063, 'End_Lon': -74.005877, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741647, 'Start_Lon': -73.989622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-26 08:14:00', 'Trip_Pickup_DateTime': '2009-06-26 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767045, 'End_Lon': -73.985688, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768095, 'Start_Lon': -73.981683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-23 16:17:00', 'Trip_Pickup_DateTime': '2009-06-23 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.625458, 'End_Lon': -73.9218, 'Fare_Amt': 31.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737887, 'Start_Lon': -73.981228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.8, 'Trip_Distance': 12.11, 'Trip_Dropoff_DateTime': '2009-06-29 22:39:00', 'Trip_Pickup_DateTime': '2009-06-29 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780653, 'End_Lon': -73.972687, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768507, 'Start_Lon': -73.987445, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-29 10:13:00', 'Trip_Pickup_DateTime': '2009-06-29 10:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744965, 'End_Lon': -73.995307, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745137, 'Start_Lon': -74.00566, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-10 13:28:00', 'Trip_Pickup_DateTime': '2009-06-10 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770227, 'End_Lon': -73.954222, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778712, 'Start_Lon': -73.982078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-24 14:08:00', 'Trip_Pickup_DateTime': '2009-06-24 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744802, 'End_Lon': -73.9921, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75302, 'Start_Lon': -73.987515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-30 18:32:00', 'Trip_Pickup_DateTime': '2009-06-30 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735558, 'End_Lon': -74.003633, 'Fare_Amt': 2.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735145, 'Start_Lon': -74.00596, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.12, 'Trip_Dropoff_DateTime': '2009-06-23 08:04:00', 'Trip_Pickup_DateTime': '2009-06-23 08:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725745, 'End_Lon': -73.972053, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724902, 'Start_Lon': -73.969258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-25 21:49:00', 'Trip_Pickup_DateTime': '2009-06-25 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749853, 'End_Lon': -73.977492, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732247, 'Start_Lon': -73.984712, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-27 23:31:00', 'Trip_Pickup_DateTime': '2009-06-27 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751352, 'End_Lon': -73.968023, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733055, 'Start_Lon': -73.991092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-22 18:10:00', 'Trip_Pickup_DateTime': '2009-06-22 18:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751942, 'End_Lon': -73.981002, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76429, 'Start_Lon': -73.971108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-24 09:38:00', 'Trip_Pickup_DateTime': '2009-06-24 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.493963, 'End_Lon': -73.46454, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.499037, 'Start_Lon': -73.473328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-04 17:27:00', 'Trip_Pickup_DateTime': '2009-06-04 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747497, 'End_Lon': -74.000603, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760013, 'Start_Lon': -73.991483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-30 21:18:00', 'Trip_Pickup_DateTime': '2009-06-30 21:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707957, 'End_Lon': -74.00697, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64743, 'Start_Lon': -73.788385, 'Tip_Amt': 8.0, 'Tolls_Amt': 0.0, 'Total_Amt': 53.0, 'Trip_Distance': 20.68, 'Trip_Dropoff_DateTime': '2009-06-02 19:19:00', 'Trip_Pickup_DateTime': '2009-06-02 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77785, 'End_Lon': -73.979767, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76114, 'Start_Lon': -73.987293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-30 18:16:00', 'Trip_Pickup_DateTime': '2009-06-30 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756433, 'End_Lon': -73.964153, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778233, 'Start_Lon': -73.958587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-30 21:43:00', 'Trip_Pickup_DateTime': '2009-06-30 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771403, 'End_Lon': -73.95961, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754717, 'Start_Lon': -73.978038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-29 20:13:00', 'Trip_Pickup_DateTime': '2009-06-29 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758552, 'End_Lon': -73.943638, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76167, 'Start_Lon': -73.986313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-08 12:18:00', 'Trip_Pickup_DateTime': '2009-06-08 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752272, 'End_Lon': -73.989895, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80438, 'Start_Lon': -73.966717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.08, 'Trip_Dropoff_DateTime': '2009-06-06 11:14:00', 'Trip_Pickup_DateTime': '2009-06-06 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762053, 'End_Lon': -73.995185, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772275, 'Start_Lon': -73.982613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-29 21:48:00', 'Trip_Pickup_DateTime': '2009-06-29 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749863, 'End_Lon': -73.993333, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753263, 'Start_Lon': -73.966803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-05 09:24:00', 'Trip_Pickup_DateTime': '2009-06-05 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771463, 'End_Lon': -73.932357, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759118, 'Start_Lon': -73.91892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-07 04:28:00', 'Trip_Pickup_DateTime': '2009-06-07 04:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749263, 'End_Lon': -73.992333, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781422, 'Start_Lon': -73.95629, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-12 08:17:00', 'Trip_Pickup_DateTime': '2009-06-12 08:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759592, 'End_Lon': -73.964928, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772343, 'Start_Lon': -73.958798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-06 20:55:00', 'Trip_Pickup_DateTime': '2009-06-06 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764405, 'End_Lon': -73.988388, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742555, 'Start_Lon': -74.006845, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-02 18:03:00', 'Trip_Pickup_DateTime': '2009-06-02 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74905, 'End_Lon': -73.991882, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754833, 'Start_Lon': -73.98693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-30 12:02:00', 'Trip_Pickup_DateTime': '2009-06-30 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732675, 'End_Lon': -73.989795, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74508, 'Start_Lon': -73.97858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-08 21:46:00', 'Trip_Pickup_DateTime': '2009-06-08 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776825, 'End_Lon': -73.961365, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766895, 'Start_Lon': -73.95421, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-04 12:35:00', 'Trip_Pickup_DateTime': '2009-06-04 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734433, 'End_Lon': -73.978597, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739048, 'Start_Lon': -73.993202, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-03 15:25:00', 'Trip_Pickup_DateTime': '2009-06-03 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-07 10:36:00', 'Trip_Pickup_DateTime': '2009-06-07 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76151, 'End_Lon': -73.979503, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735445, 'Start_Lon': -73.985972, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-12 07:47:00', 'Trip_Pickup_DateTime': '2009-06-12 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770002, 'End_Lon': -73.99288, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749905, 'Start_Lon': -73.99146, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-04 19:52:00', 'Trip_Pickup_DateTime': '2009-06-04 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77271, 'End_Lon': -73.95833, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758282, 'Start_Lon': -73.966023, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-06 00:14:00', 'Trip_Pickup_DateTime': '2009-06-06 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734872, 'End_Lon': -73.977108, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74968, 'Start_Lon': -73.987635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-06 22:27:00', 'Trip_Pickup_DateTime': '2009-06-06 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743247, 'End_Lon': -73.907353, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758388, 'Start_Lon': -73.970392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-06 00:58:00', 'Trip_Pickup_DateTime': '2009-06-06 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75136, 'End_Lon': -73.976552, 'Fare_Amt': 10.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743355, 'Start_Lon': -74.007378, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-02 21:18:00', 'Trip_Pickup_DateTime': '2009-06-02 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768593, 'End_Lon': -73.981492, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.801532, 'Start_Lon': -73.968937, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-07 23:29:00', 'Trip_Pickup_DateTime': '2009-06-07 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74491, 'End_Lon': -73.971223, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750032, 'Start_Lon': -73.97698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-29 17:53:00', 'Trip_Pickup_DateTime': '2009-06-29 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724732, 'End_Lon': -73.992283, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721572, 'Start_Lon': -73.983578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-05 18:24:00', 'Trip_Pickup_DateTime': '2009-06-05 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726967, 'End_Lon': -73.99974, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722435, 'Start_Lon': -73.986473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-07 07:36:00', 'Trip_Pickup_DateTime': '2009-06-07 07:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701907, 'End_Lon': -74.01084, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743522, 'Start_Lon': -73.973827, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-03 08:55:00', 'Trip_Pickup_DateTime': '2009-06-03 08:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739712, 'End_Lon': -74.00219, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743675, 'Start_Lon': -73.992742, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-04 20:28:00', 'Trip_Pickup_DateTime': '2009-06-04 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.712452, 'End_Lon': -74.008552, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72469, 'Start_Lon': -73.99755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-06 01:33:00', 'Trip_Pickup_DateTime': '2009-06-06 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.795225, 'End_Lon': -73.96951, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788918, 'Start_Lon': -73.97031, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-06 10:28:00', 'Trip_Pickup_DateTime': '2009-06-06 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751757, 'End_Lon': -73.976447, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739225, 'Start_Lon': -74.00134, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-03 21:47:00', 'Trip_Pickup_DateTime': '2009-06-03 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752688, 'End_Lon': -73.97528, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783477, 'Start_Lon': -73.975203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-03 17:58:00', 'Trip_Pickup_DateTime': '2009-06-03 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751508, 'End_Lon': -73.970605, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763113, 'Start_Lon': -73.962252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-07 16:10:00', 'Trip_Pickup_DateTime': '2009-06-07 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74876, 'End_Lon': -73.93703, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743615, 'Start_Lon': -73.92127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-06 13:13:00', 'Trip_Pickup_DateTime': '2009-06-06 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72212, 'End_Lon': -73.996365, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760573, 'Start_Lon': -73.985152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-08 22:56:00', 'Trip_Pickup_DateTime': '2009-06-08 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737172, 'End_Lon': -73.992827, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745452, 'Start_Lon': -73.99516, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-05 17:37:00', 'Trip_Pickup_DateTime': '2009-06-05 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715195, 'End_Lon': -74.013767, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737468, 'Start_Lon': -74.006408, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-06 11:38:00', 'Trip_Pickup_DateTime': '2009-06-06 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734735, 'End_Lon': -73.99846, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718992, 'Start_Lon': -73.985152, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-04 22:45:00', 'Trip_Pickup_DateTime': '2009-06-04 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714423, 'End_Lon': -74.003467, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73852, 'Start_Lon': -73.99696, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-04 00:53:00', 'Trip_Pickup_DateTime': '2009-06-04 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728208, 'End_Lon': -73.98677, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751418, 'Start_Lon': -74.00792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-06 21:46:00', 'Trip_Pickup_DateTime': '2009-06-06 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769032, 'End_Lon': -73.965272, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768115, 'Start_Lon': -73.982132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-05 18:48:00', 'Trip_Pickup_DateTime': '2009-06-05 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742813, 'End_Lon': -73.99484, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750482, 'Start_Lon': -73.991037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-07 09:55:00', 'Trip_Pickup_DateTime': '2009-06-07 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753495, 'End_Lon': -73.986918, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750065, 'Start_Lon': -73.991867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-18 08:07:00', 'Trip_Pickup_DateTime': '2009-06-18 07:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744082, 'End_Lon': -73.928448, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744113, 'Start_Lon': -73.928428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-05 18:17:00', 'Trip_Pickup_DateTime': '2009-06-05 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758997, 'End_Lon': -73.985327, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713677, 'Start_Lon': -74.009503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-08 06:18:00', 'Trip_Pickup_DateTime': '2009-06-08 06:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755087, 'End_Lon': -73.970198, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.641025, 'Start_Lon': -73.787323, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.54, 'Trip_Dropoff_DateTime': '2009-06-15 23:53:00', 'Trip_Pickup_DateTime': '2009-06-15 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734148, 'End_Lon': -73.999993, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740173, 'Start_Lon': -73.991283, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-02 18:16:00', 'Trip_Pickup_DateTime': '2009-06-02 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732845, 'End_Lon': -73.854222, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773827, 'Start_Lon': -73.872075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.38, 'Trip_Dropoff_DateTime': '2009-06-16 00:30:00', 'Trip_Pickup_DateTime': '2009-06-16 00:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771282, 'End_Lon': -73.953787, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756702, 'Start_Lon': -73.966453, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-13 23:57:00', 'Trip_Pickup_DateTime': '2009-06-13 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741513, 'End_Lon': -73.981717, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76287, 'Start_Lon': -73.989345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-03 18:23:00', 'Trip_Pickup_DateTime': '2009-06-03 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78094, 'End_Lon': -73.955185, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798668, 'Start_Lon': -73.968528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-18 07:26:00', 'Trip_Pickup_DateTime': '2009-06-18 07:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.845157, 'End_Lon': -73.937877, 'Fare_Amt': 27.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719975, 'Start_Lon': -73.98823, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 30.0, 'Trip_Distance': 11.6, 'Trip_Dropoff_DateTime': '2009-06-05 03:27:00', 'Trip_Pickup_DateTime': '2009-06-05 03:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768422, 'End_Lon': -73.992698, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762992, 'Start_Lon': -73.984033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-05 03:02:00', 'Trip_Pickup_DateTime': '2009-06-05 02:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7429, 'End_Lon': -73.996527, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785007, 'Start_Lon': -73.979237, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-06 13:16:00', 'Trip_Pickup_DateTime': '2009-06-06 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761202, 'End_Lon': -73.986337, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767945, 'Start_Lon': -73.992973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-07 12:50:00', 'Trip_Pickup_DateTime': '2009-06-07 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772377, 'End_Lon': -73.924003, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74609, 'Start_Lon': -73.99084, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.0, 'Trip_Distance': 5.61, 'Trip_Dropoff_DateTime': '2009-06-02 00:55:00', 'Trip_Pickup_DateTime': '2009-06-02 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760837, 'End_Lon': -73.976542, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761727, 'Start_Lon': -73.977592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-05 15:29:00', 'Trip_Pickup_DateTime': '2009-06-05 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738763, 'End_Lon': -73.98771, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722473, 'Start_Lon': -74.001268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-16 00:13:00', 'Trip_Pickup_DateTime': '2009-06-16 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74077, 'End_Lon': -73.978815, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787478, 'Start_Lon': -73.971537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.2, 'Trip_Dropoff_DateTime': '2009-06-07 15:08:00', 'Trip_Pickup_DateTime': '2009-06-07 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763607, 'End_Lon': -73.964845, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755998, 'Start_Lon': -73.990843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-08 07:22:00', 'Trip_Pickup_DateTime': '2009-06-08 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752322, 'End_Lon': -73.979647, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750925, 'Start_Lon': -74.005543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-08 16:22:00', 'Trip_Pickup_DateTime': '2009-06-08 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70486, 'End_Lon': -74.005885, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780547, 'Start_Lon': -73.960157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 7.45, 'Trip_Dropoff_DateTime': '2009-06-05 07:24:00', 'Trip_Pickup_DateTime': '2009-06-05 07:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73122, 'End_Lon': -73.997838, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742408, 'Start_Lon': -74.004315, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-16 00:45:00', 'Trip_Pickup_DateTime': '2009-06-16 00:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754332, 'End_Lon': -73.980567, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774233, 'Start_Lon': -73.945867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-02 17:09:00', 'Trip_Pickup_DateTime': '2009-06-02 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740805, 'End_Lon': -73.985892, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740753, 'Start_Lon': -73.985928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-04 17:30:00', 'Trip_Pickup_DateTime': '2009-06-04 17:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785293, 'End_Lon': -73.949352, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769005, 'Start_Lon': -73.862572, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 24.35, 'Trip_Distance': 8.31, 'Trip_Dropoff_DateTime': '2009-06-16 00:48:00', 'Trip_Pickup_DateTime': '2009-06-16 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734157, 'End_Lon': -73.989072, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733177, 'Start_Lon': -73.975358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-12 07:29:00', 'Trip_Pickup_DateTime': '2009-06-12 07:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770498, 'End_Lon': -73.865002, 'Fare_Amt': 26.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757607, 'Start_Lon': -73.984883, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 31.5, 'Trip_Distance': 10.28, 'Trip_Dropoff_DateTime': '2009-06-08 15:42:00', 'Trip_Pickup_DateTime': '2009-06-08 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764205, 'End_Lon': -73.957423, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750717, 'Start_Lon': -73.990958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-29 10:45:00', 'Trip_Pickup_DateTime': '2009-06-29 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76282, 'End_Lon': -73.976258, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747402, 'Start_Lon': -73.989732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-12 07:28:00', 'Trip_Pickup_DateTime': '2009-06-12 07:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76434, 'End_Lon': -73.954442, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761633, 'Start_Lon': -73.972098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-05 13:24:00', 'Trip_Pickup_DateTime': '2009-06-05 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763392, 'End_Lon': -73.962543, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780165, 'Start_Lon': -73.950123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-08 01:43:00', 'Trip_Pickup_DateTime': '2009-06-08 01:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764107, 'End_Lon': -73.984867, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751303, 'Start_Lon': -73.993967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-06 22:10:00', 'Trip_Pickup_DateTime': '2009-06-06 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719897, 'End_Lon': -73.987668, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730267, 'Start_Lon': -74.006278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-05 22:59:00', 'Trip_Pickup_DateTime': '2009-06-05 22:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789837, 'End_Lon': -73.972168, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760658, 'Start_Lon': -73.974628, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-02 11:33:00', 'Trip_Pickup_DateTime': '2009-06-02 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757315, 'End_Lon': -73.97788, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764063, 'Start_Lon': -73.955682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-02 18:32:00', 'Trip_Pickup_DateTime': '2009-06-02 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774315, 'End_Lon': -73.871283, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74623, 'Start_Lon': -73.979162, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.85, 'Trip_Distance': 8.4, 'Trip_Dropoff_DateTime': '2009-06-07 17:54:00', 'Trip_Pickup_DateTime': '2009-06-07 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71913, 'End_Lon': -73.977138, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75509, 'Start_Lon': -73.998228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-08 22:20:00', 'Trip_Pickup_DateTime': '2009-06-08 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774267, 'End_Lon': -73.963295, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751278, 'Start_Lon': -73.983373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-08 20:36:00', 'Trip_Pickup_DateTime': '2009-06-08 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76177, 'End_Lon': -73.979018, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708842, 'Start_Lon': -74.008145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.18, 'Trip_Dropoff_DateTime': '2009-06-27 05:51:00', 'Trip_Pickup_DateTime': '2009-06-27 05:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76649, 'End_Lon': -73.982583, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753413, 'Start_Lon': -73.978425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-04 10:53:00', 'Trip_Pickup_DateTime': '2009-06-04 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751865, 'End_Lon': -73.981778, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718403, 'Start_Lon': -73.987187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-08 22:21:00', 'Trip_Pickup_DateTime': '2009-06-08 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779648, 'End_Lon': -73.982683, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757587, 'Start_Lon': -73.987353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-24 22:32:00', 'Trip_Pickup_DateTime': '2009-06-24 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76623, 'End_Lon': -73.954187, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776665, 'Start_Lon': -73.962933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-02 09:29:00', 'Trip_Pickup_DateTime': '2009-06-02 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746262, 'End_Lon': -73.987647, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73869, 'Start_Lon': -73.991803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-05 15:35:00', 'Trip_Pickup_DateTime': '2009-06-05 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725632, 'End_Lon': -73.990072, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723792, 'Start_Lon': -73.988135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-27 17:04:00', 'Trip_Pickup_DateTime': '2009-06-27 16:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751112, 'End_Lon': -73.993387, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719665, 'Start_Lon': -73.957623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.79, 'Trip_Dropoff_DateTime': '2009-06-29 03:40:00', 'Trip_Pickup_DateTime': '2009-06-29 03:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76118, 'End_Lon': -73.969498, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75537, 'Start_Lon': -73.97527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-28 19:44:00', 'Trip_Pickup_DateTime': '2009-06-28 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737482, 'End_Lon': -73.828843, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737482, 'Start_Lon': -73.828843, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-27 20:13:00', 'Trip_Pickup_DateTime': '2009-06-27 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744762, 'End_Lon': -73.978503, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738423, 'Start_Lon': -73.99984, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-28 02:34:00', 'Trip_Pickup_DateTime': '2009-06-28 02:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718648, 'End_Lon': -74.00027, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72678, 'Start_Lon': -73.999877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-27 16:45:00', 'Trip_Pickup_DateTime': '2009-06-27 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74783, 'End_Lon': -74.004518, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75402, 'Start_Lon': -73.988412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-22 18:51:00', 'Trip_Pickup_DateTime': '2009-06-22 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763365, 'End_Lon': -73.986707, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76883, 'Start_Lon': -73.989237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-04 19:35:00', 'Trip_Pickup_DateTime': '2009-06-04 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745248, 'End_Lon': -73.99132, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744903, 'Start_Lon': -74.008145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-28 13:01:00', 'Trip_Pickup_DateTime': '2009-06-28 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726763, 'End_Lon': -74.00291, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747745, 'Start_Lon': -73.97372, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-10 09:08:00', 'Trip_Pickup_DateTime': '2009-06-10 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708352, 'End_Lon': -74.002087, 'Fare_Amt': 14.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757325, 'Start_Lon': -73.967742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.09, 'Trip_Dropoff_DateTime': '2009-06-27 20:43:00', 'Trip_Pickup_DateTime': '2009-06-27 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774062, 'End_Lon': -73.954705, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78057, 'Start_Lon': -73.976397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-28 14:15:00', 'Trip_Pickup_DateTime': '2009-06-28 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742147, 'End_Lon': -73.988797, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751237, 'Start_Lon': -73.982833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-22 16:11:00', 'Trip_Pickup_DateTime': '2009-06-22 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72324, 'End_Lon': -74.004253, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746002, 'Start_Lon': -74.003843, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-28 04:46:00', 'Trip_Pickup_DateTime': '2009-06-28 04:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721487, 'End_Lon': -74.00453, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763263, 'Start_Lon': -73.9755, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.4, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-27 05:06:00', 'Trip_Pickup_DateTime': '2009-06-27 04:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.670598, 'End_Lon': -73.764882, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.661502, 'Start_Lon': -73.772615, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-16 06:55:00', 'Trip_Pickup_DateTime': '2009-06-16 06:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784012, 'End_Lon': -73.949785, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780303, 'Start_Lon': -73.980375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-03 00:35:00', 'Trip_Pickup_DateTime': '2009-06-03 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78074, 'End_Lon': -73.948437, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768638, 'Start_Lon': -73.96132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-02 15:54:00', 'Trip_Pickup_DateTime': '2009-06-02 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784207, 'End_Lon': -73.983443, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75284, 'Start_Lon': -73.993158, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-02 17:23:00', 'Trip_Pickup_DateTime': '2009-06-02 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751985, 'End_Lon': -73.978172, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74544, 'Start_Lon': -73.982538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-04 13:23:00', 'Trip_Pickup_DateTime': '2009-06-04 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805875, 'End_Lon': -73.956735, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761415, 'Start_Lon': -73.96372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-06 00:04:00', 'Trip_Pickup_DateTime': '2009-06-05 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73701, 'End_Lon': -74.000153, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71863, 'Start_Lon': -73.999432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-08 11:50:00', 'Trip_Pickup_DateTime': '2009-06-08 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7485, 'End_Lon': -73.978287, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773795, 'Start_Lon': -73.872177, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.25, 'Trip_Distance': 8.14, 'Trip_Dropoff_DateTime': '2009-06-08 12:22:00', 'Trip_Pickup_DateTime': '2009-06-08 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731517, 'End_Lon': -73.98319, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763858, 'Start_Lon': -73.977487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-15 19:48:00', 'Trip_Pickup_DateTime': '2009-06-15 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785797, 'End_Lon': -73.954717, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75871, 'Start_Lon': -73.988742, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-03 21:56:00', 'Trip_Pickup_DateTime': '2009-06-03 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77884, 'End_Lon': -73.94796, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788682, 'Start_Lon': -73.966928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-30 20:12:00', 'Trip_Pickup_DateTime': '2009-06-30 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729522, 'End_Lon': -73.993332, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764433, 'Start_Lon': -73.96444, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-04 12:27:00', 'Trip_Pickup_DateTime': '2009-06-04 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741922, 'End_Lon': -73.974817, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731392, 'Start_Lon': -73.982618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-06 03:25:00', 'Trip_Pickup_DateTime': '2009-06-06 03:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761058, 'End_Lon': -73.980793, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646447, 'Start_Lon': -73.789333, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.81, 'Trip_Dropoff_DateTime': '2009-06-03 16:50:00', 'Trip_Pickup_DateTime': '2009-06-03 15:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748217, 'End_Lon': -73.9848, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77384, 'Start_Lon': -73.949132, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-30 07:39:00', 'Trip_Pickup_DateTime': '2009-06-30 07:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749197, 'End_Lon': -73.975705, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772723, 'Start_Lon': -73.946633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-04 13:54:00', 'Trip_Pickup_DateTime': '2009-06-04 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738167, 'End_Lon': -73.84652, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644737, 'Start_Lon': -73.781875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-16 02:32:00', 'Trip_Pickup_DateTime': '2009-06-16 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781528, 'End_Lon': -73.946023, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761037, 'Start_Lon': -73.969382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-05 11:38:00', 'Trip_Pickup_DateTime': '2009-06-05 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.604508, 'End_Lon': -73.966698, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.604378, 'Start_Lon': -73.966673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-08 07:10:00', 'Trip_Pickup_DateTime': '2009-06-08 07:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745582, 'End_Lon': -73.902377, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738928, 'Start_Lon': -73.98289, 'Tip_Amt': 4.74, 'Tolls_Amt': 0.0, 'Total_Amt': 20.54, 'Trip_Distance': 5.78, 'Trip_Dropoff_DateTime': '2009-06-05 02:20:00', 'Trip_Pickup_DateTime': '2009-06-05 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735633, 'End_Lon': -73.998053, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75505, 'Start_Lon': -73.97631, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-29 20:17:00', 'Trip_Pickup_DateTime': '2009-06-29 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762407, 'End_Lon': -73.966842, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749013, 'Start_Lon': -73.975317, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-07 16:10:00', 'Trip_Pickup_DateTime': '2009-06-07 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766727, 'End_Lon': -73.962848, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762237, 'Start_Lon': -73.959992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-03 09:43:00', 'Trip_Pickup_DateTime': '2009-06-03 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744032, 'End_Lon': -73.981867, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749727, 'Start_Lon': -73.995375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-07 13:26:00', 'Trip_Pickup_DateTime': '2009-06-07 13:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774323, 'End_Lon': -73.951255, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.704532, 'Start_Lon': -74.008412, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 20.7, 'Trip_Distance': 6.81, 'Trip_Dropoff_DateTime': '2009-06-08 21:58:00', 'Trip_Pickup_DateTime': '2009-06-08 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750115, 'End_Lon': -73.994155, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782222, 'Start_Lon': -73.955712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-07 14:09:00', 'Trip_Pickup_DateTime': '2009-06-07 12:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73296, 'End_Lon': -74.007377, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782143, 'Start_Lon': -73.971713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.49, 'Trip_Dropoff_DateTime': '2009-06-03 23:50:00', 'Trip_Pickup_DateTime': '2009-06-03 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743297, 'End_Lon': -74.006518, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728095, 'Start_Lon': -73.992432, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-16 03:23:00', 'Trip_Pickup_DateTime': '2009-06-16 03:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.645227, 'End_Lon': -73.77637, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.804933, 'Start_Lon': -73.966213, 'Tip_Amt': 3.0, 'Tolls_Amt': 4.15, 'Total_Amt': 52.15, 'Trip_Distance': 19.38, 'Trip_Dropoff_DateTime': '2009-06-04 05:24:00', 'Trip_Pickup_DateTime': '2009-06-04 04:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768007, 'End_Lon': -73.95627, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713082, 'Start_Lon': -74.01184, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.7, 'Trip_Distance': 7.91, 'Trip_Dropoff_DateTime': '2009-06-05 18:59:00', 'Trip_Pickup_DateTime': '2009-06-05 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731565, 'End_Lon': -73.985578, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75932, 'Start_Lon': -73.984655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-02 20:01:00', 'Trip_Pickup_DateTime': '2009-06-02 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809685, 'End_Lon': -73.95796, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777798, 'Start_Lon': -73.982403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-06 14:56:00', 'Trip_Pickup_DateTime': '2009-06-06 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.814382, 'End_Lon': -73.953288, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798315, 'Start_Lon': -73.966758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-03 21:28:00', 'Trip_Pickup_DateTime': '2009-06-03 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750468, 'End_Lon': -73.991262, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77864, 'Start_Lon': -73.977742, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-30 12:06:00', 'Trip_Pickup_DateTime': '2009-06-30 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72574, 'End_Lon': -73.990228, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732735, 'Start_Lon': -73.98624, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-06 01:12:00', 'Trip_Pickup_DateTime': '2009-06-06 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.6395, 'End_Lon': -73.786327, 'Fare_Amt': 31.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770007, 'Start_Lon': -73.865882, 'Tip_Amt': 6.54, 'Tolls_Amt': 0.0, 'Total_Amt': 39.24, 'Trip_Distance': 12.91, 'Trip_Dropoff_DateTime': '2009-06-05 17:28:00', 'Trip_Pickup_DateTime': '2009-06-05 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759872, 'End_Lon': -73.98781, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790528, 'Start_Lon': -73.969668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-05 19:59:00', 'Trip_Pickup_DateTime': '2009-06-05 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756115, 'End_Lon': -73.994895, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750257, 'Start_Lon': -74.002397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-05 04:18:00', 'Trip_Pickup_DateTime': '2009-06-05 04:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761377, 'End_Lon': -73.967978, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775558, 'Start_Lon': -73.982467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-05 22:13:00', 'Trip_Pickup_DateTime': '2009-06-05 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765722, 'End_Lon': -73.957393, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762527, 'Start_Lon': -73.985585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-05 02:58:00', 'Trip_Pickup_DateTime': '2009-06-05 02:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757068, 'End_Lon': -73.971647, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723437, 'Start_Lon': -74.00284, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-03 16:34:00', 'Trip_Pickup_DateTime': '2009-06-03 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746697, 'End_Lon': -73.98995, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735345, 'Start_Lon': -73.98273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-05 01:19:00', 'Trip_Pickup_DateTime': '2009-06-05 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784597, 'End_Lon': -73.97379, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783665, 'Start_Lon': -73.971537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-05 19:33:00', 'Trip_Pickup_DateTime': '2009-06-05 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76517, 'End_Lon': -73.983922, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75352, 'Start_Lon': -73.992722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-04 21:12:00', 'Trip_Pickup_DateTime': '2009-06-04 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72672, 'End_Lon': -73.989128, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780295, 'Start_Lon': -73.955133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 5.09, 'Trip_Dropoff_DateTime': '2009-06-02 18:11:00', 'Trip_Pickup_DateTime': '2009-06-02 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771583, 'End_Lon': -73.95928, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773625, 'Start_Lon': -73.959947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-06 12:12:00', 'Trip_Pickup_DateTime': '2009-06-06 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7758, 'End_Lon': -73.97625, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748953, 'Start_Lon': -73.975665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-05 11:58:00', 'Trip_Pickup_DateTime': '2009-06-05 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765412, 'End_Lon': -73.979373, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770802, 'Start_Lon': -73.950877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-04 01:43:00', 'Trip_Pickup_DateTime': '2009-06-04 01:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735998, 'End_Lon': -73.987363, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752247, 'Start_Lon': -73.974885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-29 17:54:00', 'Trip_Pickup_DateTime': '2009-06-29 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741293, 'End_Lon': -74.004903, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-07 23:56:00', 'Trip_Pickup_DateTime': '2009-06-07 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746948, 'End_Lon': -73.981457, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757095, 'Start_Lon': -73.978463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-29 18:46:00', 'Trip_Pickup_DateTime': '2009-06-29 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755663, 'End_Lon': -73.987, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744663, 'Start_Lon': -74.002562, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-05 07:45:00', 'Trip_Pickup_DateTime': '2009-06-05 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75776, 'End_Lon': -73.97856, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783435, 'Start_Lon': -73.980343, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-05 11:03:00', 'Trip_Pickup_DateTime': '2009-06-05 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722943, 'End_Lon': -73.983588, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75367, 'Start_Lon': -73.983677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-05 23:57:00', 'Trip_Pickup_DateTime': '2009-06-05 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.67576, 'End_Lon': -73.981428, 'Fare_Amt': 19.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749328, 'Start_Lon': -73.974992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 7.58, 'Trip_Dropoff_DateTime': '2009-06-07 02:08:00', 'Trip_Pickup_DateTime': '2009-06-07 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781542, 'End_Lon': -73.975753, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789598, 'Start_Lon': -73.977268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-29 20:15:00', 'Trip_Pickup_DateTime': '2009-06-29 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744185, 'End_Lon': -73.977102, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742713, 'Start_Lon': -74.004212, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-05 02:18:00', 'Trip_Pickup_DateTime': '2009-06-05 02:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775055, 'End_Lon': -73.98217, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778873, 'Start_Lon': -73.955893, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-07 19:42:00', 'Trip_Pickup_DateTime': '2009-06-07 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799597, 'End_Lon': -73.966352, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740345, 'Start_Lon': -74.006052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.79, 'Trip_Dropoff_DateTime': '2009-06-04 23:47:00', 'Trip_Pickup_DateTime': '2009-06-04 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.700232, 'End_Lon': -73.967653, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730483, 'Start_Lon': -74.004722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 4.85, 'Trip_Dropoff_DateTime': '2009-06-08 11:47:00', 'Trip_Pickup_DateTime': '2009-06-08 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764943, 'End_Lon': -73.977182, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760642, 'Start_Lon': -73.980135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-03 10:01:00', 'Trip_Pickup_DateTime': '2009-06-03 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753538, 'End_Lon': -73.972088, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749003, 'Start_Lon': -73.972397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-30 19:21:00', 'Trip_Pickup_DateTime': '2009-06-30 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747717, 'End_Lon': -74.003428, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747388, 'Start_Lon': -73.977025, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-29 15:22:00', 'Trip_Pickup_DateTime': '2009-06-29 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779177, 'End_Lon': -73.981263, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72521, 'Start_Lon': -73.99815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.66, 'Trip_Dropoff_DateTime': '2009-06-03 11:30:00', 'Trip_Pickup_DateTime': '2009-06-03 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728718, 'End_Lon': -73.991107, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75131, 'Start_Lon': -73.991448, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-29 11:41:00', 'Trip_Pickup_DateTime': '2009-06-29 11:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726312, 'End_Lon': -73.989313, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730558, 'Start_Lon': -73.980595, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-03 20:36:00', 'Trip_Pickup_DateTime': '2009-06-03 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733287, 'End_Lon': -73.995812, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761537, 'Start_Lon': -73.974993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-03 01:21:00', 'Trip_Pickup_DateTime': '2009-06-03 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.701128, 'End_Lon': -73.988533, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747027, 'Start_Lon': -73.981177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 5.74, 'Trip_Dropoff_DateTime': '2009-06-30 08:22:00', 'Trip_Pickup_DateTime': '2009-06-30 08:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730875, 'End_Lon': -73.991923, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762253, 'Start_Lon': -73.968178, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-30 19:38:00', 'Trip_Pickup_DateTime': '2009-06-30 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767693, 'End_Lon': -73.965402, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749917, 'Start_Lon': -73.992213, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-23 00:01:00', 'Trip_Pickup_DateTime': '2009-06-22 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714133, 'End_Lon': -74.011285, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755833, 'Start_Lon': -73.99465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-02 10:06:00', 'Trip_Pickup_DateTime': '2009-06-02 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737817, 'End_Lon': -73.988112, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743988, 'Start_Lon': -73.983737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-08 12:15:00', 'Trip_Pickup_DateTime': '2009-06-08 12:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775083, 'End_Lon': -73.988157, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787382, 'Start_Lon': -73.967923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-08 09:10:00', 'Trip_Pickup_DateTime': '2009-06-08 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713462, 'End_Lon': -74.010895, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739173, 'Start_Lon': -73.991563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-12 08:56:00', 'Trip_Pickup_DateTime': '2009-06-12 08:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747837, 'End_Lon': -73.973842, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777902, 'Start_Lon': -73.943823, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-12 08:47:00', 'Trip_Pickup_DateTime': '2009-06-12 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70438, 'End_Lon': -74.016657, 'Fare_Amt': 20.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76173, 'Start_Lon': -73.972632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 6.09, 'Trip_Dropoff_DateTime': '2009-06-02 10:58:00', 'Trip_Pickup_DateTime': '2009-06-02 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75575, 'End_Lon': -73.986092, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753012, 'Start_Lon': -73.973067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-02 10:00:00', 'Trip_Pickup_DateTime': '2009-06-02 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775965, 'End_Lon': -73.957287, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759825, 'Start_Lon': -73.9688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-29 17:28:00', 'Trip_Pickup_DateTime': '2009-06-29 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740092, 'End_Lon': -73.990008, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767717, 'Start_Lon': -73.95318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.57, 'Trip_Dropoff_DateTime': '2009-06-02 10:12:00', 'Trip_Pickup_DateTime': '2009-06-02 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793557, 'End_Lon': -73.972733, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804088, 'Start_Lon': -73.966923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-06 18:59:00', 'Trip_Pickup_DateTime': '2009-06-06 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764212, 'End_Lon': -73.970608, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77443, 'Start_Lon': -73.96129, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-30 13:10:00', 'Trip_Pickup_DateTime': '2009-06-30 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766273, 'End_Lon': -73.965245, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748747, 'Start_Lon': -73.973138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-05 12:58:00', 'Trip_Pickup_DateTime': '2009-06-05 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758288, 'End_Lon': -73.965277, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774275, 'Start_Lon': -73.981135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-08 11:22:00', 'Trip_Pickup_DateTime': '2009-06-08 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752345, 'End_Lon': -73.985582, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764687, 'Start_Lon': -73.978358, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-02 11:12:00', 'Trip_Pickup_DateTime': '2009-06-02 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779843, 'End_Lon': -73.982802, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741762, 'Start_Lon': -73.975127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.59, 'Trip_Dropoff_DateTime': '2009-06-04 00:50:00', 'Trip_Pickup_DateTime': '2009-06-04 00:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763578, 'End_Lon': -73.967865, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.697038, 'Start_Lon': -73.99119, 'Tip_Amt': 4.42, 'Tolls_Amt': 0.0, 'Total_Amt': 26.52, 'Trip_Distance': 7.99, 'Trip_Dropoff_DateTime': '2009-06-08 11:27:00', 'Trip_Pickup_DateTime': '2009-06-08 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74363, 'End_Lon': -73.992373, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744527, 'Start_Lon': -73.983998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-05 22:39:00', 'Trip_Pickup_DateTime': '2009-06-05 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759902, 'End_Lon': -73.96878, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758533, 'Start_Lon': -73.977808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-08 16:19:00', 'Trip_Pickup_DateTime': '2009-06-08 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755778, 'End_Lon': -73.974932, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720952, 'Start_Lon': -73.997605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-30 17:43:00', 'Trip_Pickup_DateTime': '2009-06-30 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752017, 'End_Lon': -73.977575, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769933, 'Start_Lon': -73.954495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-08 21:27:00', 'Trip_Pickup_DateTime': '2009-06-08 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761375, 'End_Lon': -73.986697, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75602, 'Start_Lon': -73.990847, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-06 21:10:00', 'Trip_Pickup_DateTime': '2009-06-06 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-04 21:18:00', 'Trip_Pickup_DateTime': '2009-06-04 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727688, 'End_Lon': -73.95199, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749728, 'Start_Lon': -73.981405, 'Tip_Amt': 3.0, 'Tolls_Amt': 4.15, 'Total_Amt': 17.75, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-04 22:21:00', 'Trip_Pickup_DateTime': '2009-06-04 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721212, 'End_Lon': -73.981478, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762812, 'Start_Lon': -73.96978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.87, 'Trip_Dropoff_DateTime': '2009-06-03 23:19:00', 'Trip_Pickup_DateTime': '2009-06-03 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760237, 'End_Lon': -73.996845, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78151, 'Start_Lon': -73.975883, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-03 21:09:00', 'Trip_Pickup_DateTime': '2009-06-03 20:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762907, 'End_Lon': -73.983843, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752373, 'Start_Lon': -73.977852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-04 20:38:00', 'Trip_Pickup_DateTime': '2009-06-04 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751393, 'End_Lon': -73.991608, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764578, 'Start_Lon': -73.998437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-08 20:50:00', 'Trip_Pickup_DateTime': '2009-06-08 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726293, 'End_Lon': -74.005569, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.75236, 'Start_Lon': -73.978102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-19 12:06:39', 'Trip_Pickup_DateTime': '2009-06-19 11:47:50', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.74051, 'End_Lon': -73.983968, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766932, 'Start_Lon': -73.98362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-05 01:22:00', 'Trip_Pickup_DateTime': '2009-06-05 01:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724818, 'End_Lon': -73.998313, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759407, 'Start_Lon': -73.973588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-06 15:42:00', 'Trip_Pickup_DateTime': '2009-06-06 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786773, 'End_Lon': -73.950328, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767632, 'Start_Lon': -73.968965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-29 15:48:00', 'Trip_Pickup_DateTime': '2009-06-29 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755702, 'End_Lon': -73.991055, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745248, 'Start_Lon': -73.991033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-04 14:08:00', 'Trip_Pickup_DateTime': '2009-06-04 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773268, 'End_Lon': -73.982367, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76519, 'Start_Lon': -73.972823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-03 20:33:00', 'Trip_Pickup_DateTime': '2009-06-03 20:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76423, 'End_Lon': -73.973687, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76423, 'Start_Lon': -73.973687, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-06 23:40:00', 'Trip_Pickup_DateTime': '2009-06-06 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757133, 'End_Lon': -73.990447, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761652, 'Start_Lon': -73.98196, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-30 22:07:00', 'Trip_Pickup_DateTime': '2009-06-30 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765498, 'End_Lon': -73.963022, 'Fare_Amt': 2.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764987, 'Start_Lon': -73.963283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.05, 'Trip_Dropoff_DateTime': '2009-06-02 17:51:00', 'Trip_Pickup_DateTime': '2009-06-02 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747745, 'End_Lon': -73.98876, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77557, 'Start_Lon': -73.958468, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-30 09:29:00', 'Trip_Pickup_DateTime': '2009-06-30 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738387, 'End_Lon': -73.987838, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784317, 'Start_Lon': -73.97381, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-04 14:55:00', 'Trip_Pickup_DateTime': '2009-06-04 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743513, 'End_Lon': -73.992428, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740603, 'Start_Lon': -74.00471, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-05 05:01:00', 'Trip_Pickup_DateTime': '2009-06-05 04:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780433, 'End_Lon': -73.952103, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723193, 'Start_Lon': -73.998385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 5.46, 'Trip_Dropoff_DateTime': '2009-06-07 14:32:00', 'Trip_Pickup_DateTime': '2009-06-07 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743827, 'End_Lon': -73.976723, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756123, 'Start_Lon': -73.966198, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-05 08:27:00', 'Trip_Pickup_DateTime': '2009-06-05 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721483, 'End_Lon': -73.98409, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745068, 'Start_Lon': -73.992337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-03 21:10:00', 'Trip_Pickup_DateTime': '2009-06-03 20:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758343, 'End_Lon': -73.985392, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76291, 'Start_Lon': -73.99297, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-08 11:47:00', 'Trip_Pickup_DateTime': '2009-06-08 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71966, 'End_Lon': -73.982803, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752947, 'Start_Lon': -73.989178, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-07 03:31:00', 'Trip_Pickup_DateTime': '2009-06-07 03:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758523, 'End_Lon': -73.98752, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726803, 'Start_Lon': -74.003458, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-08 12:26:00', 'Trip_Pickup_DateTime': '2009-06-08 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762083, 'End_Lon': -73.985827, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758635, 'Start_Lon': -73.986293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-30 18:02:00', 'Trip_Pickup_DateTime': '2009-06-30 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737742, 'End_Lon': -74.001753, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734578, 'Start_Lon': -73.989295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-29 21:14:00', 'Trip_Pickup_DateTime': '2009-06-29 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75424, 'End_Lon': -73.978455, 'Fare_Amt': 10.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784908, 'Start_Lon': -73.969367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-02 14:30:00', 'Trip_Pickup_DateTime': '2009-06-02 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766945, 'End_Lon': -73.956827, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745523, 'Start_Lon': -73.978303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-02 23:02:00', 'Trip_Pickup_DateTime': '2009-06-02 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733855, 'End_Lon': -73.989843, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721112, 'Start_Lon': -73.983988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-04 18:10:00', 'Trip_Pickup_DateTime': '2009-06-04 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744332, 'End_Lon': -73.984243, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775422, 'Start_Lon': -73.980328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-08 13:06:00', 'Trip_Pickup_DateTime': '2009-06-08 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801975, 'End_Lon': -73.967752, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.789623, 'Start_Lon': -73.975522, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-29 20:59:00', 'Trip_Pickup_DateTime': '2009-06-29 20:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726778, 'End_Lon': -73.985798, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746397, 'Start_Lon': -73.974638, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-04 19:24:00', 'Trip_Pickup_DateTime': '2009-06-04 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77554, 'End_Lon': -73.917145, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761342, 'Start_Lon': -73.98546, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 5.62, 'Trip_Dropoff_DateTime': '2009-06-04 23:59:00', 'Trip_Pickup_DateTime': '2009-06-04 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756725, 'End_Lon': -73.960953, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766308, 'Start_Lon': -73.977403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-07 14:52:00', 'Trip_Pickup_DateTime': '2009-06-07 14:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746327, 'End_Lon': -73.977502, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756343, 'Start_Lon': -73.96758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-04 19:59:00', 'Trip_Pickup_DateTime': '2009-06-04 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.848665, 'End_Lon': -73.939005, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.822282, 'Start_Lon': -73.953657, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-06 07:34:00', 'Trip_Pickup_DateTime': '2009-06-06 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774355, 'End_Lon': -73.977535, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761138, 'Start_Lon': -73.969047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-03 19:21:00', 'Trip_Pickup_DateTime': '2009-06-03 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748647, 'End_Lon': -73.984372, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762675, 'Start_Lon': -73.981705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-06 11:59:00', 'Trip_Pickup_DateTime': '2009-06-06 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753245, 'End_Lon': -73.99806, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744557, 'Start_Lon': -73.989025, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-02 10:41:00', 'Trip_Pickup_DateTime': '2009-06-02 10:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687033, 'End_Lon': -73.985203, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760287, 'Start_Lon': -73.978277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-05 01:11:00', 'Trip_Pickup_DateTime': '2009-06-05 00:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755008, 'End_Lon': -73.9885, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739483, 'Start_Lon': -73.99535, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-02 18:11:00', 'Trip_Pickup_DateTime': '2009-06-02 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.69307, 'End_Lon': -73.969867, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767218, 'Start_Lon': -73.989895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.01, 'Trip_Dropoff_DateTime': '2009-06-04 00:04:00', 'Trip_Pickup_DateTime': '2009-06-03 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77151, 'End_Lon': -73.963592, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780823, 'Start_Lon': -73.949697, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-30 16:11:00', 'Trip_Pickup_DateTime': '2009-06-30 16:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774427, 'End_Lon': -73.873165, 'Fare_Amt': 31.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750922, 'Start_Lon': -74.005608, 'Tip_Amt': 15.0, 'Tolls_Amt': 4.15, 'Total_Amt': 51.45, 'Trip_Distance': 10.3, 'Trip_Dropoff_DateTime': '2009-06-30 18:23:00', 'Trip_Pickup_DateTime': '2009-06-30 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789605, 'End_Lon': -73.975348, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784158, 'Start_Lon': -73.958557, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-04 22:47:00', 'Trip_Pickup_DateTime': '2009-06-04 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725542, 'End_Lon': -73.945195, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718115, 'Start_Lon': -73.990742, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-06 02:19:00', 'Trip_Pickup_DateTime': '2009-06-06 02:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780595, 'End_Lon': -73.953032, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757783, 'Start_Lon': -73.975128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-07 16:30:00', 'Trip_Pickup_DateTime': '2009-06-07 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745112, 'End_Lon': -73.990042, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756505, 'Start_Lon': -73.976682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-02 13:17:00', 'Trip_Pickup_DateTime': '2009-06-02 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746293, 'End_Lon': -73.996832, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735688, 'Start_Lon': -74.0052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-08 16:17:00', 'Trip_Pickup_DateTime': '2009-06-08 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761587, 'End_Lon': -73.968713, 'Fare_Amt': 12.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731952, 'Start_Lon': -74.00382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-04 09:05:00', 'Trip_Pickup_DateTime': '2009-06-04 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776667, 'End_Lon': -73.955572, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757547, 'Start_Lon': -73.970128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-08 12:42:00', 'Trip_Pickup_DateTime': '2009-06-08 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732868, 'End_Lon': -73.989, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73447, 'Start_Lon': -74.006058, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-07 21:04:00', 'Trip_Pickup_DateTime': '2009-06-07 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714618, 'End_Lon': -73.999092, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751775, 'Start_Lon': -73.993723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-05 12:53:00', 'Trip_Pickup_DateTime': '2009-06-05 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798398, 'End_Lon': -73.96721, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784825, 'Start_Lon': -73.974243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-03 09:27:00', 'Trip_Pickup_DateTime': '2009-06-03 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762118, 'End_Lon': -73.986063, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749458, 'Start_Lon': -73.971372, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-30 19:13:00', 'Trip_Pickup_DateTime': '2009-06-30 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78416, 'End_Lon': -73.948777, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773922, 'Start_Lon': -73.872465, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 22.75, 'Trip_Distance': 7.4, 'Trip_Dropoff_DateTime': '2009-06-29 20:41:00', 'Trip_Pickup_DateTime': '2009-06-29 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747068, 'End_Lon': -73.989628, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773712, 'Start_Lon': -73.957715, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-08 09:51:00', 'Trip_Pickup_DateTime': '2009-06-08 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772838, 'End_Lon': -73.962643, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764685, 'Start_Lon': -73.960285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-04 12:48:00', 'Trip_Pickup_DateTime': '2009-06-04 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741482, 'End_Lon': -74.005238, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749707, 'Start_Lon': -73.987892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-05 21:34:00', 'Trip_Pickup_DateTime': '2009-06-05 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768818, 'End_Lon': -73.982192, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.801172, 'Start_Lon': -73.967962, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-06 07:02:00', 'Trip_Pickup_DateTime': '2009-06-06 06:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757135, 'End_Lon': -73.976745, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744162, 'Start_Lon': -73.987587, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-29 23:46:00', 'Trip_Pickup_DateTime': '2009-06-29 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766228, 'End_Lon': -73.981923, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752213, 'Start_Lon': -73.97807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-08 07:42:00', 'Trip_Pickup_DateTime': '2009-06-08 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760522, 'End_Lon': -73.979755, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775018, 'Start_Lon': -73.951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-08 07:07:00', 'Trip_Pickup_DateTime': '2009-06-08 06:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736065, 'End_Lon': -73.990952, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74435, 'Start_Lon': -73.996145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-06 16:11:00', 'Trip_Pickup_DateTime': '2009-06-06 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731705, 'End_Lon': -73.957878, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722053, 'Start_Lon': -73.983377, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-30 23:27:00', 'Trip_Pickup_DateTime': '2009-06-30 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75954, 'End_Lon': -73.980617, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78199, 'Start_Lon': -73.979717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-08 08:32:00', 'Trip_Pickup_DateTime': '2009-06-08 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750758, 'End_Lon': -73.978228, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737227, 'Start_Lon': -73.978387, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-02 16:45:00', 'Trip_Pickup_DateTime': '2009-06-02 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770537, 'End_Lon': -73.96633, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771537, 'Start_Lon': -73.982498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-02 14:35:00', 'Trip_Pickup_DateTime': '2009-06-02 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695413, 'End_Lon': -74.177552, 'Fare_Amt': 49.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721125, 'Start_Lon': -73.993493, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.0, 'Total_Amt': 57.5, 'Trip_Distance': 13.7, 'Trip_Dropoff_DateTime': '2009-06-30 16:05:00', 'Trip_Pickup_DateTime': '2009-06-30 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721335, 'End_Lon': -73.980867, 'Fare_Amt': 2.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72162, 'Start_Lon': -73.980673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-29 20:53:00', 'Trip_Pickup_DateTime': '2009-06-29 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769982, 'End_Lon': -73.986315, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.805713, 'Start_Lon': -73.961905, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-08 13:55:00', 'Trip_Pickup_DateTime': '2009-06-08 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769537, 'End_Lon': -73.967032, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751913, 'Start_Lon': -73.97623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-03 10:00:00', 'Trip_Pickup_DateTime': '2009-06-03 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75209, 'End_Lon': -73.992868, 'Fare_Amt': 28.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77393, 'Start_Lon': -73.872208, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 32.25, 'Trip_Distance': 11.65, 'Trip_Dropoff_DateTime': '2009-06-08 13:59:00', 'Trip_Pickup_DateTime': '2009-06-08 13:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764978, 'End_Lon': -73.971822, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742033, 'Start_Lon': -73.982905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-05 22:37:00', 'Trip_Pickup_DateTime': '2009-06-05 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740032, 'End_Lon': -73.979018, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754988, 'Start_Lon': -73.968485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-30 14:08:00', 'Trip_Pickup_DateTime': '2009-06-30 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72841, 'End_Lon': -73.999597, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749862, 'Start_Lon': -73.991438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-02 20:12:00', 'Trip_Pickup_DateTime': '2009-06-02 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752118, 'End_Lon': -73.820758, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759848, 'Start_Lon': -73.829538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-08 14:04:00', 'Trip_Pickup_DateTime': '2009-06-08 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74376, 'End_Lon': -74.002355, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747358, 'Start_Lon': -73.993757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-05 14:21:00', 'Trip_Pickup_DateTime': '2009-06-05 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723778, 'End_Lon': -73.979037, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721913, 'Start_Lon': -73.993427, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-07 00:11:00', 'Trip_Pickup_DateTime': '2009-06-07 00:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769002, 'End_Lon': -73.956593, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.641322, 'Start_Lon': -73.788528, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 20.33, 'Trip_Dropoff_DateTime': '2009-06-07 18:38:00', 'Trip_Pickup_DateTime': '2009-06-07 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721535, 'End_Lon': -73.980658, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749945, 'Start_Lon': -73.98118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-06 23:19:00', 'Trip_Pickup_DateTime': '2009-06-06 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.63441, 'End_Lon': -74.036822, 'Fare_Amt': 31.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763568, 'Start_Lon': -73.96207, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 35.95, 'Trip_Distance': 13.94, 'Trip_Dropoff_DateTime': '2009-06-03 23:07:00', 'Trip_Pickup_DateTime': '2009-06-03 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768412, 'End_Lon': -73.967893, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80426, 'Start_Lon': -73.966503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-03 16:52:00', 'Trip_Pickup_DateTime': '2009-06-03 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771912, 'End_Lon': -73.979177, 'Fare_Amt': 27.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768812, 'Start_Lon': -73.862818, 'Tip_Amt': 6.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.95, 'Trip_Distance': 11.17, 'Trip_Dropoff_DateTime': '2009-06-02 21:11:00', 'Trip_Pickup_DateTime': '2009-06-02 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76511, 'End_Lon': -73.914023, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757955, 'Start_Lon': -73.916783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-06 23:43:00', 'Trip_Pickup_DateTime': '2009-06-06 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739432, 'End_Lon': -74.006348, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745477, 'Start_Lon': -73.991177, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-04 08:58:00', 'Trip_Pickup_DateTime': '2009-06-04 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716825, 'End_Lon': -74.006345, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727865, 'Start_Lon': -74.001958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-05 11:43:00', 'Trip_Pickup_DateTime': '2009-06-05 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759573, 'End_Lon': -73.976717, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773097, 'Start_Lon': -73.95425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-30 07:28:00', 'Trip_Pickup_DateTime': '2009-06-30 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791382, 'End_Lon': -73.964762, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802462, 'Start_Lon': -73.96811, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-04 07:57:00', 'Trip_Pickup_DateTime': '2009-06-04 07:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755207, 'End_Lon': -73.979268, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72968, 'Start_Lon': -73.991412, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-18 09:45:00', 'Trip_Pickup_DateTime': '2009-06-18 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709098, 'End_Lon': -73.74799, 'Fare_Amt': 25.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768987, 'Start_Lon': -73.862757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.2, 'Trip_Distance': 10.95, 'Trip_Dropoff_DateTime': '2009-06-15 22:51:00', 'Trip_Pickup_DateTime': '2009-06-15 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711288, 'End_Lon': -73.878132, 'Fare_Amt': 31.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751315, 'Start_Lon': -74.003022, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.8, 'Trip_Distance': 10.75, 'Trip_Dropoff_DateTime': '2009-06-02 04:21:00', 'Trip_Pickup_DateTime': '2009-06-02 03:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76342, 'End_Lon': -73.985413, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730582, 'Start_Lon': -74.001622, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-07 02:34:00', 'Trip_Pickup_DateTime': '2009-06-07 02:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742763, 'End_Lon': -73.974143, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74606, 'Start_Lon': -73.97924, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-03 21:53:00', 'Trip_Pickup_DateTime': '2009-06-03 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768357, 'End_Lon': -73.861703, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755013, 'Start_Lon': -73.972663, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.25, 'Trip_Distance': 11.0, 'Trip_Dropoff_DateTime': '2009-06-02 16:51:00', 'Trip_Pickup_DateTime': '2009-06-02 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760117, 'End_Lon': -73.978178, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731818, 'Start_Lon': -73.982248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-16 06:48:00', 'Trip_Pickup_DateTime': '2009-06-16 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73874, 'End_Lon': -73.98556, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722235, 'Start_Lon': -73.993275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-29 16:04:00', 'Trip_Pickup_DateTime': '2009-06-29 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757177, 'End_Lon': -73.976002, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750933, 'Start_Lon': -74.005658, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-04 15:38:00', 'Trip_Pickup_DateTime': '2009-06-04 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728698, 'End_Lon': -73.984623, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727917, 'Start_Lon': -73.979158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-06 00:52:00', 'Trip_Pickup_DateTime': '2009-06-06 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772948, 'End_Lon': -73.954165, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784445, 'Start_Lon': -73.977268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-05 01:21:00', 'Trip_Pickup_DateTime': '2009-06-05 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768352, 'End_Lon': -73.908023, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762595, 'Start_Lon': -73.98734, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.41, 'Trip_Dropoff_DateTime': '2009-06-06 00:32:00', 'Trip_Pickup_DateTime': '2009-06-06 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-03 13:41:00', 'Trip_Pickup_DateTime': '2009-06-03 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764735, 'End_Lon': -73.96387, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780108, 'Start_Lon': -73.96156, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-03 14:36:00', 'Trip_Pickup_DateTime': '2009-06-03 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708602, 'End_Lon': -74.015418, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731925, 'Start_Lon': -74.007535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-08 06:49:00', 'Trip_Pickup_DateTime': '2009-06-08 06:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790598, 'End_Lon': -73.9475, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810772, 'Start_Lon': -73.939112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-03 20:14:00', 'Trip_Pickup_DateTime': '2009-06-03 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.797067, 'End_Lon': -73.971723, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765052, 'Start_Lon': -73.961182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-05 23:50:00', 'Trip_Pickup_DateTime': '2009-06-05 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70513, 'End_Lon': -74.016843, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757453, 'Start_Lon': -73.985918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 4.25, 'Trip_Dropoff_DateTime': '2009-06-07 10:26:00', 'Trip_Pickup_DateTime': '2009-06-07 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74372, 'End_Lon': -73.984417, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758378, 'Start_Lon': -73.983537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-04 19:38:00', 'Trip_Pickup_DateTime': '2009-06-04 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73944, 'End_Lon': -73.982088, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719682, 'Start_Lon': -73.993115, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-06 01:44:00', 'Trip_Pickup_DateTime': '2009-06-06 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776657, 'End_Lon': -73.98617, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783998, 'Start_Lon': -73.974042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-08 12:17:00', 'Trip_Pickup_DateTime': '2009-06-08 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747788, 'End_Lon': -73.982963, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73156, 'Start_Lon': -73.988235, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-05 08:11:00', 'Trip_Pickup_DateTime': '2009-06-05 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.674867, 'End_Lon': -73.960237, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72, 'Start_Lon': -73.999215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.15, 'Trip_Dropoff_DateTime': '2009-06-30 00:50:00', 'Trip_Pickup_DateTime': '2009-06-30 00:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757, 'End_Lon': -73.976463, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745553, 'Start_Lon': -73.982503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-04 09:19:00', 'Trip_Pickup_DateTime': '2009-06-04 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793042, 'End_Lon': -73.971088, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777988, 'Start_Lon': -73.988867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-06 10:21:00', 'Trip_Pickup_DateTime': '2009-06-06 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777582, 'End_Lon': -73.96417, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781442, 'Start_Lon': -73.972193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-30 13:25:00', 'Trip_Pickup_DateTime': '2009-06-30 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779508, 'End_Lon': -73.959698, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786423, 'Start_Lon': -73.972247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-05 17:30:00', 'Trip_Pickup_DateTime': '2009-06-05 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.889937, 'End_Lon': -73.915242, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751268, 'Start_Lon': -73.994037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.1, 'Trip_Distance': 11.76, 'Trip_Dropoff_DateTime': '2009-06-30 15:17:00', 'Trip_Pickup_DateTime': '2009-06-30 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772585, 'End_Lon': -73.946983, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727387, 'Start_Lon': -73.99358, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 4.55, 'Trip_Dropoff_DateTime': '2009-06-07 01:52:00', 'Trip_Pickup_DateTime': '2009-06-07 01:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731787, 'End_Lon': -73.996817, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76434, 'Start_Lon': -73.973758, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-30 11:49:00', 'Trip_Pickup_DateTime': '2009-06-30 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723082, 'End_Lon': -73.99695, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717352, 'Start_Lon': -74.000342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-06 16:20:00', 'Trip_Pickup_DateTime': '2009-06-06 16:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758068, 'End_Lon': -73.970852, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707208, 'Start_Lon': -74.007517, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.62, 'Trip_Dropoff_DateTime': '2009-06-07 10:16:00', 'Trip_Pickup_DateTime': '2009-06-07 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758538, 'End_Lon': -74.000338, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790577, 'Start_Lon': -73.976643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-29 13:55:00', 'Trip_Pickup_DateTime': '2009-06-29 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724372, 'End_Lon': -73.997618, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73647, 'Start_Lon': -74.000903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-05 12:49:00', 'Trip_Pickup_DateTime': '2009-06-05 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68949, 'End_Lon': -73.994562, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690202, 'Start_Lon': -73.992207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-03 16:31:00', 'Trip_Pickup_DateTime': '2009-06-03 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704682, 'End_Lon': -74.010368, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715503, 'Start_Lon': -74.009297, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-06 08:39:00', 'Trip_Pickup_DateTime': '2009-06-06 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77182, 'End_Lon': -73.982395, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724198, 'Start_Lon': -73.992278, 'Tip_Amt': 4.22, 'Tolls_Amt': 0.0, 'Total_Amt': 25.32, 'Trip_Distance': 4.45, 'Trip_Dropoff_DateTime': '2009-06-04 19:06:00', 'Trip_Pickup_DateTime': '2009-06-04 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768252, 'End_Lon': -73.98248, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784233, 'Start_Lon': -73.977458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-05 20:54:00', 'Trip_Pickup_DateTime': '2009-06-05 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717165, 'End_Lon': -73.958448, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724868, 'Start_Lon': -73.995443, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-03 23:33:00', 'Trip_Pickup_DateTime': '2009-06-03 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729472, 'End_Lon': -74.001141, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.746479, 'Start_Lon': -73.986837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-29 15:48:50', 'Trip_Pickup_DateTime': '2009-06-29 15:41:38', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.72335, 'End_Lon': -73.995648, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72212, 'Start_Lon': -73.980385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-05 08:23:00', 'Trip_Pickup_DateTime': '2009-06-05 08:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755717, 'End_Lon': -73.990568, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75073, 'Start_Lon': -73.991062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-03 22:16:00', 'Trip_Pickup_DateTime': '2009-06-03 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752782, 'End_Lon': -73.979505, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763593, 'Start_Lon': -73.987257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-05 21:51:00', 'Trip_Pickup_DateTime': '2009-06-05 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734113, 'End_Lon': -73.987757, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740122, 'Start_Lon': -73.983358, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-06 21:48:00', 'Trip_Pickup_DateTime': '2009-06-06 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792627, 'End_Lon': -73.976882, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644773, 'Start_Lon': -73.781938, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 20.42, 'Trip_Dropoff_DateTime': '2009-06-16 08:18:00', 'Trip_Pickup_DateTime': '2009-06-16 07:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765677, 'End_Lon': -73.972012, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787867, 'Start_Lon': -73.955672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-08 07:39:00', 'Trip_Pickup_DateTime': '2009-06-08 07:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.885745, 'End_Lon': -73.911797, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77896, 'Start_Lon': -73.984562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.3, 'Trip_Distance': 8.62, 'Trip_Dropoff_DateTime': '2009-06-05 09:02:00', 'Trip_Pickup_DateTime': '2009-06-05 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776798, 'End_Lon': -73.961225, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.806502, 'Start_Lon': -73.953875, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-06 11:23:00', 'Trip_Pickup_DateTime': '2009-06-06 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754828, 'End_Lon': -73.97025, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734773, 'Start_Lon': -73.980147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-30 07:19:00', 'Trip_Pickup_DateTime': '2009-06-30 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735322, 'End_Lon': -74.000317, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.685855, 'Start_Lon': -73.991102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-07 04:35:00', 'Trip_Pickup_DateTime': '2009-06-07 04:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765228, 'End_Lon': -73.96589, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772243, 'Start_Lon': -73.982285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-04 12:09:00', 'Trip_Pickup_DateTime': '2009-06-04 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798905, 'End_Lon': -73.963143, 'Fare_Amt': 16.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72884, 'Start_Lon': -74.007688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.99, 'Trip_Dropoff_DateTime': '2009-06-05 22:36:00', 'Trip_Pickup_DateTime': '2009-06-05 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760683, 'End_Lon': -73.974653, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756745, 'Start_Lon': -73.989352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-02 08:00:00', 'Trip_Pickup_DateTime': '2009-06-02 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.683448, 'End_Lon': -73.966867, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773598, 'Start_Lon': -73.98118, 'Tip_Amt': 5.52, 'Tolls_Amt': 0.0, 'Total_Amt': 27.62, 'Trip_Distance': 7.73, 'Trip_Dropoff_DateTime': '2009-06-04 08:23:00', 'Trip_Pickup_DateTime': '2009-06-04 07:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751633, 'End_Lon': -73.992012, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748143, 'Start_Lon': -73.971142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-08 08:22:00', 'Trip_Pickup_DateTime': '2009-06-08 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767293, 'End_Lon': -73.986202, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783878, 'Start_Lon': -73.95233, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-06 00:32:00', 'Trip_Pickup_DateTime': '2009-06-06 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644048, 'End_Lon': -73.782603, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.795515, 'Start_Lon': -73.97384, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 19.6, 'Trip_Dropoff_DateTime': '2009-06-06 13:35:00', 'Trip_Pickup_DateTime': '2009-06-06 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759433, 'End_Lon': -73.980465, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756212, 'Start_Lon': -73.990065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-16 07:39:00', 'Trip_Pickup_DateTime': '2009-06-16 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747908, 'End_Lon': -73.992218, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76136, 'Start_Lon': -73.983943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-02 20:40:00', 'Trip_Pickup_DateTime': '2009-06-02 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752265, 'End_Lon': -73.973683, 'Fare_Amt': 21.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771092, 'Start_Lon': -73.865633, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.45, 'Trip_Distance': 8.75, 'Trip_Dropoff_DateTime': '2009-06-02 08:17:00', 'Trip_Pickup_DateTime': '2009-06-02 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728892, 'End_Lon': -74.002505, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740848, 'Start_Lon': -74.005452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-06 22:03:00', 'Trip_Pickup_DateTime': '2009-06-06 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79922, 'End_Lon': -73.962607, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753268, 'Start_Lon': -73.992787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-02 15:38:00', 'Trip_Pickup_DateTime': '2009-06-02 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738423, 'End_Lon': -73.999133, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73328, 'Start_Lon': -73.999855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-02 18:41:00', 'Trip_Pickup_DateTime': '2009-06-02 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782462, 'End_Lon': -73.97267, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760502, 'Start_Lon': -73.980798, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 10.25, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-02 19:31:00', 'Trip_Pickup_DateTime': '2009-06-02 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75555, 'End_Lon': -73.974928, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76164, 'Start_Lon': -73.961063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-16 07:34:00', 'Trip_Pickup_DateTime': '2009-06-16 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-07 03:24:00', 'Trip_Pickup_DateTime': '2009-06-07 03:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70821, 'End_Lon': -74.0145, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.648693, 'Start_Lon': -73.78346, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 21.62, 'Trip_Dropoff_DateTime': '2009-06-08 02:00:00', 'Trip_Pickup_DateTime': '2009-06-08 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744008, 'End_Lon': -74.00667, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79824, 'Start_Lon': -73.969252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.59, 'Trip_Dropoff_DateTime': '2009-06-16 07:59:00', 'Trip_Pickup_DateTime': '2009-06-16 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723758, 'End_Lon': -73.98555, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734315, 'Start_Lon': -74.003843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-06 03:34:00', 'Trip_Pickup_DateTime': '2009-06-06 03:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770835, 'End_Lon': -73.981067, 'Fare_Amt': 25.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77414, 'Start_Lon': -73.874567, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85, 'Trip_Distance': 10.92, 'Trip_Dropoff_DateTime': '2009-06-07 17:02:00', 'Trip_Pickup_DateTime': '2009-06-07 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771077, 'End_Lon': -73.96397, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786513, 'Start_Lon': -73.952755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-08 11:28:00', 'Trip_Pickup_DateTime': '2009-06-08 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724553, 'End_Lon': -73.997842, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750257, 'Start_Lon': -73.991235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-04 13:11:00', 'Trip_Pickup_DateTime': '2009-06-04 12:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764482, 'End_Lon': -73.979963, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77431, 'Start_Lon': -73.977273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-07 14:17:00', 'Trip_Pickup_DateTime': '2009-06-07 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.666423, 'End_Lon': -73.77986, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644805, 'Start_Lon': -73.781507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-02 17:33:00', 'Trip_Pickup_DateTime': '2009-06-02 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769322, 'End_Lon': -73.982218, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782422, 'Start_Lon': -73.97151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-03 12:32:00', 'Trip_Pickup_DateTime': '2009-06-03 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769782, 'End_Lon': -73.983125, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742125, 'Start_Lon': -73.974633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-04 16:14:00', 'Trip_Pickup_DateTime': '2009-06-04 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80994, 'End_Lon': -73.951327, 'Fare_Amt': 18.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774037, 'Start_Lon': -73.948612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.8, 'Trip_Dropoff_DateTime': '2009-06-05 23:14:00', 'Trip_Pickup_DateTime': '2009-06-05 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715168, 'End_Lon': -74.009417, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761985, 'Start_Lon': -73.965778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.19, 'Trip_Dropoff_DateTime': '2009-06-03 00:17:00', 'Trip_Pickup_DateTime': '2009-06-02 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750018, 'End_Lon': -73.991547, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76338, 'Start_Lon': -73.979228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-02 12:18:00', 'Trip_Pickup_DateTime': '2009-06-02 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758508, 'End_Lon': -73.9859, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76392, 'Start_Lon': -73.998647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-06 11:40:00', 'Trip_Pickup_DateTime': '2009-06-06 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749883, 'End_Lon': -73.991627, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762603, 'Start_Lon': -73.98239, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-16 07:08:00', 'Trip_Pickup_DateTime': '2009-06-16 07:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762687, 'End_Lon': -73.973005, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715298, 'Start_Lon': -74.002043, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-03 08:55:00', 'Trip_Pickup_DateTime': '2009-06-03 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758618, 'End_Lon': -73.989905, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765008, 'Start_Lon': -73.976438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-06 16:24:00', 'Trip_Pickup_DateTime': '2009-06-06 16:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757837, 'End_Lon': -73.974787, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769432, 'Start_Lon': -73.985092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-08 12:51:00', 'Trip_Pickup_DateTime': '2009-06-08 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75898, 'End_Lon': -73.983553, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730022, 'Start_Lon': -74.000543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-07 03:11:00', 'Trip_Pickup_DateTime': '2009-06-07 03:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779682, 'End_Lon': -73.984332, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780133, 'Start_Lon': -73.974728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-30 19:08:00', 'Trip_Pickup_DateTime': '2009-06-30 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741267, 'End_Lon': -73.98888, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739882, 'Start_Lon': -73.985343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-05 20:38:00', 'Trip_Pickup_DateTime': '2009-06-05 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765087, 'End_Lon': -73.966043, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77438, 'Start_Lon': -73.957377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-30 17:26:00', 'Trip_Pickup_DateTime': '2009-06-30 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740992, 'End_Lon': -73.988147, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74939, 'Start_Lon': -73.991883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-08 07:50:00', 'Trip_Pickup_DateTime': '2009-06-08 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758148, 'End_Lon': -74.004183, 'Fare_Amt': 8.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758148, 'Start_Lon': -74.004183, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 0.16, 'Trip_Dropoff_DateTime': '2009-06-30 15:01:00', 'Trip_Pickup_DateTime': '2009-06-30 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72864, 'End_Lon': -73.975588, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798073, 'Start_Lon': -73.963748, 'Tip_Amt': 3.4, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-30 23:57:00', 'Trip_Pickup_DateTime': '2009-06-30 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75864, 'End_Lon': -73.981768, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740873, 'Start_Lon': -73.99426, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-06 00:16:00', 'Trip_Pickup_DateTime': '2009-06-06 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770403, 'End_Lon': -73.960538, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774798, 'Start_Lon': -73.982407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-30 19:43:00', 'Trip_Pickup_DateTime': '2009-06-30 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768742, 'End_Lon': -73.95836, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790705, 'Start_Lon': -73.965337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-06 20:18:00', 'Trip_Pickup_DateTime': '2009-06-06 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757717, 'End_Lon': -73.99323, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79794, 'Start_Lon': -73.971412, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-07 14:43:00', 'Trip_Pickup_DateTime': '2009-06-07 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801867, 'End_Lon': -73.967253, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721488, 'Start_Lon': -73.988443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.23, 'Trip_Dropoff_DateTime': '2009-06-27 02:34:00', 'Trip_Pickup_DateTime': '2009-06-27 02:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788243, 'End_Lon': -73.953403, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771378, 'Start_Lon': -73.96056, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-04 07:51:00', 'Trip_Pickup_DateTime': '2009-06-04 07:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687318, 'End_Lon': -73.967628, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.683352, 'Start_Lon': -73.976002, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-06 23:37:00', 'Trip_Pickup_DateTime': '2009-06-06 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759183, 'End_Lon': -73.973587, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739513, 'Start_Lon': -73.982688, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-08 07:31:00', 'Trip_Pickup_DateTime': '2009-06-08 07:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749078, 'End_Lon': -73.975928, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753357, 'Start_Lon': -73.969062, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-03 07:49:00', 'Trip_Pickup_DateTime': '2009-06-03 07:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714155, 'End_Lon': -73.995073, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752275, 'Start_Lon': -73.97816, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 4.38, 'Trip_Dropoff_DateTime': '2009-06-29 13:59:00', 'Trip_Pickup_DateTime': '2009-06-29 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764383, 'End_Lon': -73.968535, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740212, 'Start_Lon': -73.894665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.86, 'Trip_Dropoff_DateTime': '2009-06-08 07:07:00', 'Trip_Pickup_DateTime': '2009-06-08 06:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728725, 'End_Lon': -74.001405, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749527, 'Start_Lon': -73.98251, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-06 01:01:00', 'Trip_Pickup_DateTime': '2009-06-06 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743777, 'End_Lon': -73.973448, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735437, 'Start_Lon': -73.979575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-03 13:45:00', 'Trip_Pickup_DateTime': '2009-06-03 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759622, 'End_Lon': -73.96192, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755948, 'Start_Lon': -73.99002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-04 20:57:00', 'Trip_Pickup_DateTime': '2009-06-04 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713027, 'End_Lon': -73.956627, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758102, 'Start_Lon': -73.992972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.68, 'Trip_Dropoff_DateTime': '2009-06-29 23:40:00', 'Trip_Pickup_DateTime': '2009-06-29 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756555, 'End_Lon': -73.985523, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719995, 'Start_Lon': -73.998282, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-06 11:12:00', 'Trip_Pickup_DateTime': '2009-06-06 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764377, 'End_Lon': -73.9829, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64866, 'Start_Lon': -73.783517, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.83, 'Trip_Dropoff_DateTime': '2009-06-05 21:09:00', 'Trip_Pickup_DateTime': '2009-06-05 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7466, 'End_Lon': -74.004158, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755957, 'Start_Lon': -73.994655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-30 19:28:00', 'Trip_Pickup_DateTime': '2009-06-30 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782062, 'End_Lon': -73.982908, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788905, 'Start_Lon': -73.97774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-05 18:10:00', 'Trip_Pickup_DateTime': '2009-06-05 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768728, 'End_Lon': -73.86228, 'Fare_Amt': 21.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74626, 'Start_Lon': -73.97939, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.0, 'Total_Amt': 25.7, 'Trip_Distance': 9.2, 'Trip_Dropoff_DateTime': '2009-06-29 15:44:00', 'Trip_Pickup_DateTime': '2009-06-29 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756037, 'End_Lon': -73.976085, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768608, 'Start_Lon': -73.980835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-02 17:12:00', 'Trip_Pickup_DateTime': '2009-06-02 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774387, 'End_Lon': -73.873105, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749355, 'Start_Lon': -73.978915, 'Tip_Amt': 4.42, 'Tolls_Amt': 4.15, 'Total_Amt': 30.67, 'Trip_Distance': 8.59, 'Trip_Dropoff_DateTime': '2009-06-04 07:45:00', 'Trip_Pickup_DateTime': '2009-06-04 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759913, 'End_Lon': -73.97418, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755337, 'Start_Lon': -73.977747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-08 06:25:00', 'Trip_Pickup_DateTime': '2009-06-08 06:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738328, 'End_Lon': -73.985462, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746328, 'Start_Lon': -73.979958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-03 19:30:00', 'Trip_Pickup_DateTime': '2009-06-03 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737483, 'End_Lon': -74.005847, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738722, 'Start_Lon': -74.0082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.2, 'Trip_Dropoff_DateTime': '2009-06-06 22:15:00', 'Trip_Pickup_DateTime': '2009-06-06 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765033, 'End_Lon': -73.982658, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74078, 'Start_Lon': -74.004947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-07 17:42:00', 'Trip_Pickup_DateTime': '2009-06-07 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749693, 'End_Lon': -73.991773, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763555, 'Start_Lon': -73.980543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-03 12:05:00', 'Trip_Pickup_DateTime': '2009-06-03 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734288, 'End_Lon': -73.993867, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730252, 'Start_Lon': -73.994805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-29 14:18:00', 'Trip_Pickup_DateTime': '2009-06-29 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.834432, 'End_Lon': -73.912407, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77352, 'Start_Lon': -73.871147, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.35, 'Trip_Distance': 8.45, 'Trip_Dropoff_DateTime': '2009-06-08 23:24:00', 'Trip_Pickup_DateTime': '2009-06-08 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765653, 'End_Lon': -73.981887, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.808702, 'Start_Lon': -73.959812, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-02 08:41:00', 'Trip_Pickup_DateTime': '2009-06-02 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716073, 'End_Lon': -74.008978, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741068, 'Start_Lon': -73.99393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-29 18:01:00', 'Trip_Pickup_DateTime': '2009-06-29 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.670707, 'End_Lon': -73.978868, 'Fare_Amt': 22.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752468, 'Start_Lon': -73.974653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.9, 'Trip_Distance': 8.8, 'Trip_Dropoff_DateTime': '2009-06-03 20:18:00', 'Trip_Pickup_DateTime': '2009-06-03 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770935, 'End_Lon': -73.967298, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754347, 'Start_Lon': -73.964077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-05 11:52:00', 'Trip_Pickup_DateTime': '2009-06-05 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711715, 'End_Lon': -73.817102, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.648237, 'Start_Lon': -73.788632, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.67, 'Trip_Dropoff_DateTime': '2009-06-08 23:14:00', 'Trip_Pickup_DateTime': '2009-06-08 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724875, 'End_Lon': -74.002463, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74331, 'Start_Lon': -73.996155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-03 13:52:00', 'Trip_Pickup_DateTime': '2009-06-03 13:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781237, 'End_Lon': -73.952008, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767483, 'Start_Lon': -73.962412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-04 14:34:00', 'Trip_Pickup_DateTime': '2009-06-04 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75774, 'End_Lon': -73.961043, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785082, 'Start_Lon': -73.979197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-07 01:39:00', 'Trip_Pickup_DateTime': '2009-06-07 01:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777032, 'End_Lon': -73.959338, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745088, 'Start_Lon': -73.972445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-05 18:45:00', 'Trip_Pickup_DateTime': '2009-06-05 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724698, 'End_Lon': -73.994215, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719672, 'Start_Lon': -73.987547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-08 23:38:00', 'Trip_Pickup_DateTime': '2009-06-08 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7248, 'End_Lon': -73.998837, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738738, 'Start_Lon': -73.991485, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-02 18:10:00', 'Trip_Pickup_DateTime': '2009-06-02 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760202, 'End_Lon': -73.971345, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754453, 'Start_Lon': -73.96796, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-02 07:59:00', 'Trip_Pickup_DateTime': '2009-06-02 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73398, 'End_Lon': -73.999175, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734492, 'Start_Lon': -74.007015, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-06 16:23:00', 'Trip_Pickup_DateTime': '2009-06-06 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749943, 'End_Lon': -73.991857, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756705, 'Start_Lon': -73.974832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-05 09:14:00', 'Trip_Pickup_DateTime': '2009-06-05 08:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746237, 'End_Lon': -73.997737, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760687, 'Start_Lon': -73.994893, 'Tip_Amt': 1.77, 'Tolls_Amt': 0.0, 'Total_Amt': 8.77, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-04 23:46:00', 'Trip_Pickup_DateTime': '2009-06-04 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757562, 'End_Lon': -73.986163, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775138, 'Start_Lon': -73.976778, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-04 10:06:00', 'Trip_Pickup_DateTime': '2009-06-04 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785817, 'End_Lon': -73.980757, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774018, 'Start_Lon': -73.963795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-05 17:52:00', 'Trip_Pickup_DateTime': '2009-06-05 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755217, 'End_Lon': -73.991472, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752798, 'Start_Lon': -73.981425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-02 11:48:00', 'Trip_Pickup_DateTime': '2009-06-02 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72853, 'End_Lon': -74.005298, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777217, 'Start_Lon': -73.975338, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-03 18:04:00', 'Trip_Pickup_DateTime': '2009-06-03 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773977, 'End_Lon': -73.870687, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794115, 'Start_Lon': -73.962973, 'Tip_Amt': 2.5, 'Tolls_Amt': 4.15, 'Total_Amt': 27.15, 'Trip_Distance': 8.09, 'Trip_Dropoff_DateTime': '2009-06-07 12:14:00', 'Trip_Pickup_DateTime': '2009-06-07 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753155, 'End_Lon': -73.997837, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739877, 'Start_Lon': -73.994958, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-08 14:26:00', 'Trip_Pickup_DateTime': '2009-06-08 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749772, 'End_Lon': -73.991788, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75797, 'Start_Lon': -73.990818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-03 17:51:00', 'Trip_Pickup_DateTime': '2009-06-03 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85, 'Trip_Distance': 9.92, 'Trip_Dropoff_DateTime': '2009-06-04 16:18:00', 'Trip_Pickup_DateTime': '2009-06-04 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75567, 'End_Lon': -73.971542, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711453, 'Start_Lon': -74.015567, 'Tip_Amt': 5.05, 'Tolls_Amt': 0.0, 'Total_Amt': 25.25, 'Trip_Distance': 6.58, 'Trip_Dropoff_DateTime': '2009-06-30 21:55:00', 'Trip_Pickup_DateTime': '2009-06-30 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789812, 'End_Lon': -73.952457, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720517, 'Start_Lon': -73.979823, 'Tip_Amt': 3.3, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-06 07:09:00', 'Trip_Pickup_DateTime': '2009-06-06 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745037, 'End_Lon': -73.97243, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742723, 'Start_Lon': -73.980395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-29 23:19:00', 'Trip_Pickup_DateTime': '2009-06-29 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765018, 'End_Lon': -73.966168, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766755, 'Start_Lon': -73.953952, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-30 08:40:00', 'Trip_Pickup_DateTime': '2009-06-30 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781017, 'End_Lon': -73.978547, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775055, 'Start_Lon': -73.980513, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-06 22:16:00', 'Trip_Pickup_DateTime': '2009-06-06 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761317, 'End_Lon': -73.98773, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75555, 'Start_Lon': -73.983797, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-03 12:16:00', 'Trip_Pickup_DateTime': '2009-06-03 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687808, 'End_Lon': -73.887433, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.659537, 'Start_Lon': -73.91246, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.41, 'Trip_Dropoff_DateTime': '2009-06-30 08:05:00', 'Trip_Pickup_DateTime': '2009-06-30 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739443, 'End_Lon': -73.976575, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72327, 'Start_Lon': -73.989915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-02 13:31:00', 'Trip_Pickup_DateTime': '2009-06-02 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782303, 'End_Lon': -73.956282, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757313, 'Start_Lon': -73.97169, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-06 15:09:00', 'Trip_Pickup_DateTime': '2009-06-06 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73921, 'End_Lon': -73.989668, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743575, 'Start_Lon': -74.003337, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-30 09:22:00', 'Trip_Pickup_DateTime': '2009-06-30 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762907, 'End_Lon': -73.9677, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764473, 'Start_Lon': -73.958182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-30 18:45:00', 'Trip_Pickup_DateTime': '2009-06-30 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75567, 'End_Lon': -73.97132, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77466, 'Start_Lon': -73.964237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-04 23:36:00', 'Trip_Pickup_DateTime': '2009-06-04 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757612, 'End_Lon': -73.971482, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768887, 'Start_Lon': -73.862673, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 34.55, 'Trip_Distance': 10.85, 'Trip_Dropoff_DateTime': '2009-06-30 20:50:00', 'Trip_Pickup_DateTime': '2009-06-30 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774298, 'End_Lon': -73.98118, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781427, 'Start_Lon': -73.975807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-08 16:31:00', 'Trip_Pickup_DateTime': '2009-06-08 16:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751227, 'End_Lon': -74.004757, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736515, 'Start_Lon': -73.99645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-05 09:02:00', 'Trip_Pickup_DateTime': '2009-06-05 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772325, 'End_Lon': -73.966663, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778617, 'Start_Lon': -73.951173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-08 09:58:00', 'Trip_Pickup_DateTime': '2009-06-08 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744638, 'End_Lon': -73.980963, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760652, 'Start_Lon': -73.975518, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-03 21:12:00', 'Trip_Pickup_DateTime': '2009-06-03 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752577, 'End_Lon': -73.979412, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744555, 'Start_Lon': -73.98728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-02 20:36:00', 'Trip_Pickup_DateTime': '2009-06-02 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7053, 'End_Lon': -73.834288, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721398, 'Start_Lon': -73.844303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-04 01:04:00', 'Trip_Pickup_DateTime': '2009-06-04 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709482, 'End_Lon': -74.009127, 'Fare_Amt': 13.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75559, 'Start_Lon': -73.991245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-03 16:23:00', 'Trip_Pickup_DateTime': '2009-06-03 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767465, 'End_Lon': -73.97053, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777365, 'Start_Lon': -73.963378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-08 11:36:00', 'Trip_Pickup_DateTime': '2009-06-08 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746962, 'End_Lon': -73.985557, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740252, 'Start_Lon': -73.994612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-29 19:57:00', 'Trip_Pickup_DateTime': '2009-06-29 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751475, 'End_Lon': -73.993862, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732118, 'Start_Lon': -74.003747, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-05 20:04:00', 'Trip_Pickup_DateTime': '2009-06-05 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74831, 'End_Lon': -73.988853, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744357, 'Start_Lon': -73.97911, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-06 13:22:00', 'Trip_Pickup_DateTime': '2009-06-06 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759502, 'End_Lon': -73.985193, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77518, 'Start_Lon': -73.9635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-02 17:30:00', 'Trip_Pickup_DateTime': '2009-06-02 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76351, 'End_Lon': -73.95623, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774628, 'Start_Lon': -73.957915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-08 17:18:00', 'Trip_Pickup_DateTime': '2009-06-08 17:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749365, 'End_Lon': -73.992272, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72498, 'Start_Lon': -73.994682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-05 16:30:00', 'Trip_Pickup_DateTime': '2009-06-05 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774, 'End_Lon': -73.870748, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702272, 'Start_Lon': -74.0129, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.9, 'Trip_Distance': 12.57, 'Trip_Dropoff_DateTime': '2009-06-07 15:14:00', 'Trip_Pickup_DateTime': '2009-06-07 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752375, 'End_Lon': -73.978703, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740205, 'Start_Lon': -73.994772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-08 08:11:00', 'Trip_Pickup_DateTime': '2009-06-08 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777623, 'End_Lon': -73.96109, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775727, 'Start_Lon': -73.976273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-07 15:23:00', 'Trip_Pickup_DateTime': '2009-06-07 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756037, 'End_Lon': -73.97268, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723512, 'Start_Lon': -73.999857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-05 23:54:00', 'Trip_Pickup_DateTime': '2009-06-05 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751712, 'End_Lon': -73.971957, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752075, 'Start_Lon': -73.972502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.04, 'Trip_Dropoff_DateTime': '2009-06-03 17:39:00', 'Trip_Pickup_DateTime': '2009-06-03 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711383, 'End_Lon': -74.015087, 'Fare_Amt': 24.5, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785142, 'Start_Lon': -73.953682, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.5, 'Trip_Distance': 8.95, 'Trip_Dropoff_DateTime': '2009-06-02 09:43:00', 'Trip_Pickup_DateTime': '2009-06-02 09:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77462, 'End_Lon': -73.958535, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768383, 'Start_Lon': -73.957698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-03 14:40:00', 'Trip_Pickup_DateTime': '2009-06-03 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75793, 'End_Lon': -74.000825, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753402, 'Start_Lon': -73.97835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-06 15:27:00', 'Trip_Pickup_DateTime': '2009-06-06 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702153, 'End_Lon': -74.009673, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747718, 'Start_Lon': -73.972837, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.6, 'Trip_Dropoff_DateTime': '2009-06-04 09:06:00', 'Trip_Pickup_DateTime': '2009-06-04 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74615, 'End_Lon': -73.979235, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755887, 'Start_Lon': -73.983108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-05 23:08:00', 'Trip_Pickup_DateTime': '2009-06-05 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760092, 'End_Lon': -73.976598, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744852, 'Start_Lon': -73.991447, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-03 09:55:00', 'Trip_Pickup_DateTime': '2009-06-03 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733185, 'End_Lon': -73.979585, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737287, 'Start_Lon': -73.996655, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-06 18:47:00', 'Trip_Pickup_DateTime': '2009-06-06 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768458, 'End_Lon': -73.960715, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782983, 'Start_Lon': -73.953218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-29 12:13:00', 'Trip_Pickup_DateTime': '2009-06-29 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787858, 'End_Lon': -73.974827, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7546, 'Start_Lon': -73.974513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-07 12:25:00', 'Trip_Pickup_DateTime': '2009-06-07 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740623, 'End_Lon': -73.981728, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731383, 'Start_Lon': -73.988467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-02 21:52:00', 'Trip_Pickup_DateTime': '2009-06-02 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769552, 'End_Lon': -73.98934, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773412, 'Start_Lon': -73.980925, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-04 08:39:00', 'Trip_Pickup_DateTime': '2009-06-04 08:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793765, 'End_Lon': -73.969557, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782108, 'Start_Lon': -73.971722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-30 16:31:00', 'Trip_Pickup_DateTime': '2009-06-30 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755155, 'End_Lon': -73.983237, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749828, 'Start_Lon': -73.988085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-05 16:39:00', 'Trip_Pickup_DateTime': '2009-06-05 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753337, 'End_Lon': -73.996105, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750128, 'Start_Lon': -73.98821, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-03 06:37:00', 'Trip_Pickup_DateTime': '2009-06-03 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761912, 'End_Lon': -73.966588, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7613, 'Start_Lon': -73.967427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.2, 'Trip_Dropoff_DateTime': '2009-06-03 15:01:00', 'Trip_Pickup_DateTime': '2009-06-03 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728243, 'End_Lon': -73.987715, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745897, 'Start_Lon': -73.97796, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-07 04:08:00', 'Trip_Pickup_DateTime': '2009-06-07 04:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740057, 'End_Lon': -73.994817, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734528, 'Start_Lon': -73.992273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-08 09:34:00', 'Trip_Pickup_DateTime': '2009-06-08 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751153, 'End_Lon': -73.994028, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740735, 'Start_Lon': -73.985932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-29 12:44:00', 'Trip_Pickup_DateTime': '2009-06-29 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721645, 'End_Lon': -73.98764, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740145, 'Start_Lon': -74.005295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-05 01:48:00', 'Trip_Pickup_DateTime': '2009-06-05 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73407, 'End_Lon': -73.986843, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757543, 'Start_Lon': -73.968603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-05 23:01:00', 'Trip_Pickup_DateTime': '2009-06-05 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.693222, 'End_Lon': -73.988573, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711917, 'Start_Lon': -74.007868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-03 13:58:00', 'Trip_Pickup_DateTime': '2009-06-03 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739898, 'End_Lon': -74.005228, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732975, 'Start_Lon': -73.999995, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-07 01:07:00', 'Trip_Pickup_DateTime': '2009-06-07 01:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738937, 'End_Lon': -73.990048, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784747, 'Start_Lon': -73.94986, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 5.01, 'Trip_Dropoff_DateTime': '2009-06-06 22:11:00', 'Trip_Pickup_DateTime': '2009-06-06 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741255, 'End_Lon': -73.978433, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75314, 'Start_Lon': -73.969875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-05 22:18:00', 'Trip_Pickup_DateTime': '2009-06-05 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751593, 'End_Lon': -73.978348, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740047, 'Start_Lon': -73.987905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-29 21:52:00', 'Trip_Pickup_DateTime': '2009-06-29 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682038, 'End_Lon': -74.01273, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686052, 'Start_Lon': -73.999925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-30 13:34:00', 'Trip_Pickup_DateTime': '2009-06-30 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757447, 'End_Lon': -73.97451, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784245, 'Start_Lon': -73.95426, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-02 09:46:00', 'Trip_Pickup_DateTime': '2009-06-02 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748815, 'End_Lon': -73.975892, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759765, 'Start_Lon': -73.981642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-05 19:02:00', 'Trip_Pickup_DateTime': '2009-06-05 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763263, 'End_Lon': -73.964955, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764137, 'Start_Lon': -73.973263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-03 22:47:00', 'Trip_Pickup_DateTime': '2009-06-03 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760227, 'End_Lon': -73.968497, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762882, 'Start_Lon': -73.977927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-06 07:58:00', 'Trip_Pickup_DateTime': '2009-06-06 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745027, 'End_Lon': -73.991447, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749367, 'Start_Lon': -73.991977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-08 08:06:00', 'Trip_Pickup_DateTime': '2009-06-08 08:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705733, 'End_Lon': -74.006257, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.642423, 'Start_Lon': -73.789118, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.17, 'Trip_Dropoff_DateTime': '2009-06-29 19:12:00', 'Trip_Pickup_DateTime': '2009-06-29 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747083, 'End_Lon': -73.981272, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74903, 'Start_Lon': -73.992102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-02 20:13:00', 'Trip_Pickup_DateTime': '2009-06-02 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736905, 'End_Lon': -73.988763, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730567, 'Start_Lon': -74.001763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-30 11:29:00', 'Trip_Pickup_DateTime': '2009-06-30 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725887, 'End_Lon': -73.994782, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771615, 'Start_Lon': -73.947825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 5.34, 'Trip_Dropoff_DateTime': '2009-06-08 07:39:00', 'Trip_Pickup_DateTime': '2009-06-08 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76345, 'End_Lon': -73.975082, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724968, 'Start_Lon': -73.995647, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-29 12:22:00', 'Trip_Pickup_DateTime': '2009-06-29 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778355, 'End_Lon': -73.958865, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769398, 'Start_Lon': -73.951567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-03 09:58:00', 'Trip_Pickup_DateTime': '2009-06-03 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74865, 'End_Lon': -73.974933, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75285, 'Start_Lon': -73.966763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-30 09:00:00', 'Trip_Pickup_DateTime': '2009-06-30 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7539, 'End_Lon': -73.974622, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743422, 'Start_Lon': -74.000155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-05 20:47:00', 'Trip_Pickup_DateTime': '2009-06-05 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.66303, 'End_Lon': -73.984863, 'Fare_Amt': 31.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774022, 'Start_Lon': -73.981458, 'Tip_Amt': 6.54, 'Tolls_Amt': 0.0, 'Total_Amt': 39.24, 'Trip_Distance': 11.51, 'Trip_Dropoff_DateTime': '2009-06-02 19:25:00', 'Trip_Pickup_DateTime': '2009-06-02 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-29 14:26:00', 'Trip_Pickup_DateTime': '2009-06-29 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693165, 'End_Lon': -73.97065, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74736, 'Start_Lon': -73.99367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.94, 'Trip_Dropoff_DateTime': '2009-06-29 23:08:00', 'Trip_Pickup_DateTime': '2009-06-29 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779263, 'End_Lon': -73.953898, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779263, 'Start_Lon': -73.953898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-02 13:03:00', 'Trip_Pickup_DateTime': '2009-06-02 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761062, 'End_Lon': -73.987068, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773893, 'Start_Lon': -73.988643, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-30 21:54:00', 'Trip_Pickup_DateTime': '2009-06-30 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726958, 'End_Lon': -73.951543, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77364, 'Start_Lon': -73.870727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 8.14, 'Trip_Dropoff_DateTime': '2009-06-02 00:12:00', 'Trip_Pickup_DateTime': '2009-06-01 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775115, 'End_Lon': -73.980487, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782297, 'Start_Lon': -73.978948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-12 18:03:00', 'Trip_Pickup_DateTime': '2009-06-12 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781893, 'End_Lon': -73.955895, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768825, 'Start_Lon': -73.964405, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-30 18:22:00', 'Trip_Pickup_DateTime': '2009-06-30 18:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709913, 'End_Lon': -73.998155, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70794, 'Start_Lon': -74.01168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-30 19:07:00', 'Trip_Pickup_DateTime': '2009-06-30 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713517, 'End_Lon': -73.96002, 'Fare_Amt': 21.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777498, 'Start_Lon': -73.978613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 7.21, 'Trip_Dropoff_DateTime': '2009-06-01 21:34:00', 'Trip_Pickup_DateTime': '2009-06-01 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76877, 'End_Lon': -73.984935, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763972, 'Start_Lon': -73.978242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-22 12:34:00', 'Trip_Pickup_DateTime': '2009-06-22 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72514, 'End_Lon': -73.99241, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760982, 'Start_Lon': -73.975327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-01 19:04:00', 'Trip_Pickup_DateTime': '2009-06-01 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715497, 'End_Lon': -74.007688, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.710188, 'Start_Lon': -74.016268, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 0.09, 'Trip_Dropoff_DateTime': '2009-06-10 17:43:00', 'Trip_Pickup_DateTime': '2009-06-10 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760732, 'End_Lon': -73.983828, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773713, 'Start_Lon': -73.870787, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.15, 'Trip_Distance': 11.19, 'Trip_Dropoff_DateTime': '2009-06-01 22:56:00', 'Trip_Pickup_DateTime': '2009-06-01 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768985, 'End_Lon': -73.982452, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756372, 'Start_Lon': -73.964418, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-01 18:52:00', 'Trip_Pickup_DateTime': '2009-06-01 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749567, 'End_Lon': -73.98634, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758605, 'Start_Lon': -73.984898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-01 23:32:00', 'Trip_Pickup_DateTime': '2009-06-01 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804158, 'End_Lon': -73.950678, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746998, 'Start_Lon': -74.00079, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.03, 'Trip_Dropoff_DateTime': '2009-06-30 01:50:00', 'Trip_Pickup_DateTime': '2009-06-30 01:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734818, 'End_Lon': -73.99484, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721222, 'Start_Lon': -73.983875, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-30 09:18:00', 'Trip_Pickup_DateTime': '2009-06-30 09:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725642, 'End_Lon': -74.004348, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73996, 'Start_Lon': -74.006042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-01 17:59:00', 'Trip_Pickup_DateTime': '2009-06-01 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.63888, 'End_Lon': -73.786668, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77432, 'Start_Lon': -73.95535, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 18.76, 'Trip_Dropoff_DateTime': '2009-06-22 13:03:00', 'Trip_Pickup_DateTime': '2009-06-22 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759808, 'End_Lon': -73.979537, 'Fare_Amt': 29.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769747, 'Start_Lon': -73.863345, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 33.45, 'Trip_Distance': 11.28, 'Trip_Dropoff_DateTime': '2009-06-09 11:18:00', 'Trip_Pickup_DateTime': '2009-06-09 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760618, 'End_Lon': -73.969805, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727888, 'Start_Lon': -73.98215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-01 21:41:00', 'Trip_Pickup_DateTime': '2009-06-01 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720328, 'End_Lon': -74.003277, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728602, 'Start_Lon': -73.995248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-30 22:39:00', 'Trip_Pickup_DateTime': '2009-06-30 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773152, 'End_Lon': -73.885455, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770192, 'Start_Lon': -73.917588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-09 11:21:00', 'Trip_Pickup_DateTime': '2009-06-09 11:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789805, 'End_Lon': -73.973298, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754982, 'Start_Lon': -73.984113, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-01 18:25:00', 'Trip_Pickup_DateTime': '2009-06-01 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752483, 'End_Lon': -73.984467, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755082, 'Start_Lon': -73.97327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-01 12:53:00', 'Trip_Pickup_DateTime': '2009-06-01 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773535, 'End_Lon': -73.986343, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755722, 'Start_Lon': -73.990995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-01 21:49:00', 'Trip_Pickup_DateTime': '2009-06-01 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758702, 'End_Lon': -73.968535, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774727, 'Start_Lon': -73.98238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-09 10:55:00', 'Trip_Pickup_DateTime': '2009-06-09 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765135, 'End_Lon': -73.990968, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782587, 'Start_Lon': -73.98082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-01 15:34:00', 'Trip_Pickup_DateTime': '2009-06-01 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.686178, 'End_Lon': -73.998442, 'Fare_Amt': 21.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76108, 'Start_Lon': -73.971357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.7, 'Trip_Distance': 6.22, 'Trip_Dropoff_DateTime': '2009-06-29 19:14:00', 'Trip_Pickup_DateTime': '2009-06-29 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76592, 'End_Lon': -73.980457, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762957, 'Start_Lon': -73.982268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-30 03:59:00', 'Trip_Pickup_DateTime': '2009-06-30 03:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774895, 'End_Lon': -73.965498, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766947, 'Start_Lon': -73.968938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-01 12:38:00', 'Trip_Pickup_DateTime': '2009-06-01 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728865, 'End_Lon': -73.995058, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737595, 'Start_Lon': -73.992352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-01 12:57:00', 'Trip_Pickup_DateTime': '2009-06-01 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709468, 'End_Lon': -74.016672, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725235, 'Start_Lon': -73.995427, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-09 11:07:00', 'Trip_Pickup_DateTime': '2009-06-09 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763642, 'End_Lon': -73.959717, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7726, 'Start_Lon': -73.964943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-01 12:53:00', 'Trip_Pickup_DateTime': '2009-06-01 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722698, 'End_Lon': -73.993275, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764518, 'Start_Lon': -73.988367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.77, 'Trip_Dropoff_DateTime': '2009-06-29 13:14:00', 'Trip_Pickup_DateTime': '2009-06-29 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75221, 'End_Lon': -73.968037, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751827, 'Start_Lon': -73.978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-09 09:51:00', 'Trip_Pickup_DateTime': '2009-06-09 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749702, 'End_Lon': -73.989488, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737103, 'Start_Lon': -73.981425, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-12 15:55:00', 'Trip_Pickup_DateTime': '2009-06-12 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783558, 'End_Lon': -73.953342, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790027, 'Start_Lon': -73.969607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-01 15:26:00', 'Trip_Pickup_DateTime': '2009-06-01 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777665, 'End_Lon': -73.956362, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779847, 'Start_Lon': -73.96905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-01 16:52:00', 'Trip_Pickup_DateTime': '2009-06-01 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758125, 'End_Lon': -74.000665, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758702, 'Start_Lon': -73.983425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-09 09:50:00', 'Trip_Pickup_DateTime': '2009-06-09 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762738, 'End_Lon': -73.98218, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755972, 'Start_Lon': -73.990495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-12 13:36:00', 'Trip_Pickup_DateTime': '2009-06-12 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708253, 'End_Lon': -74.011442, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7616, 'Start_Lon': -74.000233, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-09 07:10:00', 'Trip_Pickup_DateTime': '2009-06-09 06:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748987, 'End_Lon': -73.978167, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743525, 'Start_Lon': -73.986065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-06 21:03:00', 'Trip_Pickup_DateTime': '2009-06-06 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75117, 'End_Lon': -73.981412, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743815, 'Start_Lon': -73.980335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-01 16:50:00', 'Trip_Pickup_DateTime': '2009-06-01 16:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753884, 'End_Lon': -73.981226, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770122, 'Start_Lon': -73.951447, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-29 08:32:47', 'Trip_Pickup_DateTime': '2009-06-29 08:16:11', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75758, 'End_Lon': -73.967212, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767103, 'Start_Lon': -73.96811, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-09 09:53:00', 'Trip_Pickup_DateTime': '2009-06-09 09:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74731, 'End_Lon': -73.987168, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74146, 'Start_Lon': -73.987728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-08 12:18:00', 'Trip_Pickup_DateTime': '2009-06-08 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756647, 'End_Lon': -73.979482, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768938, 'Start_Lon': -73.98867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-01 15:28:00', 'Trip_Pickup_DateTime': '2009-06-01 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725573, 'End_Lon': -74.002268, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749282, 'Start_Lon': -73.980168, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-30 12:56:00', 'Trip_Pickup_DateTime': '2009-06-30 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720718, 'End_Lon': -74.010043, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714768, 'Start_Lon': -74.001208, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-09 09:05:00', 'Trip_Pickup_DateTime': '2009-06-09 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656013, 'End_Lon': -73.977425, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723233, 'Start_Lon': -73.998625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-12 15:15:00', 'Trip_Pickup_DateTime': '2009-06-12 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793718, 'End_Lon': -73.9723, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785683, 'Start_Lon': -73.98032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-12 13:32:00', 'Trip_Pickup_DateTime': '2009-06-12 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793868, 'End_Lon': -73.964007, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78778, 'Start_Lon': -73.967553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-12 15:07:00', 'Trip_Pickup_DateTime': '2009-06-12 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 5.34, 'Trip_Dropoff_DateTime': '2009-06-29 18:31:00', 'Trip_Pickup_DateTime': '2009-06-29 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765707, 'End_Lon': -73.952603, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807407, 'Start_Lon': -73.941497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-09 10:39:00', 'Trip_Pickup_DateTime': '2009-06-09 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75569, 'End_Lon': -73.979017, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746388, 'Start_Lon': -73.983932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-08 14:29:00', 'Trip_Pickup_DateTime': '2009-06-08 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745323, 'End_Lon': -73.994363, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736222, 'Start_Lon': -73.998225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-09 08:56:00', 'Trip_Pickup_DateTime': '2009-06-09 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 4 with 1000 records\n",
            "[{'End_Lat': 40.729822, 'End_Lon': -74.005748, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726855, 'Start_Lon': -73.994742, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-12 15:19:00', 'Trip_Pickup_DateTime': '2009-06-12 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747395, 'End_Lon': -74.000868, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755415, 'Start_Lon': -73.990832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-12 13:15:00', 'Trip_Pickup_DateTime': '2009-06-12 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766222, 'End_Lon': -73.896227, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769938, 'Start_Lon': -73.897142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-29 20:44:00', 'Trip_Pickup_DateTime': '2009-06-29 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77404, 'End_Lon': -73.95968, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772432, 'Start_Lon': -73.950373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-12 16:04:00', 'Trip_Pickup_DateTime': '2009-06-12 15:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745723, 'End_Lon': -73.972017, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72311, 'Start_Lon': -73.988828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-09 08:29:00', 'Trip_Pickup_DateTime': '2009-06-09 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75001, 'End_Lon': -73.987197, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723507, 'Start_Lon': -73.996253, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-12 14:09:00', 'Trip_Pickup_DateTime': '2009-06-12 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740883, 'End_Lon': -74.007587, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724592, 'Start_Lon': -73.998533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-12 14:46:00', 'Trip_Pickup_DateTime': '2009-06-12 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761728, 'End_Lon': -73.966627, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783925, 'Start_Lon': -73.981543, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-12 14:26:00', 'Trip_Pickup_DateTime': '2009-06-12 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764058, 'End_Lon': -73.96905, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727488, 'Start_Lon': -73.976337, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-12 12:30:00', 'Trip_Pickup_DateTime': '2009-06-12 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748763, 'End_Lon': -73.98317, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774025, 'Start_Lon': -73.87462, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 37.9, 'Trip_Distance': 12.17, 'Trip_Dropoff_DateTime': '2009-06-30 12:22:00', 'Trip_Pickup_DateTime': '2009-06-30 11:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72424, 'End_Lon': -73.849963, 'Fare_Amt': 24.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739348, 'Start_Lon': -74.005508, 'Tip_Amt': 5.08, 'Tolls_Amt': 4.15, 'Total_Amt': 34.63, 'Trip_Distance': 9.88, 'Trip_Dropoff_DateTime': '2009-06-09 01:07:00', 'Trip_Pickup_DateTime': '2009-06-09 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.701855, 'End_Lon': -74.011315, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78077, 'Start_Lon': -73.95869, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.5, 'Trip_Distance': 7.73, 'Trip_Dropoff_DateTime': '2009-06-09 09:10:00', 'Trip_Pickup_DateTime': '2009-06-09 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736902, 'End_Lon': -73.982607, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748333, 'Start_Lon': -73.98721, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-07 05:18:00', 'Trip_Pickup_DateTime': '2009-06-07 05:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754608, 'End_Lon': -73.978198, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726948, 'Start_Lon': -73.999712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-05 19:16:00', 'Trip_Pickup_DateTime': '2009-06-05 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724305, 'End_Lon': -74.000187, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751422, 'Start_Lon': -73.991582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-12 14:07:00', 'Trip_Pickup_DateTime': '2009-06-12 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758775, 'End_Lon': -73.974113, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756922, 'Start_Lon': -73.975782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-09 08:39:00', 'Trip_Pickup_DateTime': '2009-06-09 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645425, 'End_Lon': -73.776303, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744608, 'Start_Lon': -74.006417, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 18.51, 'Trip_Dropoff_DateTime': '2009-06-12 11:55:00', 'Trip_Pickup_DateTime': '2009-06-12 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788323, 'End_Lon': -73.953407, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773765, 'Start_Lon': -73.9815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-05 17:40:00', 'Trip_Pickup_DateTime': '2009-06-05 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787348, 'End_Lon': -73.956093, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77305, 'Start_Lon': -73.982172, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-30 21:51:00', 'Trip_Pickup_DateTime': '2009-06-30 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763908, 'End_Lon': -73.985063, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755923, 'Start_Lon': -73.991003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-30 10:11:00', 'Trip_Pickup_DateTime': '2009-06-30 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782107, 'End_Lon': -73.980613, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757193, 'Start_Lon': -73.98753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-03 21:19:00', 'Trip_Pickup_DateTime': '2009-06-03 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761397, 'End_Lon': -73.9673, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740105, 'Start_Lon': -73.985957, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-09 08:57:00', 'Trip_Pickup_DateTime': '2009-06-09 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737765, 'End_Lon': -74.000162, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745285, 'Start_Lon': -74.002172, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-09 08:31:00', 'Trip_Pickup_DateTime': '2009-06-09 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755252, 'End_Lon': -73.990155, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751835, 'Start_Lon': -73.970675, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-09 08:56:00', 'Trip_Pickup_DateTime': '2009-06-09 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778737, 'End_Lon': -73.956102, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767805, 'Start_Lon': -73.961958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-09 08:53:00', 'Trip_Pickup_DateTime': '2009-06-09 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781073, 'End_Lon': -73.959715, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763028, 'Start_Lon': -73.972093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-12 11:54:00', 'Trip_Pickup_DateTime': '2009-06-12 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75994, 'End_Lon': -73.981578, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75214, 'Start_Lon': -73.981667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-12 13:37:00', 'Trip_Pickup_DateTime': '2009-06-12 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764547, 'End_Lon': -73.973352, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748573, 'Start_Lon': -74.003462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-12 08:36:00', 'Trip_Pickup_DateTime': '2009-06-12 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780518, 'End_Lon': -73.949727, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791645, 'Start_Lon': -73.964995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-09 01:16:00', 'Trip_Pickup_DateTime': '2009-06-09 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762557, 'End_Lon': -73.977822, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77048, 'Start_Lon': -73.962252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-09 00:28:00', 'Trip_Pickup_DateTime': '2009-06-09 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746593, 'End_Lon': -73.90624, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747973, 'Start_Lon': -73.904702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-08 23:41:00', 'Trip_Pickup_DateTime': '2009-06-08 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730917, 'End_Lon': -73.981503, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718148, 'Start_Lon': -73.986428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-03 15:21:00', 'Trip_Pickup_DateTime': '2009-06-03 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736955, 'End_Lon': -74.000902, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752677, 'Start_Lon': -73.993147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-12 10:00:00', 'Trip_Pickup_DateTime': '2009-06-12 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719928, 'End_Lon': -73.987802, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752015, 'Start_Lon': -73.977205, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-07 16:23:00', 'Trip_Pickup_DateTime': '2009-06-07 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76244, 'End_Lon': -73.982157, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744867, 'Start_Lon': -73.978568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-30 09:58:00', 'Trip_Pickup_DateTime': '2009-06-30 09:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765415, 'End_Lon': -73.966752, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77558, 'Start_Lon': -73.952853, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-09 02:07:00', 'Trip_Pickup_DateTime': '2009-06-09 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754823, 'End_Lon': -73.968212, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792005, 'Start_Lon': -73.97137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.94, 'Trip_Dropoff_DateTime': '2009-06-03 07:07:00', 'Trip_Pickup_DateTime': '2009-06-03 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.834882, 'End_Lon': -73.94553, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804273, 'Start_Lon': -73.966438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-09 00:34:00', 'Trip_Pickup_DateTime': '2009-06-09 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.688772, 'End_Lon': -73.939653, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730168, 'Start_Lon': -73.980138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.69, 'Trip_Dropoff_DateTime': '2009-06-07 04:33:00', 'Trip_Pickup_DateTime': '2009-06-07 04:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728512, 'End_Lon': -74.004458, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725477, 'Start_Lon': -73.996747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-30 13:51:00', 'Trip_Pickup_DateTime': '2009-06-30 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750003, 'End_Lon': -73.984213, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733367, 'Start_Lon': -73.999687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-05 09:05:00', 'Trip_Pickup_DateTime': '2009-06-05 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72708, 'End_Lon': -73.94679, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769227, 'Start_Lon': -73.965215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-08 23:54:00', 'Trip_Pickup_DateTime': '2009-06-08 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773793, 'End_Lon': -73.960195, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772428, 'Start_Lon': -73.953307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-03 11:45:00', 'Trip_Pickup_DateTime': '2009-06-03 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732267, 'End_Lon': -74.007628, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731828, 'Start_Lon': -74.001052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-03 17:53:00', 'Trip_Pickup_DateTime': '2009-06-03 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76099, 'End_Lon': -73.966962, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744145, 'Start_Lon': -73.971585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-16 08:33:00', 'Trip_Pickup_DateTime': '2009-06-16 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770085, 'End_Lon': -73.9915, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752305, 'Start_Lon': -73.987868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-04 10:28:00', 'Trip_Pickup_DateTime': '2009-06-04 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78566, 'End_Lon': -73.969198, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718505, 'Start_Lon': -73.957112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 8.19, 'Trip_Dropoff_DateTime': '2009-06-13 00:22:00', 'Trip_Pickup_DateTime': '2009-06-12 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761272, 'End_Lon': -73.972725, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761385, 'Start_Lon': -73.9637, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-09 18:17:00', 'Trip_Pickup_DateTime': '2009-06-09 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777148, 'End_Lon': -73.980343, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775617, 'Start_Lon': -73.958447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-09 17:53:00', 'Trip_Pickup_DateTime': '2009-06-09 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777077, 'End_Lon': -73.95365, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745708, 'Start_Lon': -73.978637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-13 01:13:00', 'Trip_Pickup_DateTime': '2009-06-13 01:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762938, 'End_Lon': -73.92053, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765677, 'Start_Lon': -73.982935, 'Tip_Amt': 3.75, 'Tolls_Amt': 0.0, 'Total_Amt': 18.75, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-13 00:34:00', 'Trip_Pickup_DateTime': '2009-06-13 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.827975, 'End_Lon': -73.919533, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753915, 'Start_Lon': -73.97088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.67, 'Trip_Dropoff_DateTime': '2009-06-13 01:46:00', 'Trip_Pickup_DateTime': '2009-06-13 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69519, 'End_Lon': -73.952507, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704742, 'Start_Lon': -73.928667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-13 02:30:00', 'Trip_Pickup_DateTime': '2009-06-13 02:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.629082, 'End_Lon': -74.028682, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.6171, 'Start_Lon': -74.033648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-13 00:54:00', 'Trip_Pickup_DateTime': '2009-06-13 00:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764713, 'End_Lon': -73.916707, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755925, 'Start_Lon': -73.98299, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-13 01:33:00', 'Trip_Pickup_DateTime': '2009-06-13 01:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739277, 'End_Lon': -73.98209, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737175, 'Start_Lon': -74.000372, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-09 18:07:00', 'Trip_Pickup_DateTime': '2009-06-09 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74448, 'End_Lon': -73.998487, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759485, 'Start_Lon': -73.979585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-13 02:15:00', 'Trip_Pickup_DateTime': '2009-06-13 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733423, 'End_Lon': -74.004852, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759878, 'Start_Lon': -73.96487, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-12 23:29:00', 'Trip_Pickup_DateTime': '2009-06-12 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725933, 'End_Lon': -73.864158, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76757, 'Start_Lon': -73.9806, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 7.82, 'Trip_Dropoff_DateTime': '2009-06-13 01:52:00', 'Trip_Pickup_DateTime': '2009-06-13 01:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784184, 'End_Lon': -73.953964, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.773423, 'Start_Lon': -73.963844, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-07 05:34:06', 'Trip_Pickup_DateTime': '2009-06-07 05:32:13', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.739195, 'End_Lon': -74.000985, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739068, 'Start_Lon': -73.991142, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-09 17:56:00', 'Trip_Pickup_DateTime': '2009-06-09 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750685, 'End_Lon': -74.003558, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741368, 'Start_Lon': -74.0051, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-12 23:45:00', 'Trip_Pickup_DateTime': '2009-06-12 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748683, 'End_Lon': -73.987327, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738673, 'Start_Lon': -73.977085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-12 09:17:00', 'Trip_Pickup_DateTime': '2009-06-12 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760027, 'End_Lon': -73.981433, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768618, 'Start_Lon': -73.981598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-09 19:15:00', 'Trip_Pickup_DateTime': '2009-06-09 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782487, 'End_Lon': -73.97135, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7547, 'Start_Lon': -73.977855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-09 18:42:00', 'Trip_Pickup_DateTime': '2009-06-09 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715497, 'End_Lon': -73.996783, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725048, 'Start_Lon': -73.992315, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-13 01:51:00', 'Trip_Pickup_DateTime': '2009-06-13 01:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770883, 'End_Lon': -73.963863, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73981, 'Start_Lon': -73.986578, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-09 19:00:00', 'Trip_Pickup_DateTime': '2009-06-09 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801655, 'End_Lon': -73.957305, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76374, 'Start_Lon': -73.988775, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-09 19:27:00', 'Trip_Pickup_DateTime': '2009-06-09 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764445, 'End_Lon': -73.988417, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788805, 'Start_Lon': -73.976255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-23 18:58:00', 'Trip_Pickup_DateTime': '2009-06-23 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76367, 'End_Lon': -73.994878, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759123, 'Start_Lon': -73.984625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-12 23:37:00', 'Trip_Pickup_DateTime': '2009-06-12 23:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760418, 'End_Lon': -73.983933, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774017, 'Start_Lon': -73.986382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-18 12:27:00', 'Trip_Pickup_DateTime': '2009-06-18 12:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747657, 'End_Lon': -73.981102, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751908, 'Start_Lon': -73.97858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-08 11:27:00', 'Trip_Pickup_DateTime': '2009-06-08 11:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75395, 'End_Lon': -73.992422, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771715, 'Start_Lon': -73.982515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-18 12:07:00', 'Trip_Pickup_DateTime': '2009-06-18 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769873, 'End_Lon': -73.960883, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722517, 'Start_Lon': -73.99703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-23 17:09:00', 'Trip_Pickup_DateTime': '2009-06-23 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745308, 'End_Lon': -74.002073, 'Fare_Amt': 7.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76602, 'Start_Lon': -73.98737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-23 14:12:00', 'Trip_Pickup_DateTime': '2009-06-23 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7209, 'End_Lon': -74.004123, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759035, 'Start_Lon': -73.984703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-18 12:10:00', 'Trip_Pickup_DateTime': '2009-06-18 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771412, 'End_Lon': -73.982573, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761633, 'Start_Lon': -73.982448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-16 09:10:00', 'Trip_Pickup_DateTime': '2009-06-16 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751637, 'End_Lon': -73.998797, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737748, 'Start_Lon': -73.98949, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-09 17:13:00', 'Trip_Pickup_DateTime': '2009-06-09 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738005, 'End_Lon': -73.99209, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737252, 'Start_Lon': -74.005227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-09 15:09:00', 'Trip_Pickup_DateTime': '2009-06-09 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728338, 'End_Lon': -73.978913, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733005, 'Start_Lon': -73.996827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-12 22:42:00', 'Trip_Pickup_DateTime': '2009-06-12 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770042, 'End_Lon': -73.960375, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74222, 'Start_Lon': -74.004155, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-09 16:31:00', 'Trip_Pickup_DateTime': '2009-06-09 16:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744002, 'End_Lon': -73.984683, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80128, 'Start_Lon': -73.968065, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.01, 'Trip_Dropoff_DateTime': '2009-06-12 21:34:00', 'Trip_Pickup_DateTime': '2009-06-12 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78009, 'End_Lon': -73.984162, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753935, 'Start_Lon': -73.962433, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-09 16:57:00', 'Trip_Pickup_DateTime': '2009-06-09 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785552, 'End_Lon': -73.976487, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768352, 'Start_Lon': -73.984447, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-12 18:05:00', 'Trip_Pickup_DateTime': '2009-06-12 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757813, 'End_Lon': -73.973812, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772487, 'Start_Lon': -73.963242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-09 17:36:00', 'Trip_Pickup_DateTime': '2009-06-09 17:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733793, 'End_Lon': -74.002628, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752145, 'Start_Lon': -73.98197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-09 17:31:00', 'Trip_Pickup_DateTime': '2009-06-09 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781387, 'End_Lon': -73.956518, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776743, 'Start_Lon': -73.976298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-15 22:08:00', 'Trip_Pickup_DateTime': '2009-06-15 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74943, 'End_Lon': -73.981938, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746353, 'Start_Lon': -73.97758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-12 22:08:00', 'Trip_Pickup_DateTime': '2009-06-12 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77799, 'End_Lon': -73.980092, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774207, 'Start_Lon': -73.945335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-12 20:36:00', 'Trip_Pickup_DateTime': '2009-06-12 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71701, 'End_Lon': -74.007903, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714812, 'Start_Lon': -74.015877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-09 17:21:00', 'Trip_Pickup_DateTime': '2009-06-09 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73524, 'End_Lon': -73.991895, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73927, 'Start_Lon': -73.999167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-12 21:23:00', 'Trip_Pickup_DateTime': '2009-06-12 21:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727648, 'End_Lon': -73.995117, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751088, 'Start_Lon': -74.006192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-30 10:50:00', 'Trip_Pickup_DateTime': '2009-06-30 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726653, 'End_Lon': -74.000267, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76568, 'Start_Lon': -73.95472, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.1, 'Trip_Distance': 5.05, 'Trip_Dropoff_DateTime': '2009-06-12 18:38:00', 'Trip_Pickup_DateTime': '2009-06-12 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751083, 'End_Lon': -73.978617, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75121, 'Start_Lon': -73.940233, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-17 08:00:17', 'Trip_Pickup_DateTime': '2009-06-17 07:42:52', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.776728, 'End_Lon': -74.239548, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772248, 'Start_Lon': -74.235548, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-09 16:31:00', 'Trip_Pickup_DateTime': '2009-06-09 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748623, 'End_Lon': -73.98431, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78049, 'Start_Lon': -73.956537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-09 16:35:00', 'Trip_Pickup_DateTime': '2009-06-09 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738993, 'End_Lon': -73.985673, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711438, 'Start_Lon': -74.008913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-12 22:25:00', 'Trip_Pickup_DateTime': '2009-06-12 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725028, 'End_Lon': -73.995147, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736052, 'Start_Lon': -74.00476, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-12 20:07:00', 'Trip_Pickup_DateTime': '2009-06-12 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766632, 'End_Lon': -73.953812, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706792, 'Start_Lon': -74.005418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 5.94, 'Trip_Dropoff_DateTime': '2009-06-12 19:47:00', 'Trip_Pickup_DateTime': '2009-06-12 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768338, 'End_Lon': -73.989315, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781992, 'Start_Lon': -73.950168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-12 18:37:00', 'Trip_Pickup_DateTime': '2009-06-12 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776323, 'End_Lon': -73.958008, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.644745, 'Start_Lon': -73.781972, 'Tip_Amt': 3.0, 'Tolls_Amt': 8.3, 'Total_Amt': 56.3, 'Trip_Distance': 19.76, 'Trip_Dropoff_DateTime': '2009-06-01 13:25:00', 'Trip_Pickup_DateTime': '2009-06-01 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76446, 'End_Lon': -73.978388, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750867, 'Start_Lon': -73.994325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-09 13:15:00', 'Trip_Pickup_DateTime': '2009-06-09 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75999, 'End_Lon': -73.972587, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773045, 'Start_Lon': -73.98377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-09 14:28:00', 'Trip_Pickup_DateTime': '2009-06-09 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723792, 'End_Lon': -73.996437, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721328, 'Start_Lon': -74.005178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-16 08:44:00', 'Trip_Pickup_DateTime': '2009-06-16 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794157, 'End_Lon': -73.968185, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801617, 'Start_Lon': -73.961073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-16 08:50:00', 'Trip_Pickup_DateTime': '2009-06-16 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756665, 'End_Lon': -73.98571, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756173, 'Start_Lon': -73.975137, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-22 18:24:00', 'Trip_Pickup_DateTime': '2009-06-22 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770825, 'End_Lon': -73.975892, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756923, 'Start_Lon': -73.983203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-09 13:19:00', 'Trip_Pickup_DateTime': '2009-06-09 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723333, 'End_Lon': -73.990267, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736627, 'Start_Lon': -73.994242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-12 19:09:00', 'Trip_Pickup_DateTime': '2009-06-12 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724438, 'End_Lon': -73.99362, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780003, 'Start_Lon': -73.980807, 'Tip_Amt': 4.18, 'Tolls_Amt': 0.0, 'Total_Amt': 25.08, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-09 13:39:00', 'Trip_Pickup_DateTime': '2009-06-09 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757118, 'End_Lon': -73.983792, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74988, 'Start_Lon': -73.981473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-12 19:35:00', 'Trip_Pickup_DateTime': '2009-06-12 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75012, 'End_Lon': -73.975667, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747373, 'Start_Lon': -73.986195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-03 13:48:00', 'Trip_Pickup_DateTime': '2009-06-03 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776752, 'End_Lon': -73.977203, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742133, 'Start_Lon': -74.004105, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-01 20:28:00', 'Trip_Pickup_DateTime': '2009-06-01 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721393, 'End_Lon': -73.983827, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728018, 'Start_Lon': -73.982113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-12 19:19:00', 'Trip_Pickup_DateTime': '2009-06-12 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751467, 'End_Lon': -73.974147, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73523, 'Start_Lon': -73.998358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-22 14:03:00', 'Trip_Pickup_DateTime': '2009-06-22 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717807, 'End_Lon': -73.992103, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72036, 'Start_Lon': -73.989517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-01 22:16:00', 'Trip_Pickup_DateTime': '2009-06-01 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734235, 'End_Lon': -73.98932, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725317, 'Start_Lon': -73.984042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-22 17:09:00', 'Trip_Pickup_DateTime': '2009-06-22 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756508, 'End_Lon': -73.971698, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753445, 'Start_Lon': -73.980827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-12 19:25:00', 'Trip_Pickup_DateTime': '2009-06-12 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774022, 'End_Lon': -73.96061, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777493, 'Start_Lon': -73.975052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-09 13:22:00', 'Trip_Pickup_DateTime': '2009-06-09 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748977, 'End_Lon': -73.993838, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727255, 'Start_Lon': -73.985563, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-09 12:38:00', 'Trip_Pickup_DateTime': '2009-06-09 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712648, 'End_Lon': -74.007062, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724607, 'Start_Lon': -73.998565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-01 23:40:00', 'Trip_Pickup_DateTime': '2009-06-01 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744313, 'End_Lon': -73.985627, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763077, 'Start_Lon': -73.974263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-01 14:06:00', 'Trip_Pickup_DateTime': '2009-06-01 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799592, 'End_Lon': -73.959323, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80507, 'Start_Lon': -73.96605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-30 16:05:00', 'Trip_Pickup_DateTime': '2009-06-30 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718853, 'End_Lon': -73.952028, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758365, 'Start_Lon': -73.985255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.7, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-12 18:42:00', 'Trip_Pickup_DateTime': '2009-06-12 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.668773, 'End_Lon': -73.987108, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.689562, 'Start_Lon': -73.969987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-01 23:39:00', 'Trip_Pickup_DateTime': '2009-06-01 23:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-01 14:13:00', 'Trip_Pickup_DateTime': '2009-06-01 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740165, 'End_Lon': -73.986408, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746348, 'Start_Lon': -73.979818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-01 18:26:00', 'Trip_Pickup_DateTime': '2009-06-01 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737253, 'End_Lon': -73.996308, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73475, 'Start_Lon': -73.986265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-01 19:24:00', 'Trip_Pickup_DateTime': '2009-06-01 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75875, 'End_Lon': -73.985862, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751757, 'Start_Lon': -73.994308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-01 22:44:00', 'Trip_Pickup_DateTime': '2009-06-01 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767222, 'End_Lon': -73.968928, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755577, 'Start_Lon': -73.977022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-30 13:02:00', 'Trip_Pickup_DateTime': '2009-06-30 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758863, 'End_Lon': -73.992512, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790638, 'Start_Lon': -73.969088, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-01 11:53:00', 'Trip_Pickup_DateTime': '2009-06-01 11:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761403, 'End_Lon': -73.999527, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753787, 'Start_Lon': -73.99966, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-01 19:51:00', 'Trip_Pickup_DateTime': '2009-06-01 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759075, 'End_Lon': -73.980493, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78948, 'Start_Lon': -73.97745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-01 16:43:00', 'Trip_Pickup_DateTime': '2009-06-01 16:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770883, 'End_Lon': -73.86551, 'Fare_Amt': 26.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773125, 'Start_Lon': -73.978112, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.65, 'Trip_Distance': 10.61, 'Trip_Dropoff_DateTime': '2009-06-01 12:49:00', 'Trip_Pickup_DateTime': '2009-06-01 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75594, 'End_Lon': -73.970602, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754403, 'Start_Lon': -73.969055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-12 17:55:00', 'Trip_Pickup_DateTime': '2009-06-12 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779913, 'End_Lon': -73.946738, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718648, 'Start_Lon': -73.983397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.2, 'Trip_Dropoff_DateTime': '2009-06-29 23:30:00', 'Trip_Pickup_DateTime': '2009-06-29 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721417, 'End_Lon': -73.99221, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750387, 'Start_Lon': -73.971772, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-29 17:47:00', 'Trip_Pickup_DateTime': '2009-06-29 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724523, 'End_Lon': -73.983617, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71323, 'Start_Lon': -74.007207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-01 19:35:00', 'Trip_Pickup_DateTime': '2009-06-01 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73466, 'End_Lon': -74.008492, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73524, 'Start_Lon': -73.98563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-22 17:55:00', 'Trip_Pickup_DateTime': '2009-06-22 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780032, 'End_Lon': -73.980738, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794312, 'Start_Lon': -73.97393, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-01 18:43:00', 'Trip_Pickup_DateTime': '2009-06-01 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750188, 'End_Lon': -73.991433, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757185, 'Start_Lon': -73.97288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-12 17:35:00', 'Trip_Pickup_DateTime': '2009-06-12 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74936, 'End_Lon': -73.978955, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752008, 'Start_Lon': -73.979772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.26, 'Trip_Dropoff_DateTime': '2009-06-01 20:52:00', 'Trip_Pickup_DateTime': '2009-06-01 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743415, 'End_Lon': -73.992458, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736385, 'Start_Lon': -73.990862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-01 20:07:00', 'Trip_Pickup_DateTime': '2009-06-01 20:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788243, 'End_Lon': -73.980062, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705735, 'Start_Lon': -74.012377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.5, 'Trip_Distance': 6.77, 'Trip_Dropoff_DateTime': '2009-06-01 18:23:00', 'Trip_Pickup_DateTime': '2009-06-01 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733215, 'End_Lon': -73.958982, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.667157, 'Start_Lon': -73.946593, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-01 20:35:00', 'Trip_Pickup_DateTime': '2009-06-01 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739153, 'End_Lon': -73.986252, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734782, 'Start_Lon': -73.990568, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-22 19:23:00', 'Trip_Pickup_DateTime': '2009-06-22 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78973, 'End_Lon': -73.95245, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776323, 'Start_Lon': -73.947028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-09 12:03:00', 'Trip_Pickup_DateTime': '2009-06-09 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759715, 'End_Lon': -73.970083, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.767882, 'Start_Lon': -73.989402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-29 08:34:59', 'Trip_Pickup_DateTime': '2009-06-29 08:25:45', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75144, 'End_Lon': -73.990413, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.752389, 'Start_Lon': -73.978042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-08 09:32:50', 'Trip_Pickup_DateTime': '2009-06-08 09:24:27', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.718657, 'End_Lon': -73.95697, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.75605, 'Start_Lon': -73.990869, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 6.1, 'Trip_Dropoff_DateTime': '2009-06-08 23:42:59', 'Trip_Pickup_DateTime': '2009-06-08 23:16:47', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.765382, 'End_Lon': -73.808046, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.641539, 'Start_Lon': -73.786543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.1, 'Trip_Distance': 11.8, 'Trip_Dropoff_DateTime': '2009-06-08 08:02:20', 'Trip_Pickup_DateTime': '2009-06-08 07:25:21', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.715837, 'End_Lon': -74.015242, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702302, 'Start_Lon': -74.012742, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-17 20:24:00', 'Trip_Pickup_DateTime': '2009-06-17 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761732, 'End_Lon': -73.975013, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771792, 'Start_Lon': -73.959602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-17 20:14:00', 'Trip_Pickup_DateTime': '2009-06-17 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751668, 'End_Lon': -73.990133, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780907, 'Start_Lon': -73.981425, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-20 10:03:00', 'Trip_Pickup_DateTime': '2009-06-20 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768082, 'End_Lon': -73.966403, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796067, 'Start_Lon': -73.970877, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-18 13:40:00', 'Trip_Pickup_DateTime': '2009-06-18 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75175, 'End_Lon': -73.977167, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750448, 'Start_Lon': -73.991837, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-17 18:12:00', 'Trip_Pickup_DateTime': '2009-06-17 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777855, 'End_Lon': -73.948585, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742945, 'Start_Lon': -73.977125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-17 18:34:00', 'Trip_Pickup_DateTime': '2009-06-17 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733243, 'End_Lon': -74.002387, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738302, 'Start_Lon': -73.98789, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-17 22:06:00', 'Trip_Pickup_DateTime': '2009-06-17 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7365, 'End_Lon': -73.977335, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77733, 'Start_Lon': -73.978892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.21, 'Trip_Dropoff_DateTime': '2009-06-17 14:31:00', 'Trip_Pickup_DateTime': '2009-06-17 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771475, 'End_Lon': -73.960683, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765078, 'Start_Lon': -73.97664, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-18 12:38:00', 'Trip_Pickup_DateTime': '2009-06-18 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764798, 'End_Lon': -73.973808, 'Fare_Amt': 23.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773088, 'Start_Lon': -73.885372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 8.36, 'Trip_Dropoff_DateTime': '2009-06-13 05:00:00', 'Trip_Pickup_DateTime': '2009-06-13 04:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726023, 'End_Lon': -74.007575, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748197, 'Start_Lon': -74.003838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-17 15:57:00', 'Trip_Pickup_DateTime': '2009-06-17 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7231, 'End_Lon': -73.989503, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743997, 'Start_Lon': -73.976397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-07 18:08:00', 'Trip_Pickup_DateTime': '2009-06-07 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764842, 'End_Lon': -73.960693, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763773, 'Start_Lon': -73.97774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-20 09:10:00', 'Trip_Pickup_DateTime': '2009-06-20 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764477, 'End_Lon': -73.978558, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78256, 'Start_Lon': -73.974852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-17 15:10:00', 'Trip_Pickup_DateTime': '2009-06-17 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735428, 'End_Lon': -74.00598, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753642, 'Start_Lon': -73.968737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-18 12:42:00', 'Trip_Pickup_DateTime': '2009-06-18 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741937, 'End_Lon': -73.991087, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763037, 'Start_Lon': -73.982852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-17 15:01:00', 'Trip_Pickup_DateTime': '2009-06-17 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757702, 'End_Lon': -73.987135, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76177, 'Start_Lon': -74.000448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-16 09:47:00', 'Trip_Pickup_DateTime': '2009-06-16 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760708, 'End_Lon': -73.961055, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715093, 'Start_Lon': -74.0019, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-16 09:30:00', 'Trip_Pickup_DateTime': '2009-06-16 09:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731135, 'End_Lon': -73.979125, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73991, 'Start_Lon': -74.005342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-20 03:01:00', 'Trip_Pickup_DateTime': '2009-06-20 02:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7423, 'End_Lon': -73.979753, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719247, 'Start_Lon': -73.98572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-20 05:48:00', 'Trip_Pickup_DateTime': '2009-06-20 05:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760937, 'End_Lon': -73.980045, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764545, 'Start_Lon': -73.965155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-12 05:58:00', 'Trip_Pickup_DateTime': '2009-06-12 05:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76275, 'End_Lon': -73.982383, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758038, 'Start_Lon': -73.991097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-17 14:52:00', 'Trip_Pickup_DateTime': '2009-06-17 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712488, 'End_Lon': -73.992915, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722905, 'Start_Lon': -73.979682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-20 08:29:00', 'Trip_Pickup_DateTime': '2009-06-20 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.75, 'Trip_Dropoff_DateTime': '2009-06-24 14:50:00', 'Trip_Pickup_DateTime': '2009-06-24 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760205, 'End_Lon': -73.967443, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767628, 'Start_Lon': -73.981673, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-10 10:08:00', 'Trip_Pickup_DateTime': '2009-06-10 09:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766688, 'End_Lon': -73.938863, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750383, 'Start_Lon': -73.94044, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-13 16:11:00', 'Trip_Pickup_DateTime': '2009-06-13 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758498, 'End_Lon': -73.963057, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765343, 'Start_Lon': -73.976697, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-13 17:14:00', 'Trip_Pickup_DateTime': '2009-06-13 17:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764082, 'End_Lon': -73.972702, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794, 'Start_Lon': -73.974325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-25 19:12:00', 'Trip_Pickup_DateTime': '2009-06-25 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773522, 'End_Lon': -73.964382, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78081, 'Start_Lon': -73.976283, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-17 14:14:00', 'Trip_Pickup_DateTime': '2009-06-17 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763735, 'End_Lon': -73.965828, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753137, 'Start_Lon': -73.978273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-24 14:24:00', 'Trip_Pickup_DateTime': '2009-06-24 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767563, 'End_Lon': -73.956325, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722028, 'Start_Lon': -74.001897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-10 10:33:00', 'Trip_Pickup_DateTime': '2009-06-10 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776528, 'End_Lon': -73.950587, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72307, 'Start_Lon': -73.982608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-20 03:43:00', 'Trip_Pickup_DateTime': '2009-06-20 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744115, 'End_Lon': -73.991902, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736398, 'Start_Lon': -73.994012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-13 16:26:00', 'Trip_Pickup_DateTime': '2009-06-13 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648, 'End_Lon': -73.782548, 'Fare_Amt': 33.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709483, 'Start_Lon': -73.960597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.7, 'Trip_Distance': 13.56, 'Trip_Dropoff_DateTime': '2009-06-13 16:59:00', 'Trip_Pickup_DateTime': '2009-06-13 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75851, 'End_Lon': -73.983978, 'Fare_Amt': 31.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773763, 'Start_Lon': -73.870918, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 35.85, 'Trip_Distance': 9.41, 'Trip_Dropoff_DateTime': '2009-06-10 10:54:00', 'Trip_Pickup_DateTime': '2009-06-10 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719778, 'End_Lon': -74.001702, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748245, 'Start_Lon': -73.984725, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-13 14:58:00', 'Trip_Pickup_DateTime': '2009-06-13 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746007, 'End_Lon': -73.990615, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759837, 'Start_Lon': -73.96487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-24 09:00:00', 'Trip_Pickup_DateTime': '2009-06-24 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711758, 'End_Lon': -73.94241, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.682882, 'Start_Lon': -73.963772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 4.14, 'Trip_Dropoff_DateTime': '2009-06-03 23:03:00', 'Trip_Pickup_DateTime': '2009-06-03 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72993, 'End_Lon': -73.99192, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722168, 'Start_Lon': -73.997152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-13 01:07:00', 'Trip_Pickup_DateTime': '2009-06-13 01:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.561657, 'End_Lon': -73.747902, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.689665, 'Start_Lon': -73.892537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 11.59, 'Trip_Dropoff_DateTime': '2009-06-10 07:51:00', 'Trip_Pickup_DateTime': '2009-06-10 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743223, 'End_Lon': -73.982903, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721057, 'Start_Lon': -73.99323, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-13 01:27:00', 'Trip_Pickup_DateTime': '2009-06-13 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739908, 'End_Lon': -74.00611, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74852, 'Start_Lon': -73.984543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-24 21:03:00', 'Trip_Pickup_DateTime': '2009-06-24 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736743, 'End_Lon': -73.988788, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741902, 'Start_Lon': -73.984795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-10 07:30:00', 'Trip_Pickup_DateTime': '2009-06-10 07:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708335, 'End_Lon': -74.017173, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716102, 'Start_Lon': -74.01353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-13 15:54:00', 'Trip_Pickup_DateTime': '2009-06-13 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741008, 'End_Lon': -73.990033, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731857, 'Start_Lon': -73.982115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-06 20:47:00', 'Trip_Pickup_DateTime': '2009-06-06 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707887, 'End_Lon': -74.013278, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761762, 'Start_Lon': -73.971295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 7.05, 'Trip_Dropoff_DateTime': '2009-06-13 15:06:00', 'Trip_Pickup_DateTime': '2009-06-13 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779608, 'End_Lon': -73.959713, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779323, 'Start_Lon': -73.981687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-13 16:06:00', 'Trip_Pickup_DateTime': '2009-06-13 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757007, 'End_Lon': -73.971273, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753115, 'Start_Lon': -73.967752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-25 09:44:00', 'Trip_Pickup_DateTime': '2009-06-25 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736332, 'End_Lon': -73.989268, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742105, 'Start_Lon': -73.985312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-10 07:29:00', 'Trip_Pickup_DateTime': '2009-06-10 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776057, 'End_Lon': -73.947033, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758518, 'Start_Lon': -73.962797, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-13 12:24:00', 'Trip_Pickup_DateTime': '2009-06-13 12:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753225, 'End_Lon': -73.989267, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763125, 'Start_Lon': -73.981387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-10 09:26:00', 'Trip_Pickup_DateTime': '2009-06-10 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765848, 'End_Lon': -73.969763, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7543, 'Start_Lon': -73.977655, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-10 09:33:00', 'Trip_Pickup_DateTime': '2009-06-10 09:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706917, 'End_Lon': -74.002377, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718382, 'Start_Lon': -73.99493, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-13 14:20:00', 'Trip_Pickup_DateTime': '2009-06-13 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757368, 'End_Lon': -73.921418, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767647, 'Start_Lon': -73.925573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-10 08:31:00', 'Trip_Pickup_DateTime': '2009-06-10 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768995, 'End_Lon': -73.943287, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754347, 'Start_Lon': -73.973663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-10 00:20:00', 'Trip_Pickup_DateTime': '2009-06-09 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781688, 'End_Lon': -73.97192, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77253, 'Start_Lon': -73.978572, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 4.85, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-13 10:16:00', 'Trip_Pickup_DateTime': '2009-06-13 10:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760452, 'End_Lon': -73.983152, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776822, 'Start_Lon': -73.979487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-10 06:59:00', 'Trip_Pickup_DateTime': '2009-06-10 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758917, 'End_Lon': -73.978398, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768423, 'Start_Lon': -73.984777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-10 08:29:00', 'Trip_Pickup_DateTime': '2009-06-10 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741563, 'End_Lon': -73.995933, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755797, 'Start_Lon': -73.99446, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-13 13:44:00', 'Trip_Pickup_DateTime': '2009-06-13 13:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75919, 'End_Lon': -73.982845, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763045, 'Start_Lon': -73.992957, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-24 11:42:00', 'Trip_Pickup_DateTime': '2009-06-24 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705525, 'End_Lon': -74.01586, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764437, 'Start_Lon': -73.991958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.71, 'Trip_Dropoff_DateTime': '2009-06-24 21:16:00', 'Trip_Pickup_DateTime': '2009-06-24 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755838, 'End_Lon': -73.976172, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779683, 'Start_Lon': -73.950448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-09 23:09:00', 'Trip_Pickup_DateTime': '2009-06-09 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.684838, 'End_Lon': -73.979502, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.683672, 'Start_Lon': -74.001358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-13 10:18:00', 'Trip_Pickup_DateTime': '2009-06-13 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740147, 'End_Lon': -74.027818, 'Fare_Amt': 50.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740292, 'Start_Lon': -74.027912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-10 00:01:00', 'Trip_Pickup_DateTime': '2009-06-09 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779182, 'End_Lon': -73.988303, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768428, 'Start_Lon': -73.969125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-09 22:03:00', 'Trip_Pickup_DateTime': '2009-06-09 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74242, 'End_Lon': -73.993478, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742065, 'Start_Lon': -74.004533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-23 13:17:00', 'Trip_Pickup_DateTime': '2009-06-23 13:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691683, 'End_Lon': -73.995857, 'Fare_Amt': 28.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77336, 'Start_Lon': -73.876012, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 32.0, 'Trip_Distance': 11.59, 'Trip_Dropoff_DateTime': '2009-06-10 00:49:00', 'Trip_Pickup_DateTime': '2009-06-10 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72508, 'End_Lon': -73.982517, 'Fare_Amt': 9.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755943, 'Start_Lon': -73.990635, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-09 21:57:00', 'Trip_Pickup_DateTime': '2009-06-09 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702507, 'End_Lon': -74.014055, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714885, 'Start_Lon': -74.016228, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-13 11:45:00', 'Trip_Pickup_DateTime': '2009-06-13 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751192, 'End_Lon': -73.990722, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759622, 'Start_Lon': -73.9849, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-10 00:47:00', 'Trip_Pickup_DateTime': '2009-06-10 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760672, 'End_Lon': -74.002688, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759252, 'Start_Lon': -73.992153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-09 21:35:00', 'Trip_Pickup_DateTime': '2009-06-09 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763155, 'End_Lon': -73.959285, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72046, 'Start_Lon': -73.996762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.88, 'Trip_Dropoff_DateTime': '2009-06-10 01:17:00', 'Trip_Pickup_DateTime': '2009-06-10 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781068, 'End_Lon': -73.972492, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751615, 'Start_Lon': -73.978132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-13 11:27:00', 'Trip_Pickup_DateTime': '2009-06-13 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726753, 'End_Lon': -73.994382, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781993, 'Start_Lon': -73.960127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.52, 'Trip_Dropoff_DateTime': '2009-06-09 21:36:00', 'Trip_Pickup_DateTime': '2009-06-09 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760345, 'End_Lon': -73.990868, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741432, 'Start_Lon': -73.981237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-13 01:29:00', 'Trip_Pickup_DateTime': '2009-06-13 01:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769358, 'End_Lon': -73.863667, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749203, 'Start_Lon': -73.979007, 'Tip_Amt': 3.5, 'Tolls_Amt': 4.15, 'Total_Amt': 30.55, 'Trip_Distance': 9.57, 'Trip_Dropoff_DateTime': '2009-06-23 16:22:00', 'Trip_Pickup_DateTime': '2009-06-23 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721655, 'End_Lon': -73.991967, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76079, 'Start_Lon': -73.977307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-09 23:25:00', 'Trip_Pickup_DateTime': '2009-06-09 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727395, 'End_Lon': -73.986873, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763432, 'Start_Lon': -73.959368, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-13 04:45:00', 'Trip_Pickup_DateTime': '2009-06-13 04:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73162, 'End_Lon': -73.983238, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760295, 'Start_Lon': -73.991318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-10 00:26:00', 'Trip_Pickup_DateTime': '2009-06-10 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-23 19:11:00', 'Trip_Pickup_DateTime': '2009-06-23 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725133, 'End_Lon': -73.946568, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71046, 'Start_Lon': -73.963768, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-09 23:42:00', 'Trip_Pickup_DateTime': '2009-06-09 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.646923, 'End_Lon': -73.78999, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75725, 'Start_Lon': -73.983682, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.62, 'Trip_Dropoff_DateTime': '2009-06-13 10:33:00', 'Trip_Pickup_DateTime': '2009-06-13 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76043, 'End_Lon': -73.968042, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776913, 'Start_Lon': -73.96153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-09 23:41:00', 'Trip_Pickup_DateTime': '2009-06-09 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753597, 'End_Lon': -73.98068, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.684367, 'Start_Lon': -73.997235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 7.86, 'Trip_Dropoff_DateTime': '2009-06-13 08:14:00', 'Trip_Pickup_DateTime': '2009-06-13 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781823, 'End_Lon': -73.948825, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755458, 'Start_Lon': -73.962062, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-09 22:25:00', 'Trip_Pickup_DateTime': '2009-06-09 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749615, 'End_Lon': -73.989643, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76332, 'Start_Lon': -73.978192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-09 22:57:00', 'Trip_Pickup_DateTime': '2009-06-09 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755158, 'End_Lon': -74.21178, 'Fare_Amt': 78.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755158, 'Start_Lon': -74.21178, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 80.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-23 00:06:26', 'Trip_Pickup_DateTime': '2009-06-23 00:05:47', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.711695, 'End_Lon': -74.008665, 'Fare_Amt': 6.2, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711695, 'Start_Lon': -74.008665, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-13 03:01:00', 'Trip_Pickup_DateTime': '2009-06-13 03:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732772, 'End_Lon': -74.001478, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753988, 'Start_Lon': -73.973933, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-24 00:14:00', 'Trip_Pickup_DateTime': '2009-06-24 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764143, 'End_Lon': -73.988137, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758628, 'Start_Lon': -73.981432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-09 19:47:00', 'Trip_Pickup_DateTime': '2009-06-09 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773977, 'End_Lon': -73.96598, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7045, 'Start_Lon': -74.009475, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 7.67, 'Trip_Dropoff_DateTime': '2009-06-09 20:40:00', 'Trip_Pickup_DateTime': '2009-06-09 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760863, 'End_Lon': -73.99452, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725477, 'Start_Lon': -73.992032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-23 20:17:00', 'Trip_Pickup_DateTime': '2009-06-23 20:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751037, 'End_Lon': -73.991155, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734158, 'Start_Lon': -74.006197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-09 22:19:00', 'Trip_Pickup_DateTime': '2009-06-09 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758493, 'End_Lon': -73.972642, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74973, 'Start_Lon': -73.993467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-09 15:27:00', 'Trip_Pickup_DateTime': '2009-06-09 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760867, 'End_Lon': -73.983865, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764475, 'Start_Lon': -73.95859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-09 19:09:00', 'Trip_Pickup_DateTime': '2009-06-09 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756487, 'End_Lon': -73.987048, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74871, 'Start_Lon': -73.988115, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-13 02:02:00', 'Trip_Pickup_DateTime': '2009-06-13 01:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793687, 'End_Lon': -73.940188, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750742, 'Start_Lon': -74.002022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.2, 'Trip_Dropoff_DateTime': '2009-06-13 03:30:00', 'Trip_Pickup_DateTime': '2009-06-13 03:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749397, 'End_Lon': -73.978855, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75019, 'Start_Lon': -73.97736, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-04 00:52:00', 'Trip_Pickup_DateTime': '2009-06-04 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772852, 'End_Lon': -73.981758, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749637, 'Start_Lon': -73.977538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-09 19:44:00', 'Trip_Pickup_DateTime': '2009-06-09 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756786, 'End_Lon': -73.978123, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.759128, 'Start_Lon': -73.976677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.2, 'Trip_Dropoff_DateTime': '2009-06-30 12:42:44', 'Trip_Pickup_DateTime': '2009-06-30 12:36:22', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.704567, 'End_Lon': -74.008857, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723135, 'Start_Lon': -74.006333, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-16 09:44:00', 'Trip_Pickup_DateTime': '2009-06-16 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725243, 'End_Lon': -74.013513, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73769, 'Start_Lon': -73.985217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-27 13:40:00', 'Trip_Pickup_DateTime': '2009-06-27 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722522, 'End_Lon': -74.002215, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702427, 'Start_Lon': -74.012142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-18 12:10:00', 'Trip_Pickup_DateTime': '2009-06-18 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760447, 'End_Lon': -73.991103, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770948, 'Start_Lon': -73.983467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-15 22:20:00', 'Trip_Pickup_DateTime': '2009-06-15 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761395, 'End_Lon': -73.968977, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772853, 'Start_Lon': -73.946268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-16 08:32:00', 'Trip_Pickup_DateTime': '2009-06-16 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747898, 'End_Lon': -74.017845, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743973, 'Start_Lon': -73.989817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-27 21:54:00', 'Trip_Pickup_DateTime': '2009-06-27 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74072, 'End_Lon': -74.005552, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732192, 'Start_Lon': -74.007683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-16 09:19:00', 'Trip_Pickup_DateTime': '2009-06-16 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771365, 'End_Lon': -73.963278, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779657, 'Start_Lon': -73.970392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-18 14:39:00', 'Trip_Pickup_DateTime': '2009-06-18 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737755, 'End_Lon': -73.982852, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748275, 'Start_Lon': -73.978308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-27 22:19:00', 'Trip_Pickup_DateTime': '2009-06-27 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773882, 'End_Lon': -73.96398, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737402, 'Start_Lon': -73.98855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-16 10:08:00', 'Trip_Pickup_DateTime': '2009-06-16 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748205, 'End_Lon': -73.992492, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757863, 'Start_Lon': -73.972002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-20 10:09:00', 'Trip_Pickup_DateTime': '2009-06-20 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784687, 'End_Lon': -73.968855, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.6941, 'Start_Lon': -73.996152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 7.85, 'Trip_Dropoff_DateTime': '2009-06-20 05:27:00', 'Trip_Pickup_DateTime': '2009-06-20 05:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728953, 'End_Lon': -73.877232, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727238, 'Start_Lon': -73.999178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 8.84, 'Trip_Dropoff_DateTime': '2009-06-16 04:34:00', 'Trip_Pickup_DateTime': '2009-06-16 04:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722863, 'End_Lon': -73.998542, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72815, 'Start_Lon': -74.002847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-18 12:27:00', 'Trip_Pickup_DateTime': '2009-06-18 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755683, 'End_Lon': -73.978098, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764125, 'Start_Lon': -73.992118, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-18 10:10:00', 'Trip_Pickup_DateTime': '2009-06-18 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756152, 'End_Lon': -73.981275, 'Fare_Amt': 34.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773807, 'Start_Lon': -73.872347, 'Tip_Amt': 6.98, 'Tolls_Amt': 4.15, 'Total_Amt': 46.03, 'Trip_Distance': 11.98, 'Trip_Dropoff_DateTime': '2009-06-18 08:58:00', 'Trip_Pickup_DateTime': '2009-06-18 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75711, 'End_Lon': -73.96983, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739135, 'Start_Lon': -73.9829, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-18 10:41:00', 'Trip_Pickup_DateTime': '2009-06-18 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781332, 'End_Lon': -73.976028, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706993, 'Start_Lon': -74.014033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 6.46, 'Trip_Dropoff_DateTime': '2009-06-18 11:41:00', 'Trip_Pickup_DateTime': '2009-06-18 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748042, 'End_Lon': -73.985035, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.800382, 'Start_Lon': -73.965508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.64, 'Trip_Dropoff_DateTime': '2009-06-18 09:01:00', 'Trip_Pickup_DateTime': '2009-06-18 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716225, 'End_Lon': -74.004365, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.67601, 'Start_Lon': -73.997098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-16 07:40:00', 'Trip_Pickup_DateTime': '2009-06-16 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77718, 'End_Lon': -73.955425, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757562, 'Start_Lon': -73.987882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-15 23:56:00', 'Trip_Pickup_DateTime': '2009-06-15 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725252, 'End_Lon': -73.980017, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762947, 'Start_Lon': -73.995125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-28 05:00:00', 'Trip_Pickup_DateTime': '2009-06-28 04:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733655, 'End_Lon': -73.988355, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737672, 'Start_Lon': -73.99257, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-26 01:17:00', 'Trip_Pickup_DateTime': '2009-06-26 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768562, 'End_Lon': -73.949617, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772865, 'Start_Lon': -73.946358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-18 08:44:00', 'Trip_Pickup_DateTime': '2009-06-18 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746083, 'End_Lon': -73.979625, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758002, 'Start_Lon': -73.971558, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-17 20:48:00', 'Trip_Pickup_DateTime': '2009-06-17 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75117, 'End_Lon': -73.976885, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690615, 'Start_Lon': -73.989167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 6.45, 'Trip_Dropoff_DateTime': '2009-06-16 06:23:00', 'Trip_Pickup_DateTime': '2009-06-16 06:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765832, 'End_Lon': -73.955875, 'Fare_Amt': 10.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755938, 'Start_Lon': -73.991035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-16 07:15:00', 'Trip_Pickup_DateTime': '2009-06-16 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719073, 'End_Lon': -74.00506, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740443, 'Start_Lon': -73.998403, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 7.75, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-13 12:08:00', 'Trip_Pickup_DateTime': '2009-06-13 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735357, 'End_Lon': -73.991942, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737637, 'Start_Lon': -74.004753, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-15 22:21:00', 'Trip_Pickup_DateTime': '2009-06-15 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706362, 'End_Lon': -74.007893, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759472, 'Start_Lon': -73.966243, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-16 07:26:00', 'Trip_Pickup_DateTime': '2009-06-16 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751752, 'End_Lon': -74.007738, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743007, 'Start_Lon': -73.992697, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-18 09:59:00', 'Trip_Pickup_DateTime': '2009-06-18 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772312, 'End_Lon': -73.95501, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763278, 'Start_Lon': -73.988608, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-16 00:28:00', 'Trip_Pickup_DateTime': '2009-06-16 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707582, 'End_Lon': -74.007198, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720193, 'Start_Lon': -73.987442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-25 23:15:00', 'Trip_Pickup_DateTime': '2009-06-25 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711385, 'End_Lon': -74.015187, 'Fare_Amt': 16.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752877, 'Start_Lon': -73.974957, 'Tip_Amt': 3.38, 'Tolls_Amt': 0.0, 'Total_Amt': 20.28, 'Trip_Distance': 6.26, 'Trip_Dropoff_DateTime': '2009-06-18 09:25:00', 'Trip_Pickup_DateTime': '2009-06-18 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767488, 'End_Lon': -73.970565, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755905, 'Start_Lon': -73.990593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-26 06:29:00', 'Trip_Pickup_DateTime': '2009-06-26 06:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773495, 'End_Lon': -73.97963, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76555, 'Start_Lon': -73.980333, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-15 23:29:00', 'Trip_Pickup_DateTime': '2009-06-15 23:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777592, 'End_Lon': -73.955197, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767408, 'Start_Lon': -73.965682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-20 10:49:00', 'Trip_Pickup_DateTime': '2009-06-20 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755435, 'End_Lon': -73.990953, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748635, 'Start_Lon': -74.008112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-13 11:18:00', 'Trip_Pickup_DateTime': '2009-06-13 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732635, 'End_Lon': -73.983387, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724228, 'Start_Lon': -73.984885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-25 15:37:00', 'Trip_Pickup_DateTime': '2009-06-25 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776443, 'End_Lon': -73.961147, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760553, 'Start_Lon': -73.973197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-25 21:51:00', 'Trip_Pickup_DateTime': '2009-06-25 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760248, 'End_Lon': -73.996913, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745163, 'Start_Lon': -73.99864, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-18 01:12:00', 'Trip_Pickup_DateTime': '2009-06-18 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-18 07:32:00', 'Trip_Pickup_DateTime': '2009-06-18 07:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802228, 'End_Lon': -73.949478, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759007, 'Start_Lon': -73.984633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-15 23:07:00', 'Trip_Pickup_DateTime': '2009-06-15 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.801982, 'End_Lon': -73.96458, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79345, 'Start_Lon': -73.970712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-20 10:07:00', 'Trip_Pickup_DateTime': '2009-06-20 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774258, 'End_Lon': -73.9579, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755755, 'Start_Lon': -73.981245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.19, 'Trip_Dropoff_DateTime': '2009-06-15 22:56:00', 'Trip_Pickup_DateTime': '2009-06-15 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755188, 'End_Lon': -73.977465, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749732, 'Start_Lon': -73.991415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-18 07:12:00', 'Trip_Pickup_DateTime': '2009-06-18 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761517, 'End_Lon': -73.975117, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732965, 'Start_Lon': -73.999988, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-18 07:16:00', 'Trip_Pickup_DateTime': '2009-06-18 07:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756168, 'End_Lon': -73.990505, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743682, 'Start_Lon': -73.987547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-16 00:19:00', 'Trip_Pickup_DateTime': '2009-06-16 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750508, 'End_Lon': -73.990425, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760398, 'Start_Lon': -73.991207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-15 22:57:00', 'Trip_Pickup_DateTime': '2009-06-15 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724002, 'End_Lon': -74.0013, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708877, 'Start_Lon': -74.011762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-27 13:28:00', 'Trip_Pickup_DateTime': '2009-06-27 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703985, 'End_Lon': -74.01135, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76745, 'Start_Lon': -73.953292, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 6.54, 'Trip_Dropoff_DateTime': '2009-06-18 06:52:00', 'Trip_Pickup_DateTime': '2009-06-18 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656137, 'End_Lon': -73.79434, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.656137, 'Start_Lon': -73.79434, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-15 20:18:00', 'Trip_Pickup_DateTime': '2009-06-15 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749373, 'End_Lon': -73.974012, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729758, 'Start_Lon': -73.989728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-25 21:19:00', 'Trip_Pickup_DateTime': '2009-06-25 21:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.663688, 'End_Lon': -73.991215, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708823, 'Start_Lon': -74.007807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-18 00:46:00', 'Trip_Pickup_DateTime': '2009-06-18 00:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752468, 'End_Lon': -73.993227, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732922, 'Start_Lon': -74.00642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-18 02:02:00', 'Trip_Pickup_DateTime': '2009-06-18 01:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784507, 'End_Lon': -73.98171, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750385, 'Start_Lon': -73.974682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.5, 'Trip_Dropoff_DateTime': '2009-06-26 19:32:00', 'Trip_Pickup_DateTime': '2009-06-26 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75494, 'End_Lon': -73.979888, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746525, 'Start_Lon': -73.990242, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-25 14:32:00', 'Trip_Pickup_DateTime': '2009-06-25 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759737, 'End_Lon': -73.97798, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793355, 'Start_Lon': -73.97081, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-17 23:12:00', 'Trip_Pickup_DateTime': '2009-06-17 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727938, 'End_Lon': -73.976045, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745078, 'Start_Lon': -73.987745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-17 22:22:00', 'Trip_Pickup_DateTime': '2009-06-17 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738193, 'End_Lon': -74.004762, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721187, 'Start_Lon': -73.997825, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-27 03:34:00', 'Trip_Pickup_DateTime': '2009-06-27 03:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72562, 'End_Lon': -73.84811, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745783, 'Start_Lon': -73.97803, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.95, 'Trip_Distance': 8.24, 'Trip_Dropoff_DateTime': '2009-06-15 20:27:00', 'Trip_Pickup_DateTime': '2009-06-15 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743993, 'End_Lon': -74.006725, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73778, 'Start_Lon': -74.003875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-18 00:37:00', 'Trip_Pickup_DateTime': '2009-06-18 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742482, 'End_Lon': -73.996738, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751647, 'Start_Lon': -73.990827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-17 22:28:00', 'Trip_Pickup_DateTime': '2009-06-17 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.803922, 'End_Lon': -73.966343, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801322, 'Start_Lon': -73.959832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-13 11:36:00', 'Trip_Pickup_DateTime': '2009-06-13 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742102, 'End_Lon': -73.974728, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742102, 'Start_Lon': -73.974732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-15 20:11:00', 'Trip_Pickup_DateTime': '2009-06-15 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76025, 'End_Lon': -73.973763, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786605, 'Start_Lon': -73.979545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-15 20:11:00', 'Trip_Pickup_DateTime': '2009-06-15 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773733, 'End_Lon': -73.977638, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76537, 'Start_Lon': -73.979877, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-26 09:22:00', 'Trip_Pickup_DateTime': '2009-06-26 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718913, 'End_Lon': -73.984497, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73033, 'Start_Lon': -73.980295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-15 20:05:00', 'Trip_Pickup_DateTime': '2009-06-15 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726712, 'End_Lon': -73.987402, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728975, 'Start_Lon': -74.000323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-18 03:32:00', 'Trip_Pickup_DateTime': '2009-06-18 03:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78021, 'End_Lon': -73.984188, 'Fare_Amt': 25.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773737, 'Start_Lon': -73.870888, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.85, 'Trip_Distance': 10.36, 'Trip_Dropoff_DateTime': '2009-06-15 20:15:00', 'Trip_Pickup_DateTime': '2009-06-15 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-18 03:42:00', 'Trip_Pickup_DateTime': '2009-06-18 03:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777768, 'End_Lon': -73.948683, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706082, 'Start_Lon': -74.009418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 7.13, 'Trip_Dropoff_DateTime': '2009-06-15 20:10:00', 'Trip_Pickup_DateTime': '2009-06-15 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746945, 'End_Lon': -73.99036, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761543, 'Start_Lon': -73.979322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-17 21:59:00', 'Trip_Pickup_DateTime': '2009-06-17 21:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718607, 'End_Lon': -73.94336, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73545, 'Start_Lon': -73.993135, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-18 00:13:00', 'Trip_Pickup_DateTime': '2009-06-17 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-17 22:06:00', 'Trip_Pickup_DateTime': '2009-06-17 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77173, 'End_Lon': -73.961365, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779643, 'Start_Lon': -73.97735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-18 14:08:00', 'Trip_Pickup_DateTime': '2009-06-18 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72619, 'End_Lon': -73.977125, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720643, 'Start_Lon': -73.99713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-10 01:39:00', 'Trip_Pickup_DateTime': '2009-06-10 01:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737235, 'End_Lon': -73.979662, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762562, 'Start_Lon': -73.968673, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-17 20:43:00', 'Trip_Pickup_DateTime': '2009-06-17 20:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768743, 'End_Lon': -73.95238, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779392, 'Start_Lon': -73.947385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-25 18:23:00', 'Trip_Pickup_DateTime': '2009-06-25 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745717, 'End_Lon': -73.978027, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745172, 'Start_Lon': -73.978817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.1, 'Trip_Dropoff_DateTime': '2009-06-17 23:35:00', 'Trip_Pickup_DateTime': '2009-06-17 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757497, 'End_Lon': -73.960553, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769147, 'Start_Lon': -73.954858, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 6.45, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-16 10:23:00', 'Trip_Pickup_DateTime': '2009-06-16 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713973, 'End_Lon': -74.010442, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746593, 'Start_Lon': -73.994545, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-08 12:13:00', 'Trip_Pickup_DateTime': '2009-06-08 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77018, 'End_Lon': -73.986105, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777415, 'Start_Lon': -73.947693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-17 17:07:00', 'Trip_Pickup_DateTime': '2009-06-17 16:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772463, 'End_Lon': -73.96269, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759272, 'Start_Lon': -73.988235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-17 16:57:00', 'Trip_Pickup_DateTime': '2009-06-17 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7588, 'End_Lon': -73.985418, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740183, 'Start_Lon': -73.992173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-06 03:29:00', 'Trip_Pickup_DateTime': '2009-06-06 03:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781325, 'End_Lon': -73.954583, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739933, 'Start_Lon': -73.985425, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-17 20:36:00', 'Trip_Pickup_DateTime': '2009-06-17 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751248, 'End_Lon': -73.978673, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747953, 'Start_Lon': -73.989167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-13 11:16:00', 'Trip_Pickup_DateTime': '2009-06-13 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734077, 'End_Lon': -73.99998, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719135, 'Start_Lon': -74.005035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-17 16:58:00', 'Trip_Pickup_DateTime': '2009-06-17 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773508, 'End_Lon': -73.953573, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777977, 'Start_Lon': -73.951823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-17 19:43:00', 'Trip_Pickup_DateTime': '2009-06-17 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745308, 'End_Lon': -74.00258, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727842, 'Start_Lon': -73.993248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-17 21:09:00', 'Trip_Pickup_DateTime': '2009-06-17 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754685, 'End_Lon': -73.984658, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748047, 'Start_Lon': -74.003922, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-13 17:04:00', 'Trip_Pickup_DateTime': '2009-06-13 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77366, 'End_Lon': -73.953915, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773907, 'Start_Lon': -73.954523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-17 15:30:00', 'Trip_Pickup_DateTime': '2009-06-17 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739665, 'End_Lon': -74.006252, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730002, 'Start_Lon': -74.001942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-20 09:10:00', 'Trip_Pickup_DateTime': '2009-06-20 09:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738488, 'End_Lon': -73.991748, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755528, 'Start_Lon': -73.979048, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-17 14:22:00', 'Trip_Pickup_DateTime': '2009-06-17 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780528, 'End_Lon': -73.953743, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753867, 'Start_Lon': -73.972182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-13 03:36:00', 'Trip_Pickup_DateTime': '2009-06-13 03:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764052, 'End_Lon': -73.977368, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743538, 'Start_Lon': -73.992418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-17 18:58:00', 'Trip_Pickup_DateTime': '2009-06-17 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80514, 'End_Lon': -73.962993, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77484, 'Start_Lon': -73.988165, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-17 19:16:00', 'Trip_Pickup_DateTime': '2009-06-17 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72259, 'End_Lon': -73.987863, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732152, 'Start_Lon': -73.988022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-17 17:22:00', 'Trip_Pickup_DateTime': '2009-06-17 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765297, 'End_Lon': -73.98033, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751138, 'Start_Lon': -73.990318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-17 18:44:00', 'Trip_Pickup_DateTime': '2009-06-17 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733548, 'End_Lon': -74.004425, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746405, 'Start_Lon': -74.00146, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-17 17:25:00', 'Trip_Pickup_DateTime': '2009-06-17 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730748, 'End_Lon': -73.989298, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749475, 'Start_Lon': -73.979528, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-16 19:47:00', 'Trip_Pickup_DateTime': '2009-06-16 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774065, 'End_Lon': -73.982902, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789895, 'Start_Lon': -73.966075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-22 19:12:00', 'Trip_Pickup_DateTime': '2009-06-22 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707465, 'End_Lon': -73.939802, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745372, 'Start_Lon': -73.98692, 'Tip_Amt': 5.46, 'Tolls_Amt': 0.0, 'Total_Amt': 23.66, 'Trip_Distance': 5.31, 'Trip_Dropoff_DateTime': '2009-06-18 23:37:00', 'Trip_Pickup_DateTime': '2009-06-18 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.629403, 'End_Lon': -74.077433, 'Fare_Amt': 58.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644812, 'Start_Lon': -73.782088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 59.9, 'Trip_Distance': 27.01, 'Trip_Dropoff_DateTime': '2009-06-16 20:20:00', 'Trip_Pickup_DateTime': '2009-06-16 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727127, 'End_Lon': -73.98877, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75809, 'Start_Lon': -73.977108, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-18 23:06:00', 'Trip_Pickup_DateTime': '2009-06-18 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.846105, 'End_Lon': -73.94249, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7498, 'Start_Lon': -73.991425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.6, 'Trip_Distance': 8.9, 'Trip_Dropoff_DateTime': '2009-06-18 22:49:00', 'Trip_Pickup_DateTime': '2009-06-18 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79515, 'End_Lon': -73.97619, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754953, 'Start_Lon': -73.975707, 'Tip_Amt': 3.02, 'Tolls_Amt': 0.0, 'Total_Amt': 18.12, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-16 19:01:00', 'Trip_Pickup_DateTime': '2009-06-16 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744572, 'End_Lon': -73.979508, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755653, 'Start_Lon': -73.979227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-15 19:56:00', 'Trip_Pickup_DateTime': '2009-06-15 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79217, 'End_Lon': -73.974013, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799748, 'Start_Lon': -73.969953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-16 20:13:00', 'Trip_Pickup_DateTime': '2009-06-16 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763245, 'End_Lon': -73.974078, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75432, 'Start_Lon': -73.972193, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-16 21:35:00', 'Trip_Pickup_DateTime': '2009-06-16 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753275, 'End_Lon': -73.970497, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74114, 'Start_Lon': -73.994308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-16 18:41:00', 'Trip_Pickup_DateTime': '2009-06-16 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777212, 'End_Lon': -73.959322, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720838, 'Start_Lon': -74.00995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.7, 'Trip_Distance': 6.19, 'Trip_Dropoff_DateTime': '2009-06-16 18:29:00', 'Trip_Pickup_DateTime': '2009-06-16 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765397, 'End_Lon': -73.966433, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75556, 'Start_Lon': -73.97767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-17 14:30:00', 'Trip_Pickup_DateTime': '2009-06-17 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76734, 'End_Lon': -73.968388, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774285, 'Start_Lon': -73.963765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-18 21:42:00', 'Trip_Pickup_DateTime': '2009-06-18 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.794863, 'End_Lon': -73.948598, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78011, 'Start_Lon': -73.95718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-27 13:20:00', 'Trip_Pickup_DateTime': '2009-06-27 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789025, 'End_Lon': -73.966942, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78901, 'Start_Lon': -73.975653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-16 17:04:00', 'Trip_Pickup_DateTime': '2009-06-16 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738963, 'End_Lon': -73.985217, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745817, 'Start_Lon': -73.98649, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-16 18:08:00', 'Trip_Pickup_DateTime': '2009-06-16 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.840087, 'End_Lon': -73.971512, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813608, 'Start_Lon': -73.956212, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 19.6, 'Trip_Distance': 5.73, 'Trip_Dropoff_DateTime': '2009-06-18 05:51:00', 'Trip_Pickup_DateTime': '2009-06-18 05:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737702, 'End_Lon': -74.009773, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740627, 'Start_Lon': -73.998345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-16 11:35:00', 'Trip_Pickup_DateTime': '2009-06-16 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769422, 'End_Lon': -73.982345, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.792212, 'Start_Lon': -73.973783, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-17 13:46:00', 'Trip_Pickup_DateTime': '2009-06-17 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75869, 'End_Lon': -73.979145, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763122, 'Start_Lon': -73.97332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-16 15:41:00', 'Trip_Pickup_DateTime': '2009-06-16 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7609, 'End_Lon': -73.997815, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786617, 'Start_Lon': -73.972185, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-18 11:28:00', 'Trip_Pickup_DateTime': '2009-06-18 11:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736957, 'End_Lon': -73.97432, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776642, 'Start_Lon': -73.943685, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-18 19:14:00', 'Trip_Pickup_DateTime': '2009-06-18 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781458, 'End_Lon': -73.94662, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780013, 'Start_Lon': -73.958295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-16 15:17:00', 'Trip_Pickup_DateTime': '2009-06-16 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779738, 'End_Lon': -73.970802, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779738, 'Start_Lon': -73.970802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-18 21:35:00', 'Trip_Pickup_DateTime': '2009-06-18 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78439, 'End_Lon': -73.949857, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787637, 'Start_Lon': -73.971273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-16 08:01:00', 'Trip_Pickup_DateTime': '2009-06-16 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749147, 'End_Lon': -73.979947, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777145, 'Start_Lon': -73.952262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-13 17:59:00', 'Trip_Pickup_DateTime': '2009-06-13 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759712, 'End_Lon': -73.984308, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751183, 'Start_Lon': -73.99416, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-16 17:26:00', 'Trip_Pickup_DateTime': '2009-06-16 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727253, 'End_Lon': -74.007428, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760601, 'Start_Lon': -73.991582, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-30 10:58:21', 'Trip_Pickup_DateTime': '2009-06-30 10:40:04', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.739702, 'End_Lon': -73.997973, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7263, 'Start_Lon': -74.00757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-18 21:32:00', 'Trip_Pickup_DateTime': '2009-06-18 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758257, 'End_Lon': -73.93776, 'Fare_Amt': 38.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758243, 'Start_Lon': -73.937768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 38.9, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-16 11:21:00', 'Trip_Pickup_DateTime': '2009-06-16 09:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778198, 'End_Lon': -73.956345, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765585, 'Start_Lon': -73.975875, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-16 16:13:00', 'Trip_Pickup_DateTime': '2009-06-16 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795762, 'End_Lon': -73.974287, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752132, 'Start_Lon': -73.99318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-16 18:01:00', 'Trip_Pickup_DateTime': '2009-06-16 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738005, 'End_Lon': -73.98369, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744143, 'Start_Lon': -73.999948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-18 20:52:00', 'Trip_Pickup_DateTime': '2009-06-18 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742615, 'End_Lon': -73.986683, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714055, 'Start_Lon': -74.011988, 'Tip_Amt': 3.34, 'Tolls_Amt': 0.0, 'Total_Amt': 20.04, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-16 17:10:00', 'Trip_Pickup_DateTime': '2009-06-16 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.823605, 'End_Lon': -73.92426, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79759, 'Start_Lon': -73.969597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.67, 'Trip_Dropoff_DateTime': '2009-06-26 22:41:00', 'Trip_Pickup_DateTime': '2009-06-26 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720363, 'End_Lon': -73.99785, 'Fare_Amt': 20.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761967, 'Start_Lon': -73.97224, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-28 13:47:00', 'Trip_Pickup_DateTime': '2009-06-28 13:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.622435, 'End_Lon': -73.92049, 'Fare_Amt': 31.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.641488, 'Start_Lon': -73.788632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.7, 'Trip_Distance': 13.66, 'Trip_Dropoff_DateTime': '2009-06-16 16:00:00', 'Trip_Pickup_DateTime': '2009-06-16 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778695, 'End_Lon': -73.94683, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782582, 'Start_Lon': -73.951152, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-16 11:22:00', 'Trip_Pickup_DateTime': '2009-06-16 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787873, 'End_Lon': -73.977487, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778473, 'Start_Lon': -73.985272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-16 17:57:00', 'Trip_Pickup_DateTime': '2009-06-16 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756642, 'End_Lon': -73.986628, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761792, 'Start_Lon': -73.970717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-28 16:55:00', 'Trip_Pickup_DateTime': '2009-06-28 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766283, 'End_Lon': -73.987122, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752643, 'Start_Lon': -73.993088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-18 18:38:00', 'Trip_Pickup_DateTime': '2009-06-18 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744393, 'End_Lon': -73.976137, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751875, 'Start_Lon': -73.977332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-18 11:28:00', 'Trip_Pickup_DateTime': '2009-06-18 11:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767537, 'End_Lon': -73.98269, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755732, 'Start_Lon': -73.988817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-18 11:31:00', 'Trip_Pickup_DateTime': '2009-06-18 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745182, 'End_Lon': -73.998643, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73942, 'Start_Lon': -74.006337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-16 12:42:00', 'Trip_Pickup_DateTime': '2009-06-16 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751205, 'End_Lon': -73.978618, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756782, 'Start_Lon': -73.963542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-16 09:36:00', 'Trip_Pickup_DateTime': '2009-06-16 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740085, 'End_Lon': -73.982258, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731688, 'Start_Lon': -73.99324, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-18 18:02:00', 'Trip_Pickup_DateTime': '2009-06-18 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74552, 'End_Lon': -73.992505, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74552, 'Start_Lon': -73.992505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-16 15:49:00', 'Trip_Pickup_DateTime': '2009-06-16 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742227, 'End_Lon': -73.982748, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760687, 'Start_Lon': -73.96905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-13 13:15:00', 'Trip_Pickup_DateTime': '2009-06-13 13:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749222, 'End_Lon': -73.987757, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757633, 'Start_Lon': -73.97161, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-18 14:37:00', 'Trip_Pickup_DateTime': '2009-06-18 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761327, 'End_Lon': -73.969505, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750885, 'Start_Lon': -73.980512, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-18 14:29:00', 'Trip_Pickup_DateTime': '2009-06-18 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754357, 'End_Lon': -73.994558, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.802885, 'Start_Lon': -73.967713, 'Tip_Amt': 3.14, 'Tolls_Amt': 0.0, 'Total_Amt': 18.84, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-16 10:51:00', 'Trip_Pickup_DateTime': '2009-06-16 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742877, 'End_Lon': -74.000147, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73652, 'Start_Lon': -74.006502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-18 18:24:00', 'Trip_Pickup_DateTime': '2009-06-18 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774065, 'End_Lon': -73.959512, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791555, 'Start_Lon': -73.964747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-16 14:53:00', 'Trip_Pickup_DateTime': '2009-06-16 14:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733098, 'End_Lon': -74.003987, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74465, 'Start_Lon': -73.995208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-16 14:14:00', 'Trip_Pickup_DateTime': '2009-06-16 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753068, 'End_Lon': -73.979938, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77128, 'Start_Lon': -73.98364, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-16 13:44:00', 'Trip_Pickup_DateTime': '2009-06-16 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736305, 'End_Lon': -74.000862, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727965, 'Start_Lon': -73.984925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-16 14:53:00', 'Trip_Pickup_DateTime': '2009-06-16 14:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781277, 'End_Lon': -73.95631, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781277, 'Start_Lon': -73.95631, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-16 08:02:00', 'Trip_Pickup_DateTime': '2009-06-16 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773188, 'End_Lon': -73.981817, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791063, 'Start_Lon': -73.953782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-18 17:12:00', 'Trip_Pickup_DateTime': '2009-06-18 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770087, 'End_Lon': -73.962632, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744748, 'Start_Lon': -73.99147, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-16 11:54:00', 'Trip_Pickup_DateTime': '2009-06-16 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749368, 'End_Lon': -73.970557, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76175, 'Start_Lon': -73.974513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-15 19:52:00', 'Trip_Pickup_DateTime': '2009-06-15 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736707, 'End_Lon': -73.984902, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755705, 'Start_Lon': -73.979762, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-20 14:18:00', 'Trip_Pickup_DateTime': '2009-06-20 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743443, 'End_Lon': -73.989207, 'Fare_Amt': 2.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74406, 'Start_Lon': -73.986908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.12, 'Trip_Dropoff_DateTime': '2009-06-28 04:41:00', 'Trip_Pickup_DateTime': '2009-06-28 04:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764712, 'End_Lon': -73.980485, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774347, 'Start_Lon': -73.977213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-18 17:43:00', 'Trip_Pickup_DateTime': '2009-06-18 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759601, 'End_Lon': -73.986891, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.759229, 'Start_Lon': -73.986302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-29 14:22:52', 'Trip_Pickup_DateTime': '2009-06-29 14:14:17', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.755442, 'End_Lon': -73.971202, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76356, 'Start_Lon': -73.973735, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-16 12:18:00', 'Trip_Pickup_DateTime': '2009-06-16 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751755, 'End_Lon': -73.998708, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779103, 'Start_Lon': -73.962152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-16 12:02:00', 'Trip_Pickup_DateTime': '2009-06-16 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802557, 'End_Lon': -73.9431, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784978, 'Start_Lon': -73.946817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-16 10:57:00', 'Trip_Pickup_DateTime': '2009-06-16 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774398, 'End_Lon': -73.981072, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785212, 'Start_Lon': -73.979143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-16 10:51:00', 'Trip_Pickup_DateTime': '2009-06-16 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711313, 'End_Lon': -74.01002, 'Fare_Amt': 29.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768798, 'Start_Lon': -73.86272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.3, 'Trip_Distance': 12.79, 'Trip_Dropoff_DateTime': '2009-06-16 13:27:00', 'Trip_Pickup_DateTime': '2009-06-16 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688127, 'End_Lon': -73.997505, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719917, 'Start_Lon': -74.00518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-26 20:36:00', 'Trip_Pickup_DateTime': '2009-06-26 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758617, 'End_Lon': -73.984547, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748833, 'Start_Lon': -73.989968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-16 10:36:00', 'Trip_Pickup_DateTime': '2009-06-16 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723182, 'End_Lon': -73.998517, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734898, 'Start_Lon': -73.990915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-18 18:26:00', 'Trip_Pickup_DateTime': '2009-06-18 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765587, 'End_Lon': -73.953687, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757818, 'Start_Lon': -73.976205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-16 13:39:00', 'Trip_Pickup_DateTime': '2009-06-16 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73752, 'End_Lon': -74.008073, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73748, 'Start_Lon': -74.00062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 17:38:00', 'Trip_Pickup_DateTime': '2009-06-18 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752763, 'End_Lon': -73.982247, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788462, 'Start_Lon': -73.977832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-16 11:24:00', 'Trip_Pickup_DateTime': '2009-06-16 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725845, 'End_Lon': -73.997897, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704862, 'Start_Lon': -74.016378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-16 13:14:00', 'Trip_Pickup_DateTime': '2009-06-16 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709132, 'End_Lon': -74.010633, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72549, 'Start_Lon': -74.001087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-18 10:48:00', 'Trip_Pickup_DateTime': '2009-06-18 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759232, 'End_Lon': -73.985608, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762065, 'Start_Lon': -73.983672, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 4.8, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-16 10:41:00', 'Trip_Pickup_DateTime': '2009-06-16 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763098, 'End_Lon': -73.971697, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755903, 'Start_Lon': -73.976937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-16 08:51:00', 'Trip_Pickup_DateTime': '2009-06-16 08:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75282, 'End_Lon': -73.996253, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74105, 'Start_Lon': -73.988332, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-18 14:40:00', 'Trip_Pickup_DateTime': '2009-06-18 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765972, 'End_Lon': -73.954068, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773825, 'Start_Lon': -73.87224, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 24.65, 'Trip_Distance': 8.75, 'Trip_Dropoff_DateTime': '2009-06-18 12:40:00', 'Trip_Pickup_DateTime': '2009-06-18 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74872, 'End_Lon': -73.972895, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744287, 'Start_Lon': -73.974793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-18 10:49:00', 'Trip_Pickup_DateTime': '2009-06-18 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729383, 'End_Lon': -73.993525, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740015, 'Start_Lon': -73.995023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-18 12:34:00', 'Trip_Pickup_DateTime': '2009-06-18 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72084, 'End_Lon': -73.986063, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739582, 'Start_Lon': -73.995258, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-18 14:09:00', 'Trip_Pickup_DateTime': '2009-06-18 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75538, 'End_Lon': -73.97382, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723168, 'Start_Lon': -74.008052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-10 10:35:00', 'Trip_Pickup_DateTime': '2009-06-10 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759542, 'End_Lon': -73.96631, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751767, 'Start_Lon': -73.97631, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-15 19:48:00', 'Trip_Pickup_DateTime': '2009-06-15 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687647, 'End_Lon': -73.900535, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690168, 'Start_Lon': -73.92523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-18 14:37:00', 'Trip_Pickup_DateTime': '2009-06-18 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749518, 'End_Lon': -73.971562, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747962, 'Start_Lon': -73.972048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.25, 'Trip_Dropoff_DateTime': '2009-06-16 10:07:00', 'Trip_Pickup_DateTime': '2009-06-16 10:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732868, 'End_Lon': -74.0021, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770458, 'Start_Lon': -73.987703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-16 10:42:00', 'Trip_Pickup_DateTime': '2009-06-16 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781782, 'End_Lon': -73.9756, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774562, 'Start_Lon': -73.950425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-18 14:50:00', 'Trip_Pickup_DateTime': '2009-06-18 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722325, 'End_Lon': -74.009915, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735053, 'Start_Lon': -74.008542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-18 14:44:00', 'Trip_Pickup_DateTime': '2009-06-18 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765597, 'End_Lon': -73.967903, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78587, 'Start_Lon': -73.950922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-16 09:04:00', 'Trip_Pickup_DateTime': '2009-06-16 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768498, 'End_Lon': -73.955603, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731757, 'Start_Lon': -73.98371, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-28 00:56:00', 'Trip_Pickup_DateTime': '2009-06-28 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764093, 'End_Lon': -73.976803, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760225, 'Start_Lon': -73.96471, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-15 19:40:00', 'Trip_Pickup_DateTime': '2009-06-15 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755167, 'End_Lon': -73.991918, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726815, 'Start_Lon': -73.989002, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-20 10:57:00', 'Trip_Pickup_DateTime': '2009-06-20 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755458, 'End_Lon': -73.985482, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742922, 'Start_Lon': -73.98647, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-18 14:54:00', 'Trip_Pickup_DateTime': '2009-06-18 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774028, 'End_Lon': -73.963758, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755378, 'Start_Lon': -73.974872, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-18 14:02:00', 'Trip_Pickup_DateTime': '2009-06-18 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764128, 'End_Lon': -73.972853, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784487, 'Start_Lon': -73.977232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-18 16:50:00', 'Trip_Pickup_DateTime': '2009-06-18 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756378, 'End_Lon': -74.001257, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74826, 'Start_Lon': -73.98858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-28 09:16:00', 'Trip_Pickup_DateTime': '2009-06-28 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68779, 'End_Lon': -73.981065, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693618, 'Start_Lon': -73.988472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-19 21:17:00', 'Trip_Pickup_DateTime': '2009-06-19 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.81137, 'End_Lon': -73.960222, 'Fare_Amt': 22.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715297, 'Start_Lon': -74.008938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 8.27, 'Trip_Dropoff_DateTime': '2009-06-19 20:53:00', 'Trip_Pickup_DateTime': '2009-06-19 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780382, 'End_Lon': -73.971705, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780382, 'Start_Lon': -73.971705, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-19 18:27:00', 'Trip_Pickup_DateTime': '2009-06-19 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736303, 'End_Lon': -74.008193, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743495, 'Start_Lon': -73.989187, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-28 00:21:00', 'Trip_Pickup_DateTime': '2009-06-28 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735715, 'End_Lon': -73.994803, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749007, 'Start_Lon': -73.981755, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-17 12:11:00', 'Trip_Pickup_DateTime': '2009-06-17 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765003, 'End_Lon': -73.96971, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.767621, 'Start_Lon': -73.980837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-09 14:26:05', 'Trip_Pickup_DateTime': '2009-06-09 14:11:43', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.76182, 'End_Lon': -73.966842, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753603, 'Start_Lon': -73.976903, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-18 15:40:00', 'Trip_Pickup_DateTime': '2009-06-18 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774918, 'End_Lon': -73.984627, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80004, 'Start_Lon': -73.940568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-17 08:50:00', 'Trip_Pickup_DateTime': '2009-06-17 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740428, 'End_Lon': -73.994362, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744442, 'Start_Lon': -73.979505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-19 19:33:00', 'Trip_Pickup_DateTime': '2009-06-19 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723995, 'End_Lon': -74.000654, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.711067, 'Start_Lon': -74.015768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-25 14:36:38', 'Trip_Pickup_DateTime': '2009-06-25 14:23:45', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.745883, 'End_Lon': -73.980087, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751005, 'Start_Lon': -73.980412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-17 10:12:00', 'Trip_Pickup_DateTime': '2009-06-17 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714323, 'End_Lon': -74.001088, 'Fare_Amt': 22.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77434, 'Start_Lon': -73.981278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.9, 'Trip_Distance': 5.71, 'Trip_Dropoff_DateTime': '2009-06-19 14:53:00', 'Trip_Pickup_DateTime': '2009-06-19 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761702, 'End_Lon': -73.982718, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751048, 'Start_Lon': -73.990368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-18 23:19:00', 'Trip_Pickup_DateTime': '2009-06-18 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778747, 'End_Lon': -73.985608, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778577, 'Start_Lon': -73.94533, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-17 12:28:00', 'Trip_Pickup_DateTime': '2009-06-17 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754008, 'End_Lon': -73.973633, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702748, 'Start_Lon': -74.011563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.69, 'Trip_Dropoff_DateTime': '2009-06-17 11:02:00', 'Trip_Pickup_DateTime': '2009-06-17 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774407, 'End_Lon': -73.872785, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75278, 'Start_Lon': -73.981005, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.85, 'Trip_Distance': 8.98, 'Trip_Dropoff_DateTime': '2009-06-19 12:15:00', 'Trip_Pickup_DateTime': '2009-06-19 11:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759692, 'End_Lon': -73.961967, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756825, 'Start_Lon': -73.96914, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-18 15:25:00', 'Trip_Pickup_DateTime': '2009-06-18 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763367, 'End_Lon': -73.973965, 'Fare_Amt': 22.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720908, 'Start_Lon': -74.009952, 'Tip_Amt': 4.58, 'Tolls_Amt': 0.0, 'Total_Amt': 27.48, 'Trip_Distance': 8.39, 'Trip_Dropoff_DateTime': '2009-06-16 12:26:00', 'Trip_Pickup_DateTime': '2009-06-16 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78548, 'End_Lon': -73.955997, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77678, 'Start_Lon': -73.955512, 'Tip_Amt': 0.65, 'Tolls_Amt': 0.0, 'Total_Amt': 4.75, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-17 08:59:00', 'Trip_Pickup_DateTime': '2009-06-17 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728397, 'End_Lon': -73.983535, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739725, 'Start_Lon': -74.002932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-19 14:42:00', 'Trip_Pickup_DateTime': '2009-06-19 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779222, 'End_Lon': -73.951918, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755717, 'Start_Lon': -73.991607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-19 12:03:00', 'Trip_Pickup_DateTime': '2009-06-19 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790197, 'End_Lon': -73.973218, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783277, 'Start_Lon': -73.955067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-17 10:18:00', 'Trip_Pickup_DateTime': '2009-06-17 10:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741103, 'End_Lon': -73.996013, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73285, 'Start_Lon': -73.999882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-27 15:02:00', 'Trip_Pickup_DateTime': '2009-06-27 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751475, 'End_Lon': -73.987375, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766038, 'Start_Lon': -73.963172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-19 14:18:00', 'Trip_Pickup_DateTime': '2009-06-19 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763735, 'End_Lon': -73.976268, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77511, 'Start_Lon': -73.98228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-19 13:11:00', 'Trip_Pickup_DateTime': '2009-06-19 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756468, 'End_Lon': -73.986327, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725237, 'Start_Lon': -74.001387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-19 13:45:00', 'Trip_Pickup_DateTime': '2009-06-19 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775202, 'End_Lon': -73.976823, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789858, 'Start_Lon': -73.977198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-17 07:49:00', 'Trip_Pickup_DateTime': '2009-06-17 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774907, 'End_Lon': -73.960787, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72792, 'Start_Lon': -74.002072, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-19 12:58:00', 'Trip_Pickup_DateTime': '2009-06-19 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776017, 'End_Lon': -73.946693, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778745, 'Start_Lon': -73.95427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-19 13:00:00', 'Trip_Pickup_DateTime': '2009-06-19 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734755, 'End_Lon': -74.002258, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736713, 'Start_Lon': -73.984752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-17 09:25:00', 'Trip_Pickup_DateTime': '2009-06-17 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777223, 'End_Lon': -73.949447, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751295, 'Start_Lon': -73.994117, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-27 21:12:00', 'Trip_Pickup_DateTime': '2009-06-27 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751285, 'End_Lon': -74.00536, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744312, 'Start_Lon': -73.99587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-29 08:14:00', 'Trip_Pickup_DateTime': '2009-06-29 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75194, 'End_Lon': -73.980445, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747338, 'Start_Lon': -74.000728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-19 07:22:00', 'Trip_Pickup_DateTime': '2009-06-19 07:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747388, 'End_Lon': -73.977962, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752195, 'Start_Lon': -73.989717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-17 09:26:00', 'Trip_Pickup_DateTime': '2009-06-17 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725233, 'End_Lon': -73.997093, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738817, 'Start_Lon': -74.008165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-19 10:08:00', 'Trip_Pickup_DateTime': '2009-06-19 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74551, 'End_Lon': -73.98008, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757923, 'Start_Lon': -73.982017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-13 13:14:00', 'Trip_Pickup_DateTime': '2009-06-13 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735837, 'End_Lon': -73.993017, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729583, 'Start_Lon': -73.978195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-19 11:23:00', 'Trip_Pickup_DateTime': '2009-06-19 11:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768272, 'End_Lon': -73.981915, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750568, 'Start_Lon': -73.987578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-16 11:58:00', 'Trip_Pickup_DateTime': '2009-06-16 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723085, 'End_Lon': -73.996918, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71733, 'Start_Lon': -74.000348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-23 10:52:00', 'Trip_Pickup_DateTime': '2009-06-23 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748027, 'End_Lon': -73.975853, 'Fare_Amt': 22.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77301, 'Start_Lon': -73.885272, 'Tip_Amt': 4.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.65, 'Trip_Distance': 8.89, 'Trip_Dropoff_DateTime': '2009-06-19 10:43:00', 'Trip_Pickup_DateTime': '2009-06-19 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.694643, 'End_Lon': -74.04927, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.694643, 'Start_Lon': -74.04927, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-17 07:36:00', 'Trip_Pickup_DateTime': '2009-06-17 07:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760852, 'End_Lon': -73.978793, 'Fare_Amt': 27.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774232, 'Start_Lon': -73.87245, 'Tip_Amt': 5.74, 'Tolls_Amt': 5.0, 'Total_Amt': 39.44, 'Trip_Distance': 10.5, 'Trip_Dropoff_DateTime': '2009-06-08 17:24:00', 'Trip_Pickup_DateTime': '2009-06-08 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757683, 'End_Lon': -73.981003, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765628, 'Start_Lon': -73.957323, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-17 09:32:00', 'Trip_Pickup_DateTime': '2009-06-17 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794845, 'End_Lon': -73.973833, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771243, 'Start_Lon': -73.958255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-28 23:09:00', 'Trip_Pickup_DateTime': '2009-06-28 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7351, 'End_Lon': -73.98587, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75224, 'Start_Lon': -73.977768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-16 19:22:00', 'Trip_Pickup_DateTime': '2009-06-16 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794107, 'End_Lon': -73.966702, 'Fare_Amt': 28.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768797, 'Start_Lon': -73.862855, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 33.05, 'Trip_Distance': 10.16, 'Trip_Dropoff_DateTime': '2009-06-18 15:27:00', 'Trip_Pickup_DateTime': '2009-06-18 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706827, 'End_Lon': -73.95377, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714647, 'Start_Lon': -73.990955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-17 02:49:00', 'Trip_Pickup_DateTime': '2009-06-17 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76092, 'End_Lon': -73.969457, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766263, 'Start_Lon': -73.983183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-19 11:10:00', 'Trip_Pickup_DateTime': '2009-06-19 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761063, 'End_Lon': -73.969488, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741125, 'Start_Lon': -73.981467, 'Tip_Amt': 1.11, 'Tolls_Amt': 0.0, 'Total_Amt': 7.21, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-17 07:49:00', 'Trip_Pickup_DateTime': '2009-06-17 07:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74691, 'End_Lon': -73.985435, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709347, 'Start_Lon': -74.01217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-16 11:52:00', 'Trip_Pickup_DateTime': '2009-06-16 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81272, 'End_Lon': -73.938458, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726515, 'Start_Lon': -74.005638, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.8, 'Trip_Distance': 9.37, 'Trip_Dropoff_DateTime': '2009-06-17 02:56:00', 'Trip_Pickup_DateTime': '2009-06-17 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764443, 'End_Lon': -73.98627, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760542, 'Start_Lon': -73.984693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-28 01:07:00', 'Trip_Pickup_DateTime': '2009-06-28 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79068, 'End_Lon': -73.974277, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768268, 'Start_Lon': -73.982393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-22 13:36:00', 'Trip_Pickup_DateTime': '2009-06-22 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750908, 'End_Lon': -73.990853, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754517, 'Start_Lon': -73.981432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-16 11:58:00', 'Trip_Pickup_DateTime': '2009-06-16 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759432, 'End_Lon': -73.988357, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762757, 'Start_Lon': -73.978065, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-17 00:27:00', 'Trip_Pickup_DateTime': '2009-06-17 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738003, 'End_Lon': -73.990823, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750795, 'Start_Lon': -73.990832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-19 09:19:00', 'Trip_Pickup_DateTime': '2009-06-19 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758958, 'End_Lon': -73.991437, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754132, 'Start_Lon': -73.980138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-17 00:18:00', 'Trip_Pickup_DateTime': '2009-06-17 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785031, 'End_Lon': -73.974731, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77629, 'Start_Lon': -73.960316, 'Tip_Amt': 1.06, 'Tolls_Amt': 0.0, 'Total_Amt': 6.36, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-22 13:36:43', 'Trip_Pickup_DateTime': '2009-06-22 13:32:05', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.780145, 'End_Lon': -73.949037, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740783, 'Start_Lon': -74.004902, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.8, 'Trip_Distance': 5.68, 'Trip_Dropoff_DateTime': '2009-06-18 23:51:00', 'Trip_Pickup_DateTime': '2009-06-18 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752912, 'End_Lon': -73.979027, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757923, 'Start_Lon': -73.96382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-19 07:30:00', 'Trip_Pickup_DateTime': '2009-06-19 07:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742177, 'End_Lon': -74.004598, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739287, 'Start_Lon': -74.008042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-17 02:24:00', 'Trip_Pickup_DateTime': '2009-06-17 01:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752938, 'End_Lon': -73.976075, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755387, 'Start_Lon': -73.978518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-19 08:01:00', 'Trip_Pickup_DateTime': '2009-06-19 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734398, 'End_Lon': -73.989757, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788853, 'Start_Lon': -73.976143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 4.48, 'Trip_Dropoff_DateTime': '2009-06-19 08:02:00', 'Trip_Pickup_DateTime': '2009-06-19 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745148, 'End_Lon': -73.991307, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74722, 'Start_Lon': -74.004582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-16 22:59:00', 'Trip_Pickup_DateTime': '2009-06-16 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.81343, 'End_Lon': -73.961213, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803907, 'Start_Lon': -73.966797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-22 20:25:00', 'Trip_Pickup_DateTime': '2009-06-22 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755787, 'End_Lon': -73.99121, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730143, 'Start_Lon': -73.983502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-19 06:37:00', 'Trip_Pickup_DateTime': '2009-06-19 06:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763433, 'End_Lon': -73.96748, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770823, 'Start_Lon': -73.961807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-22 15:20:00', 'Trip_Pickup_DateTime': '2009-06-22 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758157, 'End_Lon': -73.974588, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752005, 'Start_Lon': -73.976778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-16 21:52:00', 'Trip_Pickup_DateTime': '2009-06-16 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741042, 'End_Lon': -73.975647, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730337, 'Start_Lon': -74.001827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-17 00:02:00', 'Trip_Pickup_DateTime': '2009-06-16 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763627, 'End_Lon': -73.977792, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748558, 'Start_Lon': -73.970832, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-19 07:50:00', 'Trip_Pickup_DateTime': '2009-06-19 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780508, 'End_Lon': -73.946607, 'Fare_Amt': 6.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750815, 'Start_Lon': -73.968465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-22 20:46:00', 'Trip_Pickup_DateTime': '2009-06-22 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758848, 'End_Lon': -73.986015, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742222, 'Start_Lon': -74.004423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-17 00:40:00', 'Trip_Pickup_DateTime': '2009-06-17 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750487, 'End_Lon': -73.994643, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73498, 'Start_Lon': -74.002627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-29 00:05:00', 'Trip_Pickup_DateTime': '2009-06-28 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71046, 'End_Lon': -73.955248, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71827, 'Start_Lon': -74.000357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-29 01:52:00', 'Trip_Pickup_DateTime': '2009-06-29 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729418, 'End_Lon': -74.001102, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761358, 'Start_Lon': -73.990573, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-16 21:57:00', 'Trip_Pickup_DateTime': '2009-06-16 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798767, 'End_Lon': -73.935938, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775702, 'Start_Lon': -73.950385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-18 22:53:00', 'Trip_Pickup_DateTime': '2009-06-18 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750447, 'End_Lon': -73.991012, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76144, 'Start_Lon': -73.990447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-16 23:22:00', 'Trip_Pickup_DateTime': '2009-06-16 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751297, 'End_Lon': -73.990497, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759142, 'Start_Lon': -73.965313, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-19 07:46:00', 'Trip_Pickup_DateTime': '2009-06-19 07:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76635, 'End_Lon': -73.927798, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74404, 'Start_Lon': -74.006617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 6.38, 'Trip_Dropoff_DateTime': '2009-06-19 02:26:00', 'Trip_Pickup_DateTime': '2009-06-19 02:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749972, 'End_Lon': -73.980202, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7649, 'Start_Lon': -73.971593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 15:12:00', 'Trip_Pickup_DateTime': '2009-06-18 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728982, 'End_Lon': -73.984772, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761393, 'Start_Lon': -73.984, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-27 19:10:00', 'Trip_Pickup_DateTime': '2009-06-27 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747721, 'End_Lon': -73.996903, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.736251, 'Start_Lon': -74.001372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-16 17:42:46', 'Trip_Pickup_DateTime': '2009-06-16 17:35:31', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.769115, 'End_Lon': -73.954927, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719118, 'Start_Lon': -73.997347, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.4, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-16 23:01:00', 'Trip_Pickup_DateTime': '2009-06-16 22:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750278, 'End_Lon': -73.991463, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754105, 'Start_Lon': -73.969335, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-16 22:45:00', 'Trip_Pickup_DateTime': '2009-06-16 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777537, 'End_Lon': -73.986397, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745638, 'Start_Lon': -73.978297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-16 20:34:00', 'Trip_Pickup_DateTime': '2009-06-16 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.576823, 'End_Lon': -73.954372, 'Fare_Amt': 30.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706643, 'Start_Lon': -74.004772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.4, 'Trip_Distance': 12.06, 'Trip_Dropoff_DateTime': '2009-06-16 21:29:00', 'Trip_Pickup_DateTime': '2009-06-16 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77965, 'End_Lon': -73.958082, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775505, 'Start_Lon': -73.960535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-16 22:58:00', 'Trip_Pickup_DateTime': '2009-06-16 22:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79185, 'End_Lon': -73.967428, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.792473, 'Start_Lon': -73.966122, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-16 23:56:00', 'Trip_Pickup_DateTime': '2009-06-16 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70928, 'End_Lon': -74.010113, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767988, 'Start_Lon': -73.98918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.23, 'Trip_Dropoff_DateTime': '2009-06-23 07:16:00', 'Trip_Pickup_DateTime': '2009-06-23 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761257, 'End_Lon': -73.984205, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.77184, 'Start_Lon': -73.967506, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-22 18:06:55', 'Trip_Pickup_DateTime': '2009-06-22 17:51:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.775887, 'End_Lon': -73.945035, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759412, 'Start_Lon': -73.986618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-19 00:41:00', 'Trip_Pickup_DateTime': '2009-06-19 00:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.646302, 'End_Lon': -73.96927, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74744, 'Start_Lon': -73.97666, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 9.86, 'Trip_Dropoff_DateTime': '2009-06-19 00:57:00', 'Trip_Pickup_DateTime': '2009-06-19 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756638, 'End_Lon': -73.978488, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756547, 'Start_Lon': -73.961185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-16 19:49:00', 'Trip_Pickup_DateTime': '2009-06-16 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772923, 'End_Lon': -73.952345, 'Fare_Amt': 12.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726165, 'Start_Lon': -73.994542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-16 20:32:00', 'Trip_Pickup_DateTime': '2009-06-16 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749863, 'End_Lon': -73.979883, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75671, 'Start_Lon': -73.990217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-16 20:14:00', 'Trip_Pickup_DateTime': '2009-06-16 20:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.841617, 'End_Lon': -73.942747, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758143, 'Start_Lon': -73.981713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.7, 'Trip_Distance': 7.59, 'Trip_Dropoff_DateTime': '2009-06-16 20:00:00', 'Trip_Pickup_DateTime': '2009-06-16 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794543, 'End_Lon': -73.969308, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793073, 'Start_Lon': -73.952082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-16 18:47:00', 'Trip_Pickup_DateTime': '2009-06-16 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770572, 'End_Lon': -73.991707, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752063, 'Start_Lon': -73.993628, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-28 19:03:00', 'Trip_Pickup_DateTime': '2009-06-28 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737927, 'End_Lon': -73.990342, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737927, 'Start_Lon': -73.990342, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 5.25, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-13 17:31:00', 'Trip_Pickup_DateTime': '2009-06-13 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771557, 'End_Lon': -73.982557, 'Fare_Amt': 9.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74582, 'Start_Lon': -73.977983, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-16 19:59:00', 'Trip_Pickup_DateTime': '2009-06-16 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771773, 'End_Lon': -73.885943, 'Fare_Amt': 31.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705243, 'Start_Lon': -74.00683, 'Tip_Amt': 6.54, 'Tolls_Amt': 5.0, 'Total_Amt': 44.24, 'Trip_Distance': 13.96, 'Trip_Dropoff_DateTime': '2009-06-22 16:33:00', 'Trip_Pickup_DateTime': '2009-06-22 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728048, 'End_Lon': -73.988032, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745573, 'Start_Lon': -73.975318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-21 23:22:00', 'Trip_Pickup_DateTime': '2009-06-21 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751803, 'End_Lon': -73.992502, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765585, 'Start_Lon': -73.954775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-17 09:21:00', 'Trip_Pickup_DateTime': '2009-06-17 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763665, 'End_Lon': -73.939408, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768927, 'Start_Lon': -73.988558, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-22 03:52:00', 'Trip_Pickup_DateTime': '2009-06-22 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775008, 'End_Lon': -73.909098, 'Fare_Amt': 2.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77505, 'Start_Lon': -73.909172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-26 03:30:00', 'Trip_Pickup_DateTime': '2009-06-26 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767042, 'End_Lon': -73.961093, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760213, 'Start_Lon': -73.966955, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-21 15:52:00', 'Trip_Pickup_DateTime': '2009-06-21 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745362, 'End_Lon': -73.924963, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72659, 'Start_Lon': -73.994673, 'Tip_Amt': 4.12, 'Tolls_Amt': 0.0, 'Total_Amt': 24.72, 'Trip_Distance': 5.97, 'Trip_Dropoff_DateTime': '2009-06-21 23:33:00', 'Trip_Pickup_DateTime': '2009-06-21 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77699, 'End_Lon': -73.90757, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75397, 'Start_Lon': -73.942342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-21 22:55:00', 'Trip_Pickup_DateTime': '2009-06-21 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705867, 'End_Lon': -74.007362, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723542, 'Start_Lon': -73.985327, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-22 23:19:00', 'Trip_Pickup_DateTime': '2009-06-22 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.850723, 'End_Lon': -73.938392, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781013, 'Start_Lon': -73.981368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-21 19:24:00', 'Trip_Pickup_DateTime': '2009-06-21 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750358, 'End_Lon': -73.991152, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707803, 'Start_Lon': -74.008357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-22 06:45:00', 'Trip_Pickup_DateTime': '2009-06-22 06:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706065, 'End_Lon': -74.006212, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70832, 'Start_Lon': -74.013735, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-28 21:34:00', 'Trip_Pickup_DateTime': '2009-06-28 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731762, 'End_Lon': -73.957947, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714392, 'Start_Lon': -73.96122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-22 23:38:00', 'Trip_Pickup_DateTime': '2009-06-22 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.584617, 'End_Lon': -73.964097, 'Fare_Amt': 34.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.657042, 'Start_Lon': -73.794193, 'Tip_Amt': 8.73, 'Tolls_Amt': 0.0, 'Total_Amt': 43.63, 'Trip_Distance': 15.47, 'Trip_Dropoff_DateTime': '2009-06-21 17:20:00', 'Trip_Pickup_DateTime': '2009-06-21 16:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724722, 'End_Lon': -74.002198, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737197, 'Start_Lon': -73.996963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-21 17:18:00', 'Trip_Pickup_DateTime': '2009-06-21 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750567, 'End_Lon': -73.97633, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756785, 'Start_Lon': -73.971425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-23 02:45:00', 'Trip_Pickup_DateTime': '2009-06-23 02:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733997, 'End_Lon': -73.990573, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73428, 'Start_Lon': -73.983395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-21 18:32:00', 'Trip_Pickup_DateTime': '2009-06-21 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759375, 'End_Lon': -73.988132, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75653, 'Start_Lon': -73.967198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-21 21:37:00', 'Trip_Pickup_DateTime': '2009-06-21 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76638, 'End_Lon': -73.977698, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760602, 'Start_Lon': -73.973375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-22 17:54:00', 'Trip_Pickup_DateTime': '2009-06-22 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76479, 'End_Lon': -73.981562, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645707, 'Start_Lon': -73.780273, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 22.22, 'Trip_Dropoff_DateTime': '2009-06-21 18:09:00', 'Trip_Pickup_DateTime': '2009-06-21 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774945, 'End_Lon': -73.956748, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773275, 'Start_Lon': -73.981927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-24 21:19:00', 'Trip_Pickup_DateTime': '2009-06-24 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77333, 'End_Lon': -73.983085, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770495, 'Start_Lon': -73.991137, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-21 19:39:00', 'Trip_Pickup_DateTime': '2009-06-21 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762378, 'End_Lon': -73.974415, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785865, 'Start_Lon': -73.957035, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-22 06:48:00', 'Trip_Pickup_DateTime': '2009-06-22 06:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763688, 'End_Lon': -73.965203, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772605, 'Start_Lon': -73.967023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-21 20:33:00', 'Trip_Pickup_DateTime': '2009-06-21 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755147, 'End_Lon': -73.990695, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72926, 'Start_Lon': -73.99593, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-21 20:08:00', 'Trip_Pickup_DateTime': '2009-06-21 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765025, 'End_Lon': -73.984867, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788928, 'Start_Lon': -73.976143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-21 19:54:00', 'Trip_Pickup_DateTime': '2009-06-21 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797635, 'End_Lon': -73.93729, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806315, 'Start_Lon': -73.942185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-21 22:32:00', 'Trip_Pickup_DateTime': '2009-06-21 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756082, 'End_Lon': -73.979138, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781222, 'Start_Lon': -73.976053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-17 10:11:00', 'Trip_Pickup_DateTime': '2009-06-17 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742443, 'End_Lon': -74.004318, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732247, 'Start_Lon': -73.98193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-20 00:27:00', 'Trip_Pickup_DateTime': '2009-06-20 00:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720283, 'End_Lon': -74.005982, 'Fare_Amt': 20.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777777, 'Start_Lon': -73.961235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 5.57, 'Trip_Dropoff_DateTime': '2009-06-23 12:52:00', 'Trip_Pickup_DateTime': '2009-06-23 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727335, 'End_Lon': -73.993532, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750127, 'Start_Lon': -73.994813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-21 01:02:00', 'Trip_Pickup_DateTime': '2009-06-21 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776865, 'End_Lon': -73.975558, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775363, 'Start_Lon': -73.98763, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-24 17:03:00', 'Trip_Pickup_DateTime': '2009-06-24 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779128, 'End_Lon': -73.976742, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759655, 'Start_Lon': -73.968437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-21 00:17:00', 'Trip_Pickup_DateTime': '2009-06-21 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761778, 'End_Lon': -73.971647, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739428, 'Start_Lon': -73.987047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-20 19:34:00', 'Trip_Pickup_DateTime': '2009-06-20 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77888, 'End_Lon': -73.962455, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756122, 'Start_Lon': -73.99061, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-20 20:04:00', 'Trip_Pickup_DateTime': '2009-06-20 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778958, 'End_Lon': -73.95028, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801055, 'Start_Lon': -73.965323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-20 19:39:00', 'Trip_Pickup_DateTime': '2009-06-20 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74453, 'End_Lon': -73.999127, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745337, 'Start_Lon': -73.975493, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-20 20:23:00', 'Trip_Pickup_DateTime': '2009-06-20 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750207, 'End_Lon': -73.991323, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724967, 'Start_Lon': -73.995547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-20 21:03:00', 'Trip_Pickup_DateTime': '2009-06-20 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725597, 'End_Lon': -73.990013, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734513, 'Start_Lon': -73.98043, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-21 01:06:00', 'Trip_Pickup_DateTime': '2009-06-21 00:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762393, 'End_Lon': -73.982725, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747053, 'Start_Lon': -73.975817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-19 23:41:00', 'Trip_Pickup_DateTime': '2009-06-19 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.817522, 'End_Lon': -73.964335, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.814248, 'Start_Lon': -73.968353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-20 20:16:00', 'Trip_Pickup_DateTime': '2009-06-20 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780442, 'End_Lon': -73.952948, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769055, 'Start_Lon': -73.988542, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-20 20:56:00', 'Trip_Pickup_DateTime': '2009-06-20 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747133, 'End_Lon': -73.994887, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732835, 'Start_Lon': -74.000162, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-20 21:56:00', 'Trip_Pickup_DateTime': '2009-06-20 21:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73101, 'End_Lon': -73.982927, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750047, 'Start_Lon': -73.984875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-24 00:50:00', 'Trip_Pickup_DateTime': '2009-06-24 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75763, 'End_Lon': -73.889103, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76971, 'Start_Lon': -73.892172, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-20 19:28:00', 'Trip_Pickup_DateTime': '2009-06-20 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759793, 'End_Lon': -73.974108, 'Fare_Amt': 30.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769997, 'Start_Lon': -73.863632, 'Tip_Amt': 6.18, 'Tolls_Amt': 4.15, 'Total_Amt': 41.23, 'Trip_Distance': 12.39, 'Trip_Dropoff_DateTime': '2009-06-17 08:56:00', 'Trip_Pickup_DateTime': '2009-06-17 08:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776602, 'End_Lon': -73.955755, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764365, 'Start_Lon': -73.977538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-20 21:53:00', 'Trip_Pickup_DateTime': '2009-06-20 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743742, 'End_Lon': -73.975578, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733512, 'Start_Lon': -73.989872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-20 16:17:00', 'Trip_Pickup_DateTime': '2009-06-20 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.679785, 'End_Lon': -73.978918, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.684317, 'Start_Lon': -73.99143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-19 23:17:00', 'Trip_Pickup_DateTime': '2009-06-19 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776085, 'End_Lon': -73.982875, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739717, 'Start_Lon': -73.995112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-20 19:15:00', 'Trip_Pickup_DateTime': '2009-06-20 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788233, 'End_Lon': -73.956245, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759603, 'Start_Lon': -73.995398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-24 08:40:00', 'Trip_Pickup_DateTime': '2009-06-24 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771395, 'End_Lon': -73.959397, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761425, 'Start_Lon': -73.966428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-20 16:35:00', 'Trip_Pickup_DateTime': '2009-06-20 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791502, 'End_Lon': -73.944433, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790828, 'Start_Lon': -73.95383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-20 19:07:00', 'Trip_Pickup_DateTime': '2009-06-20 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76931, 'End_Lon': -73.984597, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64526, 'Start_Lon': -73.777405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.04, 'Trip_Dropoff_DateTime': '2009-06-24 16:15:00', 'Trip_Pickup_DateTime': '2009-06-24 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780188, 'End_Lon': -73.954998, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765987, 'Start_Lon': -73.979108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-20 16:03:00', 'Trip_Pickup_DateTime': '2009-06-20 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758397, 'End_Lon': -74.00032, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752182, 'Start_Lon': -73.976367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-28 11:58:00', 'Trip_Pickup_DateTime': '2009-06-28 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779207, 'End_Lon': -73.951432, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7477, 'Start_Lon': -74.000412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-19 23:30:00', 'Trip_Pickup_DateTime': '2009-06-19 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743877, 'End_Lon': -73.989553, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724627, 'Start_Lon': -74.00229, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-19 11:55:00', 'Trip_Pickup_DateTime': '2009-06-19 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754763, 'End_Lon': -73.96826, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760255, 'Start_Lon': -73.987552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-20 17:31:00', 'Trip_Pickup_DateTime': '2009-06-20 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74965, 'End_Lon': -73.991943, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752352, 'Start_Lon': -73.976398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-29 08:17:00', 'Trip_Pickup_DateTime': '2009-06-29 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.647262, 'End_Lon': -73.781907, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646762, 'Start_Lon': -73.778095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-20 20:31:00', 'Trip_Pickup_DateTime': '2009-06-20 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761192, 'End_Lon': -73.969693, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760585, 'Start_Lon': -73.99475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-24 08:07:00', 'Trip_Pickup_DateTime': '2009-06-24 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.689868, 'End_Lon': -73.96446, 'Fare_Amt': 30.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755822, 'Start_Lon': -73.990927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.5, 'Trip_Distance': 10.26, 'Trip_Dropoff_DateTime': '2009-06-20 16:50:00', 'Trip_Pickup_DateTime': '2009-06-20 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76498, 'End_Lon': -73.9544, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765462, 'Start_Lon': -73.966057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-20 17:08:00', 'Trip_Pickup_DateTime': '2009-06-20 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734618, 'End_Lon': -73.999838, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72612, 'Start_Lon': -73.991833, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-20 18:25:00', 'Trip_Pickup_DateTime': '2009-06-20 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725843, 'End_Lon': -73.994465, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744942, 'Start_Lon': -73.997828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-19 22:54:00', 'Trip_Pickup_DateTime': '2009-06-19 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79411, 'End_Lon': -73.97041, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752735, 'Start_Lon': -73.985792, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-19 19:55:00', 'Trip_Pickup_DateTime': '2009-06-19 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739722, 'End_Lon': -73.979485, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746018, 'Start_Lon': -73.994157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-19 19:32:00', 'Trip_Pickup_DateTime': '2009-06-19 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768423, 'End_Lon': -73.981877, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74848, 'Start_Lon': -73.971083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-20 17:21:00', 'Trip_Pickup_DateTime': '2009-06-20 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.696175, 'End_Lon': -73.986778, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726108, 'Start_Lon': -73.983482, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-20 02:13:00', 'Trip_Pickup_DateTime': '2009-06-20 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726425, 'End_Lon': -74.005705, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726705, 'Start_Lon': -73.989157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-23 01:13:00', 'Trip_Pickup_DateTime': '2009-06-23 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711707, 'End_Lon': -73.943693, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705558, 'Start_Lon': -74.007548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-23 22:49:00', 'Trip_Pickup_DateTime': '2009-06-23 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763573, 'End_Lon': -73.988853, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776352, 'Start_Lon': -73.95284, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-19 22:45:00', 'Trip_Pickup_DateTime': '2009-06-19 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735023, 'End_Lon': -74.006157, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726128, 'Start_Lon': -73.986443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-19 23:15:00', 'Trip_Pickup_DateTime': '2009-06-19 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773165, 'End_Lon': -73.94466, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733917, 'Start_Lon': -74.001843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.2, 'Trip_Distance': 5.73, 'Trip_Dropoff_DateTime': '2009-06-19 22:25:00', 'Trip_Pickup_DateTime': '2009-06-19 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76983, 'End_Lon': -73.960977, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763467, 'Start_Lon': -73.959273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-19 20:34:00', 'Trip_Pickup_DateTime': '2009-06-19 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775457, 'End_Lon': -73.962298, 'Fare_Amt': 23.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77393, 'Start_Lon': -73.871898, 'Tip_Amt': 4.74, 'Tolls_Amt': 4.15, 'Total_Amt': 32.59, 'Trip_Distance': 8.82, 'Trip_Dropoff_DateTime': '2009-06-20 14:20:00', 'Trip_Pickup_DateTime': '2009-06-20 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719948, 'End_Lon': -73.98754, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780593, 'Start_Lon': -73.949558, 'Tip_Amt': 3.24, 'Tolls_Amt': 0.0, 'Total_Amt': 19.44, 'Trip_Distance': 6.03, 'Trip_Dropoff_DateTime': '2009-06-19 22:40:00', 'Trip_Pickup_DateTime': '2009-06-19 22:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749798, 'End_Lon': -73.991555, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756388, 'Start_Lon': -73.986438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-19 20:33:00', 'Trip_Pickup_DateTime': '2009-06-19 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772065, 'End_Lon': -73.955998, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77368, 'Start_Lon': -73.870877, 'Tip_Amt': 4.04, 'Tolls_Amt': 4.15, 'Total_Amt': 28.39, 'Trip_Distance': 8.5, 'Trip_Dropoff_DateTime': '2009-06-19 21:18:00', 'Trip_Pickup_DateTime': '2009-06-19 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751217, 'End_Lon': -73.980703, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76373, 'Start_Lon': -73.989217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-19 22:39:00', 'Trip_Pickup_DateTime': '2009-06-19 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748295, 'End_Lon': -73.983732, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721798, 'Start_Lon': -73.993333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-20 01:27:00', 'Trip_Pickup_DateTime': '2009-06-20 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742923, 'End_Lon': -74.003688, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72558, 'Start_Lon': -73.98384, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-19 23:11:00', 'Trip_Pickup_DateTime': '2009-06-19 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.670438, 'End_Lon': -73.958073, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737345, 'Start_Lon': -73.988178, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.6, 'Trip_Distance': 5.81, 'Trip_Dropoff_DateTime': '2009-06-19 22:46:00', 'Trip_Pickup_DateTime': '2009-06-19 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761138, 'End_Lon': -73.970023, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770325, 'Start_Lon': -73.957215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-19 22:45:00', 'Trip_Pickup_DateTime': '2009-06-19 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782847, 'End_Lon': -73.950147, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775808, 'Start_Lon': -73.955858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-20 01:35:00', 'Trip_Pickup_DateTime': '2009-06-20 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731517, 'End_Lon': -73.994588, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72178, 'Start_Lon': -74.002137, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-22 23:07:00', 'Trip_Pickup_DateTime': '2009-06-22 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718833, 'End_Lon': -74.004268, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750422, 'Start_Lon': -73.971668, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.12, 'Trip_Dropoff_DateTime': '2009-06-19 23:33:00', 'Trip_Pickup_DateTime': '2009-06-19 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758187, 'End_Lon': -73.992732, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.791448, 'Start_Lon': -73.97378, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-19 18:52:00', 'Trip_Pickup_DateTime': '2009-06-19 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790745, 'End_Lon': -73.968975, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754412, 'Start_Lon': -73.992108, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-20 01:14:00', 'Trip_Pickup_DateTime': '2009-06-20 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73369, 'End_Lon': -74.001592, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643397, 'Start_Lon': -73.789728, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.83, 'Trip_Dropoff_DateTime': '2009-06-19 18:25:00', 'Trip_Pickup_DateTime': '2009-06-19 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735532, 'End_Lon': -73.992533, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709467, 'Start_Lon': -74.014858, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-23 16:39:00', 'Trip_Pickup_DateTime': '2009-06-23 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747947, 'End_Lon': -73.992993, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756722, 'Start_Lon': -73.982835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-19 20:52:00', 'Trip_Pickup_DateTime': '2009-06-19 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7559, 'End_Lon': -73.982403, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.648635, 'Start_Lon': -73.783805, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 55.0, 'Trip_Distance': 22.32, 'Trip_Dropoff_DateTime': '2009-06-19 20:12:00', 'Trip_Pickup_DateTime': '2009-06-19 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715687, 'End_Lon': -74.00349, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.694152, 'Start_Lon': -73.99249, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-19 20:05:00', 'Trip_Pickup_DateTime': '2009-06-19 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746237, 'End_Lon': -73.98332, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755815, 'Start_Lon': -73.984105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-19 21:42:00', 'Trip_Pickup_DateTime': '2009-06-19 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736115, 'End_Lon': -73.995757, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740578, 'Start_Lon': -73.983888, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-19 21:38:00', 'Trip_Pickup_DateTime': '2009-06-19 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725663, 'End_Lon': -73.983847, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773207, 'Start_Lon': -73.95243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.35, 'Trip_Dropoff_DateTime': '2009-06-19 20:59:00', 'Trip_Pickup_DateTime': '2009-06-19 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756395, 'End_Lon': -73.989652, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740372, 'Start_Lon': -73.994492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-16 20:01:00', 'Trip_Pickup_DateTime': '2009-06-16 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744708, 'End_Lon': -73.976687, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737552, 'Start_Lon': -73.992053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-18 15:52:00', 'Trip_Pickup_DateTime': '2009-06-18 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75911, 'End_Lon': -73.98494, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763987, 'Start_Lon': -73.976952, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-02 14:54:00', 'Trip_Pickup_DateTime': '2009-06-02 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-21 16:34:00', 'Trip_Pickup_DateTime': '2009-06-21 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753408, 'End_Lon': -73.965648, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756468, 'Start_Lon': -73.970445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-21 15:55:00', 'Trip_Pickup_DateTime': '2009-06-21 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76582, 'End_Lon': -73.983287, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722793, 'Start_Lon': -73.987898, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.8, 'Trip_Distance': 4.71, 'Trip_Dropoff_DateTime': '2009-06-14 01:03:00', 'Trip_Pickup_DateTime': '2009-06-14 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746972, 'End_Lon': -73.985732, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757325, 'Start_Lon': -73.971965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-15 10:08:00', 'Trip_Pickup_DateTime': '2009-06-15 09:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725827, 'End_Lon': -74.00096, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728822, 'Start_Lon': -73.97884, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-13 20:07:00', 'Trip_Pickup_DateTime': '2009-06-13 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756625, 'End_Lon': -73.988822, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772347, 'Start_Lon': -73.967098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-11 15:01:00', 'Trip_Pickup_DateTime': '2009-06-11 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757785, 'End_Lon': -73.97748, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771157, 'Start_Lon': -73.967995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-15 10:19:00', 'Trip_Pickup_DateTime': '2009-06-15 10:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779937, 'End_Lon': -73.984625, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754935, 'Start_Lon': -73.977253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-19 15:10:00', 'Trip_Pickup_DateTime': '2009-06-19 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739502, 'End_Lon': -74.008102, 'Fare_Amt': 19.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774513, 'Start_Lon': -73.963823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.3, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-25 19:24:00', 'Trip_Pickup_DateTime': '2009-06-25 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.680673, 'End_Lon': -73.991727, 'Fare_Amt': 18.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721548, 'Start_Lon': -74.004495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 6.25, 'Trip_Dropoff_DateTime': '2009-06-10 22:20:00', 'Trip_Pickup_DateTime': '2009-06-10 21:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754497, 'End_Lon': -73.975342, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779478, 'Start_Lon': -73.955725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-25 21:51:00', 'Trip_Pickup_DateTime': '2009-06-25 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74134, 'End_Lon': -73.98551, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752172, 'Start_Lon': -73.975795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-25 06:51:00', 'Trip_Pickup_DateTime': '2009-06-25 06:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748298, 'End_Lon': -74.007392, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731388, 'Start_Lon': -73.999485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-26 00:58:00', 'Trip_Pickup_DateTime': '2009-06-26 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753305, 'End_Lon': -73.966298, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757925, 'Start_Lon': -73.975332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-11 10:58:00', 'Trip_Pickup_DateTime': '2009-06-11 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739875, 'End_Lon': -73.982002, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744285, 'Start_Lon': -73.999195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-24 00:37:00', 'Trip_Pickup_DateTime': '2009-06-24 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723612, 'End_Lon': -73.996212, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75272, 'Start_Lon': -73.972967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-13 20:56:00', 'Trip_Pickup_DateTime': '2009-06-13 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731787, 'End_Lon': -74.008092, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752937, 'Start_Lon': -73.996555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-17 13:07:00', 'Trip_Pickup_DateTime': '2009-06-17 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714532, 'End_Lon': -74.01512, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757615, 'Start_Lon': -73.966628, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.8, 'Trip_Distance': 6.87, 'Trip_Dropoff_DateTime': '2009-06-21 21:35:00', 'Trip_Pickup_DateTime': '2009-06-21 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769162, 'End_Lon': -73.98259, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769123, 'Start_Lon': -73.969545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-11 07:12:00', 'Trip_Pickup_DateTime': '2009-06-11 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755867, 'End_Lon': -73.974463, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.643573, 'Start_Lon': -73.790232, 'Tip_Amt': 5.0, 'Tolls_Amt': 5.0, 'Total_Amt': 55.0, 'Trip_Distance': 18.18, 'Trip_Dropoff_DateTime': '2009-06-23 20:51:00', 'Trip_Pickup_DateTime': '2009-06-23 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762665, 'End_Lon': -73.965422, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770987, 'Start_Lon': -73.959442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-15 07:07:00', 'Trip_Pickup_DateTime': '2009-06-15 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77624, 'End_Lon': -73.960205, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757322, 'Start_Lon': -73.969717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-14 09:46:00', 'Trip_Pickup_DateTime': '2009-06-14 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778978, 'End_Lon': -73.989183, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757828, 'Start_Lon': -73.988683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-13 21:45:00', 'Trip_Pickup_DateTime': '2009-06-13 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765005, 'End_Lon': -73.987817, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756038, 'Start_Lon': -73.967602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-21 17:17:00', 'Trip_Pickup_DateTime': '2009-06-21 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757775, 'End_Lon': -73.966303, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780688, 'Start_Lon': -73.94969, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-15 07:35:00', 'Trip_Pickup_DateTime': '2009-06-15 07:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.6972, 'End_Lon': -73.989093, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.676832, 'Start_Lon': -73.983368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-13 21:00:00', 'Trip_Pickup_DateTime': '2009-06-13 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771518, 'End_Lon': -73.98218, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76564, 'Start_Lon': -73.97628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-13 19:54:00', 'Trip_Pickup_DateTime': '2009-06-13 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724092, 'End_Lon': -73.991915, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725857, 'Start_Lon': -73.983945, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-11 01:25:00', 'Trip_Pickup_DateTime': '2009-06-11 01:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754562, 'End_Lon': -73.973525, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758627, 'Start_Lon': -73.96343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-24 08:27:00', 'Trip_Pickup_DateTime': '2009-06-24 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760052, 'End_Lon': -73.98423, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761203, 'Start_Lon': -73.983052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-11 11:52:00', 'Trip_Pickup_DateTime': '2009-06-11 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763073, 'End_Lon': -73.980422, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780105, 'Start_Lon': -73.98161, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-24 07:18:00', 'Trip_Pickup_DateTime': '2009-06-24 07:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748843, 'End_Lon': -73.988322, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720632, 'Start_Lon': -74.005222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-13 19:02:00', 'Trip_Pickup_DateTime': '2009-06-13 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719257, 'End_Lon': -73.999057, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725975, 'Start_Lon': -73.986592, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-11 11:55:00', 'Trip_Pickup_DateTime': '2009-06-11 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764657, 'End_Lon': -73.986093, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744772, 'Start_Lon': -73.987198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-24 01:40:00', 'Trip_Pickup_DateTime': '2009-06-24 01:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75509, 'End_Lon': -73.987113, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749198, 'Start_Lon': -73.982077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-24 07:16:00', 'Trip_Pickup_DateTime': '2009-06-24 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759075, 'End_Lon': -73.985983, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773607, 'Start_Lon': -73.870902, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 32.65, 'Trip_Distance': 9.33, 'Trip_Dropoff_DateTime': '2009-06-11 12:37:00', 'Trip_Pickup_DateTime': '2009-06-11 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.885255, 'End_Lon': -73.907568, 'Fare_Amt': 55.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647287, 'Start_Lon': -73.788443, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 59.45, 'Trip_Distance': 23.04, 'Trip_Dropoff_DateTime': '2009-06-15 09:46:00', 'Trip_Pickup_DateTime': '2009-06-15 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76221, 'End_Lon': -73.97844, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756202, 'Start_Lon': -73.990237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-15 09:24:00', 'Trip_Pickup_DateTime': '2009-06-15 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75345, 'End_Lon': -73.972922, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.778729, 'Start_Lon': -73.956176, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-24 07:39:30', 'Trip_Pickup_DateTime': '2009-06-24 07:28:03', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.787367, 'End_Lon': -74.020958, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790788, 'Start_Lon': -74.022657, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-23 19:16:00', 'Trip_Pickup_DateTime': '2009-06-23 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783648, 'End_Lon': -73.980195, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753112, 'Start_Lon': -73.985412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-11 11:50:00', 'Trip_Pickup_DateTime': '2009-06-11 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739923, 'End_Lon': -74.005368, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7141, 'Start_Lon': -73.989732, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-10 22:05:00', 'Trip_Pickup_DateTime': '2009-06-10 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75616, 'End_Lon': -73.9768, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725327, 'Start_Lon': -73.987085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-15 08:24:00', 'Trip_Pickup_DateTime': '2009-06-15 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707755, 'End_Lon': -74.011575, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781005, 'Start_Lon': -73.981298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 5.55, 'Trip_Dropoff_DateTime': '2009-06-10 23:20:00', 'Trip_Pickup_DateTime': '2009-06-10 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.691613, 'End_Lon': -73.966597, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728225, 'Start_Lon': -73.987948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-21 02:43:00', 'Trip_Pickup_DateTime': '2009-06-21 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75012, 'End_Lon': -73.991353, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744668, 'Start_Lon': -73.985228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-21 00:27:00', 'Trip_Pickup_DateTime': '2009-06-21 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.667428, 'End_Lon': -73.974593, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752042, 'Start_Lon': -73.983013, 'Tip_Amt': 5.05, 'Tolls_Amt': 0.0, 'Total_Amt': 25.25, 'Trip_Distance': 7.1, 'Trip_Dropoff_DateTime': '2009-06-21 03:10:00', 'Trip_Pickup_DateTime': '2009-06-21 02:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70762, 'End_Lon': -74.009068, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702677, 'Start_Lon': -74.011622, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-20 23:04:00', 'Trip_Pickup_DateTime': '2009-06-20 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7434, 'End_Lon': -73.984285, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78675, 'Start_Lon': -73.972532, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-23 11:33:00', 'Trip_Pickup_DateTime': '2009-06-23 11:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.811707, 'End_Lon': -73.906687, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.811737, 'Start_Lon': -73.91745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-17 13:49:00', 'Trip_Pickup_DateTime': '2009-06-17 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.85925, 'End_Lon': -73.89816, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.859713, 'Start_Lon': -73.898102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-22 20:23:00', 'Trip_Pickup_DateTime': '2009-06-22 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731978, 'End_Lon': -73.991352, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764933, 'Start_Lon': -73.961178, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-20 18:27:00', 'Trip_Pickup_DateTime': '2009-06-20 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786238, 'End_Lon': -73.954163, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778665, 'Start_Lon': -73.95419, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-20 23:57:00', 'Trip_Pickup_DateTime': '2009-06-20 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767788, 'End_Lon': -73.964152, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762287, 'Start_Lon': -73.982518, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-16 23:23:33', 'Trip_Pickup_DateTime': '2009-06-16 23:08:33', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.744008, 'End_Lon': -74.003758, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750098, 'Start_Lon': -73.994935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-20 18:39:00', 'Trip_Pickup_DateTime': '2009-06-20 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808873, 'End_Lon': -73.940433, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721123, 'Start_Lon': -73.98356, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 8.39, 'Trip_Dropoff_DateTime': '2009-06-20 23:36:00', 'Trip_Pickup_DateTime': '2009-06-20 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733725, 'End_Lon': -73.9868, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723803, 'Start_Lon': -73.996517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-24 19:51:00', 'Trip_Pickup_DateTime': '2009-06-24 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722697, 'End_Lon': -73.988085, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73201, 'Start_Lon': -73.98397, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-20 23:20:00', 'Trip_Pickup_DateTime': '2009-06-20 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756767, 'End_Lon': -73.976373, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759905, 'Start_Lon': -73.985325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-20 23:26:00', 'Trip_Pickup_DateTime': '2009-06-20 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776228, 'End_Lon': -73.955783, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776228, 'Start_Lon': -73.955783, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-20 23:05:00', 'Trip_Pickup_DateTime': '2009-06-20 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744135, 'End_Lon': -73.973415, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734277, 'Start_Lon': -73.980487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-21 11:57:00', 'Trip_Pickup_DateTime': '2009-06-21 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742725, 'End_Lon': -73.984672, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724308, 'Start_Lon': -73.993272, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-21 09:27:00', 'Trip_Pickup_DateTime': '2009-06-21 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67685, 'End_Lon': -73.980212, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723028, 'Start_Lon': -73.988363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-21 01:53:00', 'Trip_Pickup_DateTime': '2009-06-21 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745133, 'End_Lon': -73.977117, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750045, 'Start_Lon': -74.00247, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-21 01:37:00', 'Trip_Pickup_DateTime': '2009-06-21 01:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755008, 'End_Lon': -73.97966, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788305, 'Start_Lon': -73.97465, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-21 11:49:00', 'Trip_Pickup_DateTime': '2009-06-21 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773307, 'End_Lon': -73.982407, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78728, 'Start_Lon': -73.974273, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-20 00:02:00', 'Trip_Pickup_DateTime': '2009-06-19 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782355, 'End_Lon': -73.98049, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771725, 'Start_Lon': -73.98656, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-21 12:46:00', 'Trip_Pickup_DateTime': '2009-06-21 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76136, 'End_Lon': -73.961915, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78935, 'Start_Lon': -73.954498, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-22 16:18:00', 'Trip_Pickup_DateTime': '2009-06-22 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760568, 'End_Lon': -73.9732, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742518, 'Start_Lon': -73.984703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-22 17:54:00', 'Trip_Pickup_DateTime': '2009-06-22 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781795, 'End_Lon': -73.951662, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779073, 'Start_Lon': -73.95374, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.22, 'Trip_Dropoff_DateTime': '2009-06-22 18:09:00', 'Trip_Pickup_DateTime': '2009-06-22 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749885, 'End_Lon': -73.993063, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759978, 'Start_Lon': -73.990988, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 4.49, 'Trip_Dropoff_DateTime': '2009-06-21 12:10:00', 'Trip_Pickup_DateTime': '2009-06-21 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782587, 'End_Lon': -73.954925, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782852, 'Start_Lon': -73.978545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-24 15:07:00', 'Trip_Pickup_DateTime': '2009-06-24 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.665888, 'End_Lon': -73.975218, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.668835, 'Start_Lon': -73.986008, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-22 22:43:00', 'Trip_Pickup_DateTime': '2009-06-22 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759743, 'End_Lon': -73.928317, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777612, 'Start_Lon': -73.95099, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-21 10:27:00', 'Trip_Pickup_DateTime': '2009-06-21 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774173, 'End_Lon': -73.82964, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802328, 'Start_Lon': -73.804798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-22 22:43:00', 'Trip_Pickup_DateTime': '2009-06-22 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719258, 'End_Lon': -74.006978, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786343, 'Start_Lon': -73.9571, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.1, 'Trip_Distance': 8.6, 'Trip_Dropoff_DateTime': '2009-06-17 13:06:00', 'Trip_Pickup_DateTime': '2009-06-17 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741207, 'End_Lon': -73.997742, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763818, 'Start_Lon': -73.978338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-21 11:28:00', 'Trip_Pickup_DateTime': '2009-06-21 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764725, 'End_Lon': -73.9719, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759508, 'Start_Lon': -73.973658, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-21 13:07:00', 'Trip_Pickup_DateTime': '2009-06-21 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773225, 'End_Lon': -73.980482, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765272, 'Start_Lon': -73.970173, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-22 21:01:00', 'Trip_Pickup_DateTime': '2009-06-22 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752585, 'End_Lon': -73.989998, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776278, 'Start_Lon': -73.987163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-21 13:38:00', 'Trip_Pickup_DateTime': '2009-06-21 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779247, 'End_Lon': -73.948763, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762348, 'Start_Lon': -73.96814, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-19 18:17:00', 'Trip_Pickup_DateTime': '2009-06-19 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715057, 'End_Lon': -74.01601, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760523, 'Start_Lon': -73.985403, 'Tip_Amt': 6.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.9, 'Trip_Distance': 4.73, 'Trip_Dropoff_DateTime': '2009-06-22 18:02:00', 'Trip_Pickup_DateTime': '2009-06-22 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644982, 'End_Lon': -73.776457, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774142, 'Start_Lon': -73.871133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.3, 'Trip_Distance': 14.0, 'Trip_Dropoff_DateTime': '2009-06-21 14:00:00', 'Trip_Pickup_DateTime': '2009-06-21 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764888, 'End_Lon': -73.966233, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7694, 'Start_Lon': -73.951978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-20 00:35:00', 'Trip_Pickup_DateTime': '2009-06-20 00:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739727, 'End_Lon': -74.006275, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748495, 'Start_Lon': -74.00573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-21 11:48:00', 'Trip_Pickup_DateTime': '2009-06-21 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762622, 'End_Lon': -74.001252, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757637, 'Start_Lon': -73.991315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-21 09:32:00', 'Trip_Pickup_DateTime': '2009-06-21 09:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75136, 'End_Lon': -73.973425, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730393, 'Start_Lon': -73.989232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-21 13:09:00', 'Trip_Pickup_DateTime': '2009-06-21 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76426, 'End_Lon': -73.961745, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77133, 'Start_Lon': -73.950117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-21 12:00:00', 'Trip_Pickup_DateTime': '2009-06-21 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723352, 'End_Lon': -74.000922, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.692842, 'Start_Lon': -73.99308, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-21 16:14:00', 'Trip_Pickup_DateTime': '2009-06-21 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76145, 'End_Lon': -73.98639, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755535, 'Start_Lon': -73.998313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-24 19:20:00', 'Trip_Pickup_DateTime': '2009-06-24 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.871755, 'End_Lon': -73.915427, 'Fare_Amt': 35.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722968, 'Start_Lon': -73.98579, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 36.2, 'Trip_Distance': 14.83, 'Trip_Dropoff_DateTime': '2009-06-21 23:45:00', 'Trip_Pickup_DateTime': '2009-06-21 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731285, 'End_Lon': -73.982437, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749927, 'Start_Lon': -73.991535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-21 23:23:00', 'Trip_Pickup_DateTime': '2009-06-21 23:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.82225, 'End_Lon': -73.945568, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75985, 'Start_Lon': -73.991545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.88, 'Trip_Dropoff_DateTime': '2009-06-22 02:58:00', 'Trip_Pickup_DateTime': '2009-06-22 02:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762418, 'End_Lon': -73.962885, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774752, 'Start_Lon': -73.988452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-21 20:53:00', 'Trip_Pickup_DateTime': '2009-06-21 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728688, 'End_Lon': -73.980968, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735805, 'Start_Lon': -73.994165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-20 11:25:00', 'Trip_Pickup_DateTime': '2009-06-20 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753192, 'End_Lon': -73.98703, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756852, 'Start_Lon': -73.978362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-22 07:26:00', 'Trip_Pickup_DateTime': '2009-06-22 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.844355, 'End_Lon': -74.330058, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.83598, 'Start_Lon': -74.312482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-22 23:31:00', 'Trip_Pickup_DateTime': '2009-06-22 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772137, 'End_Lon': -73.961927, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738457, 'Start_Lon': -73.988338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-22 22:56:00', 'Trip_Pickup_DateTime': '2009-06-22 22:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773153, 'End_Lon': -73.885465, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786055, 'Start_Lon': -73.950647, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 25.1, 'Trip_Distance': 7.0, 'Trip_Dropoff_DateTime': '2009-06-22 13:54:00', 'Trip_Pickup_DateTime': '2009-06-22 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799428, 'End_Lon': -73.943137, 'Fare_Amt': 17.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723175, 'Start_Lon': -73.98831, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.44, 'Trip_Dropoff_DateTime': '2009-06-22 00:35:00', 'Trip_Pickup_DateTime': '2009-06-22 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736645, 'End_Lon': -74.011385, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759075, 'Start_Lon': -73.977197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-24 18:51:00', 'Trip_Pickup_DateTime': '2009-06-24 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787293, 'End_Lon': -73.978077, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781678, 'Start_Lon': -73.983108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-21 16:42:00', 'Trip_Pickup_DateTime': '2009-06-21 16:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759227, 'End_Lon': -73.989567, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713862, 'Start_Lon': -74.006777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 4.19, 'Trip_Dropoff_DateTime': '2009-06-22 17:18:00', 'Trip_Pickup_DateTime': '2009-06-22 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743165, 'End_Lon': -73.983808, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743165, 'Start_Lon': -73.983808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-11 20:57:00', 'Trip_Pickup_DateTime': '2009-06-11 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762048, 'End_Lon': -73.971338, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733358, 'Start_Lon': -73.98723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-11 18:13:00', 'Trip_Pickup_DateTime': '2009-06-11 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744187, 'End_Lon': -73.983423, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766632, 'Start_Lon': -73.969093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-16 13:00:00', 'Trip_Pickup_DateTime': '2009-06-16 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752168, 'End_Lon': -73.975168, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754447, 'Start_Lon': -73.965407, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-11 15:16:00', 'Trip_Pickup_DateTime': '2009-06-11 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766653, 'End_Lon': -73.984298, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769957, 'Start_Lon': -73.954895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-11 18:22:00', 'Trip_Pickup_DateTime': '2009-06-11 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774768, 'End_Lon': -73.90396, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748312, 'Start_Lon': -73.989108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.0, 'Trip_Dropoff_DateTime': '2009-06-10 22:32:00', 'Trip_Pickup_DateTime': '2009-06-10 22:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747318, 'End_Lon': -73.98419, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762238, 'Start_Lon': -73.978448, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-10 15:36:00', 'Trip_Pickup_DateTime': '2009-06-10 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708223, 'End_Lon': -74.011072, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714252, 'Start_Lon': -74.002717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 11:54:00', 'Trip_Pickup_DateTime': '2009-06-15 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710107, 'End_Lon': -74.0139, 'Fare_Amt': 24.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784642, 'Start_Lon': -73.955622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.1, 'Trip_Distance': 8.9, 'Trip_Dropoff_DateTime': '2009-06-11 15:40:00', 'Trip_Pickup_DateTime': '2009-06-11 15:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7459, 'End_Lon': -73.994448, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750333, 'Start_Lon': -74.010278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-15 12:54:00', 'Trip_Pickup_DateTime': '2009-06-15 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777035, 'End_Lon': -73.9619, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762238, 'Start_Lon': -73.965438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-11 16:45:00', 'Trip_Pickup_DateTime': '2009-06-11 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781253, 'End_Lon': -73.956348, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768548, 'Start_Lon': -73.96561, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-13 18:49:00', 'Trip_Pickup_DateTime': '2009-06-13 18:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734052, 'End_Lon': -73.99298, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740078, 'Start_Lon': -74.003265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-11 16:31:00', 'Trip_Pickup_DateTime': '2009-06-11 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751302, 'End_Lon': -73.994042, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758662, 'Start_Lon': -73.985258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-15 12:55:00', 'Trip_Pickup_DateTime': '2009-06-15 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739107, 'End_Lon': -73.983345, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751198, 'Start_Lon': -73.994183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-18 16:20:00', 'Trip_Pickup_DateTime': '2009-06-18 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760438, 'End_Lon': -74.002865, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717008, 'Start_Lon': -74.010848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-19 13:42:00', 'Trip_Pickup_DateTime': '2009-06-19 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78424, 'End_Lon': -73.980878, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756973, 'Start_Lon': -73.969802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-15 12:19:00', 'Trip_Pickup_DateTime': '2009-06-15 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740202, 'End_Lon': -74.005732, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736968, 'Start_Lon': -73.98949, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-18 17:09:00', 'Trip_Pickup_DateTime': '2009-06-18 17:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72021, 'End_Lon': -74.010333, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733945, 'Start_Lon': -73.981085, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-15 09:46:00', 'Trip_Pickup_DateTime': '2009-06-15 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67898, 'End_Lon': -73.979728, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728142, 'Start_Lon': -73.985215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-13 19:26:00', 'Trip_Pickup_DateTime': '2009-06-13 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777727, 'End_Lon': -73.958933, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766385, 'Start_Lon': -73.96294, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-16 13:01:00', 'Trip_Pickup_DateTime': '2009-06-16 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763773, 'End_Lon': -73.978945, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749768, 'Start_Lon': -73.99359, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-15 11:15:00', 'Trip_Pickup_DateTime': '2009-06-15 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741137, 'End_Lon': -73.997745, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762977, 'Start_Lon': -73.96774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-18 16:52:00', 'Trip_Pickup_DateTime': '2009-06-18 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756458, 'End_Lon': -73.985893, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761083, 'Start_Lon': -73.976602, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-22 09:01:00', 'Trip_Pickup_DateTime': '2009-06-22 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757263, 'End_Lon': -73.985623, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760112, 'Start_Lon': -73.972173, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-20 11:56:00', 'Trip_Pickup_DateTime': '2009-06-20 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745743, 'End_Lon': -73.99753, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755837, 'Start_Lon': -73.99448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-23 17:43:00', 'Trip_Pickup_DateTime': '2009-06-23 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779327, 'End_Lon': -73.962247, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776397, 'Start_Lon': -73.975688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-20 13:58:00', 'Trip_Pickup_DateTime': '2009-06-20 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753753, 'End_Lon': -73.969767, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770688, 'Start_Lon': -73.955182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-25 13:17:00', 'Trip_Pickup_DateTime': '2009-06-25 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754798, 'End_Lon': -73.991405, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745168, 'Start_Lon': -73.990898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-20 14:44:00', 'Trip_Pickup_DateTime': '2009-06-20 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782283, 'End_Lon': -73.957822, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777027, 'Start_Lon': -73.94962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-22 07:52:00', 'Trip_Pickup_DateTime': '2009-06-22 07:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707955, 'End_Lon': -74.004065, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721838, 'Start_Lon': -73.983452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-22 07:19:00', 'Trip_Pickup_DateTime': '2009-06-22 07:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713272, 'End_Lon': -74.003673, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750198, 'Start_Lon': -73.992127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-20 12:55:00', 'Trip_Pickup_DateTime': '2009-06-20 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783072, 'End_Lon': -73.959302, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76967, 'Start_Lon': -73.958543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-20 10:41:00', 'Trip_Pickup_DateTime': '2009-06-20 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732783, 'End_Lon': -73.996337, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737785, 'Start_Lon': -73.980917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-20 12:49:00', 'Trip_Pickup_DateTime': '2009-06-20 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72304, 'End_Lon': -74.000233, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710572, 'Start_Lon': -74.011177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-20 12:38:00', 'Trip_Pickup_DateTime': '2009-06-20 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769568, 'End_Lon': -73.985112, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77715, 'Start_Lon': -73.978975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-20 11:16:00', 'Trip_Pickup_DateTime': '2009-06-20 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790048, 'End_Lon': -73.974475, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763332, 'Start_Lon': -73.973798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-20 10:45:00', 'Trip_Pickup_DateTime': '2009-06-20 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.666458, 'End_Lon': -73.85531, 'Fare_Amt': 34.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738778, 'Start_Lon': -73.976915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.5, 'Trip_Distance': 13.59, 'Trip_Dropoff_DateTime': '2009-06-25 13:23:00', 'Trip_Pickup_DateTime': '2009-06-25 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778927, 'End_Lon': -73.981248, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766567, 'Start_Lon': -73.982112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-20 12:56:00', 'Trip_Pickup_DateTime': '2009-06-20 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712722, 'End_Lon': -74.033825, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705673, 'Start_Lon': -74.050135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-20 13:08:00', 'Trip_Pickup_DateTime': '2009-06-20 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735033, 'End_Lon': -73.991922, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724028, 'Start_Lon': -74.00237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-20 13:26:00', 'Trip_Pickup_DateTime': '2009-06-20 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772192, 'End_Lon': -73.963865, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713853, 'Start_Lon': -74.013782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.3, 'Trip_Distance': 7.99, 'Trip_Dropoff_DateTime': '2009-06-20 13:31:00', 'Trip_Pickup_DateTime': '2009-06-20 13:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733462, 'End_Lon': -74.003993, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740642, 'Start_Lon': -73.987232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-23 18:47:00', 'Trip_Pickup_DateTime': '2009-06-23 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781897, 'End_Lon': -73.971407, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756442, 'Start_Lon': -73.972142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.26, 'Trip_Dropoff_DateTime': '2009-06-20 10:59:00', 'Trip_Pickup_DateTime': '2009-06-20 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77005, 'End_Lon': -73.957215, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75115, 'Start_Lon': -73.99415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-21 21:40:00', 'Trip_Pickup_DateTime': '2009-06-21 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777038, 'End_Lon': -73.963885, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773653, 'Start_Lon': -73.977777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-22 09:37:00', 'Trip_Pickup_DateTime': '2009-06-22 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724142, 'End_Lon': -73.997745, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719932, 'Start_Lon': -73.998602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-11 01:04:00', 'Trip_Pickup_DateTime': '2009-06-11 01:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759398, 'End_Lon': -73.985255, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735802, 'Start_Lon': -73.99511, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-22 08:53:00', 'Trip_Pickup_DateTime': '2009-06-22 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-13 16:43:00', 'Trip_Pickup_DateTime': '2009-06-13 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756348, 'End_Lon': -73.975283, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764013, 'Start_Lon': -73.994808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-22 08:32:00', 'Trip_Pickup_DateTime': '2009-06-22 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760995, 'End_Lon': -73.996105, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783477, 'Start_Lon': -73.971685, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-11 01:14:00', 'Trip_Pickup_DateTime': '2009-06-11 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.833743, 'End_Lon': -73.909357, 'Fare_Amt': 24.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72822, 'Start_Lon': -73.97761, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.0, 'Trip_Distance': 9.73, 'Trip_Dropoff_DateTime': '2009-06-21 21:10:00', 'Trip_Pickup_DateTime': '2009-06-21 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745253, 'End_Lon': -73.98035, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72422, 'Start_Lon': -73.98777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-14 04:13:00', 'Trip_Pickup_DateTime': '2009-06-14 04:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728668, 'End_Lon': -73.992463, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752675, 'Start_Lon': -73.978282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-22 08:55:00', 'Trip_Pickup_DateTime': '2009-06-22 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77642, 'End_Lon': -73.949467, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736953, 'Start_Lon': -73.984723, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.57, 'Trip_Dropoff_DateTime': '2009-06-20 01:17:00', 'Trip_Pickup_DateTime': '2009-06-20 01:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745767, 'End_Lon': -73.99138, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754015, 'Start_Lon': -73.980332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-21 21:43:00', 'Trip_Pickup_DateTime': '2009-06-21 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777757, 'End_Lon': -73.95201, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737402, 'Start_Lon': -74.000695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.65, 'Trip_Dropoff_DateTime': '2009-06-15 05:02:00', 'Trip_Pickup_DateTime': '2009-06-15 04:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694767, 'End_Lon': -74.177173, 'Fare_Amt': 65.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783548, 'Start_Lon': -73.945397, 'Tip_Amt': 13.18, 'Tolls_Amt': 8.0, 'Total_Amt': 87.08, 'Trip_Distance': 21.85, 'Trip_Dropoff_DateTime': '2009-06-19 12:41:00', 'Trip_Pickup_DateTime': '2009-06-19 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725985, 'End_Lon': -73.974337, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741055, 'Start_Lon': -73.9024, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.88, 'Trip_Dropoff_DateTime': '2009-06-21 21:48:00', 'Trip_Pickup_DateTime': '2009-06-21 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769428, 'End_Lon': -73.890645, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74879, 'Start_Lon': -74.003022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 9.11, 'Trip_Dropoff_DateTime': '2009-06-14 03:39:00', 'Trip_Pickup_DateTime': '2009-06-14 03:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756403, 'End_Lon': -73.97472, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767203, 'Start_Lon': -73.968783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-11 08:29:00', 'Trip_Pickup_DateTime': '2009-06-11 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722383, 'End_Lon': -73.883733, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75089, 'Start_Lon': -73.977655, 'Tip_Amt': 3.32, 'Tolls_Amt': 0.0, 'Total_Amt': 19.92, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-22 22:19:00', 'Trip_Pickup_DateTime': '2009-06-22 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750977, 'End_Lon': -73.990035, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757645, 'Start_Lon': -73.97325, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-13 16:59:00', 'Trip_Pickup_DateTime': '2009-06-13 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-11 20:52:00', 'Trip_Pickup_DateTime': '2009-06-11 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759705, 'End_Lon': -73.970107, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774468, 'Start_Lon': -73.961537, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-11 09:07:00', 'Trip_Pickup_DateTime': '2009-06-11 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738673, 'End_Lon': -73.987173, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714028, 'Start_Lon': -74.015298, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.9, 'Trip_Distance': 5.48, 'Trip_Dropoff_DateTime': '2009-06-17 11:33:00', 'Trip_Pickup_DateTime': '2009-06-17 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712193, 'End_Lon': -74.009738, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720035, 'Start_Lon': -73.999118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-11 09:43:00', 'Trip_Pickup_DateTime': '2009-06-11 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746767, 'End_Lon': -73.9715, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765637, 'Start_Lon': -73.954595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-11 08:54:00', 'Trip_Pickup_DateTime': '2009-06-11 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741593, 'End_Lon': -73.922965, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751787, 'Start_Lon': -73.990032, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 17.05, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-11 06:51:00', 'Trip_Pickup_DateTime': '2009-06-11 06:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722453, 'End_Lon': -73.994343, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719895, 'Start_Lon': -74.005333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-14 00:04:00', 'Trip_Pickup_DateTime': '2009-06-13 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756287, 'End_Lon': -73.97508, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75057, 'Start_Lon': -73.990632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-13 23:12:00', 'Trip_Pickup_DateTime': '2009-06-13 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769703, 'End_Lon': -73.960323, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.66176, 'Start_Lon': -73.803833, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 54.15, 'Trip_Distance': 17.99, 'Trip_Dropoff_DateTime': '2009-06-11 05:55:00', 'Trip_Pickup_DateTime': '2009-06-11 05:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74989, 'End_Lon': -73.993697, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753172, 'Start_Lon': -73.974968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-25 10:32:00', 'Trip_Pickup_DateTime': '2009-06-25 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77412, 'End_Lon': -73.870985, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734707, 'Start_Lon': -73.98995, 'Tip_Amt': 2.0, 'Tolls_Amt': 5.0, 'Total_Amt': 35.1, 'Trip_Distance': 9.59, 'Trip_Dropoff_DateTime': '2009-06-11 08:15:00', 'Trip_Pickup_DateTime': '2009-06-11 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77394, 'End_Lon': -73.951925, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726888, 'Start_Lon': -73.996212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.57, 'Trip_Dropoff_DateTime': '2009-06-23 23:18:00', 'Trip_Pickup_DateTime': '2009-06-23 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747273, 'End_Lon': -73.981345, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77554, 'Start_Lon': -73.986115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-11 08:14:00', 'Trip_Pickup_DateTime': '2009-06-11 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764077, 'End_Lon': -73.95566, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759662, 'Start_Lon': -73.970503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-11 10:45:00', 'Trip_Pickup_DateTime': '2009-06-11 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743925, 'End_Lon': -73.992083, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734438, 'Start_Lon': -73.994847, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-11 09:12:00', 'Trip_Pickup_DateTime': '2009-06-11 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747333, 'End_Lon': -73.985142, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769142, 'Start_Lon': -73.988717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-25 22:24:00', 'Trip_Pickup_DateTime': '2009-06-25 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746855, 'End_Lon': -73.970827, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749245, 'Start_Lon': -73.991627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-15 07:19:00', 'Trip_Pickup_DateTime': '2009-06-15 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.639032, 'End_Lon': -73.786455, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763988, 'Start_Lon': -73.973837, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.55, 'Trip_Dropoff_DateTime': '2009-06-14 10:42:00', 'Trip_Pickup_DateTime': '2009-06-14 10:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753493, 'End_Lon': -73.974602, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757057, 'Start_Lon': -73.976997, 'Tip_Amt': 0.55, 'Tolls_Amt': 0.0, 'Total_Amt': 5.85, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-11 11:07:00', 'Trip_Pickup_DateTime': '2009-06-11 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708862, 'End_Lon': -74.007765, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771935, 'Start_Lon': -73.990362, 'Tip_Amt': 3.78, 'Tolls_Amt': 0.0, 'Total_Amt': 22.68, 'Trip_Distance': 5.15, 'Trip_Dropoff_DateTime': '2009-06-11 09:38:00', 'Trip_Pickup_DateTime': '2009-06-11 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753805, 'End_Lon': -73.973767, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765173, 'Start_Lon': -73.953853, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-11 14:11:00', 'Trip_Pickup_DateTime': '2009-06-11 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722487, 'End_Lon': -73.988652, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.68987, 'Start_Lon': -73.988175, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-14 02:38:00', 'Trip_Pickup_DateTime': '2009-06-14 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756803, 'End_Lon': -73.994587, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77125, 'Start_Lon': -73.979535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-11 14:03:00', 'Trip_Pickup_DateTime': '2009-06-11 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750417, 'End_Lon': -73.991122, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752588, 'Start_Lon': -73.979795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-11 11:10:00', 'Trip_Pickup_DateTime': '2009-06-11 11:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748023, 'End_Lon': -73.987135, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731893, 'Start_Lon': -74.008818, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-11 15:00:00', 'Trip_Pickup_DateTime': '2009-06-11 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773235, 'End_Lon': -73.98934, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765652, 'Start_Lon': -73.980505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-10 23:22:00', 'Trip_Pickup_DateTime': '2009-06-10 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724153, 'End_Lon': -73.984962, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713848, 'Start_Lon': -73.979017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-25 22:56:00', 'Trip_Pickup_DateTime': '2009-06-25 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77243, 'End_Lon': -73.946483, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765363, 'Start_Lon': -73.979765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-18 16:51:00', 'Trip_Pickup_DateTime': '2009-06-18 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711332, 'End_Lon': -74.015128, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757738, 'Start_Lon': -73.985453, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-16 13:12:00', 'Trip_Pickup_DateTime': '2009-06-16 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767438, 'End_Lon': -73.9687, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76045, 'Start_Lon': -73.991218, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 9.95, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-26 21:37:00', 'Trip_Pickup_DateTime': '2009-06-26 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740692, 'End_Lon': -74.005175, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748227, 'Start_Lon': -73.978792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-23 17:45:00', 'Trip_Pickup_DateTime': '2009-06-23 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765402, 'End_Lon': -73.983755, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747853, 'Start_Lon': -74.004147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-15 09:11:00', 'Trip_Pickup_DateTime': '2009-06-15 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800403, 'End_Lon': -73.967638, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762235, 'Start_Lon': -73.960013, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-14 01:58:00', 'Trip_Pickup_DateTime': '2009-06-14 01:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761998, 'End_Lon': -73.972595, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743663, 'Start_Lon': -73.98799, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-24 08:21:00', 'Trip_Pickup_DateTime': '2009-06-24 08:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752683, 'End_Lon': -73.98565, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75098, 'Start_Lon': -73.994405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-10 23:08:00', 'Trip_Pickup_DateTime': '2009-06-10 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70704, 'End_Lon': -74.014392, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711713, 'Start_Lon': -74.015717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-11 13:43:00', 'Trip_Pickup_DateTime': '2009-06-11 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744505, 'End_Lon': -73.928218, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73606, 'Start_Lon': -73.876287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-15 08:28:00', 'Trip_Pickup_DateTime': '2009-06-15 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667727, 'End_Lon': -73.98092, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772342, 'Start_Lon': -73.955718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 8.39, 'Trip_Dropoff_DateTime': '2009-06-14 03:32:00', 'Trip_Pickup_DateTime': '2009-06-14 03:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70392, 'End_Lon': -74.007945, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722808, 'Start_Lon': -73.998647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-12 08:07:00', 'Trip_Pickup_DateTime': '2009-06-12 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74282, 'End_Lon': -73.992558, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735777, 'Start_Lon': -73.97933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-12 07:21:00', 'Trip_Pickup_DateTime': '2009-06-12 07:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735605, 'End_Lon': -73.989723, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738115, 'Start_Lon': -73.97378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-13 19:55:00', 'Trip_Pickup_DateTime': '2009-06-13 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776625, 'End_Lon': -73.979015, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758495, 'Start_Lon': -73.986427, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-10 18:46:00', 'Trip_Pickup_DateTime': '2009-06-10 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740857, 'End_Lon': -74.001105, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794883, 'Start_Lon': -73.94439, 'Tip_Amt': 3.64, 'Tolls_Amt': 0.0, 'Total_Amt': 21.84, 'Trip_Distance': 5.75, 'Trip_Dropoff_DateTime': '2009-06-13 23:04:00', 'Trip_Pickup_DateTime': '2009-06-13 22:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702542, 'End_Lon': -74.012695, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733975, 'Start_Lon': -74.0085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-24 08:28:00', 'Trip_Pickup_DateTime': '2009-06-24 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751275, 'End_Lon': -73.975423, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751255, 'Start_Lon': -73.969643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-13 23:05:00', 'Trip_Pickup_DateTime': '2009-06-13 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755967, 'End_Lon': -73.983472, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731843, 'Start_Lon': -74.003017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-10 17:49:00', 'Trip_Pickup_DateTime': '2009-06-10 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779283, 'End_Lon': -73.961495, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757742, 'Start_Lon': -73.973438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-25 12:28:00', 'Trip_Pickup_DateTime': '2009-06-25 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787405, 'End_Lon': -73.967353, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776293, 'Start_Lon': -73.975692, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-24 18:54:00', 'Trip_Pickup_DateTime': '2009-06-24 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745042, 'End_Lon': -74.005152, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735493, 'Start_Lon': -74.005948, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-14 02:00:00', 'Trip_Pickup_DateTime': '2009-06-14 01:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.683223, 'End_Lon': -73.995358, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725132, 'Start_Lon': -73.995673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-12 01:17:00', 'Trip_Pickup_DateTime': '2009-06-12 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764173, 'End_Lon': -73.92396, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77042, 'Start_Lon': -73.92129, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-10 19:29:00', 'Trip_Pickup_DateTime': '2009-06-10 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77989, 'End_Lon': -73.950252, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768702, 'Start_Lon': -73.985088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-12 03:25:00', 'Trip_Pickup_DateTime': '2009-06-12 03:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7436, 'End_Lon': -73.980913, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743752, 'Start_Lon': -73.993352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-14 16:35:00', 'Trip_Pickup_DateTime': '2009-06-14 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755862, 'End_Lon': -73.894877, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77625, 'Start_Lon': -73.97959, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.82, 'Trip_Dropoff_DateTime': '2009-06-11 23:58:00', 'Trip_Pickup_DateTime': '2009-06-11 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772562, 'End_Lon': -73.949502, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764713, 'Start_Lon': -73.955242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-10 19:28:00', 'Trip_Pickup_DateTime': '2009-06-10 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795953, 'End_Lon': -73.971073, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783435, 'Start_Lon': -73.982237, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-10 21:23:00', 'Trip_Pickup_DateTime': '2009-06-10 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.663313, 'End_Lon': -73.987933, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722027, 'Start_Lon': -73.991877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.73, 'Trip_Dropoff_DateTime': '2009-06-11 13:38:00', 'Trip_Pickup_DateTime': '2009-06-11 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772928, 'End_Lon': -73.980577, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752923, 'Start_Lon': -73.999742, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-14 03:52:00', 'Trip_Pickup_DateTime': '2009-06-14 03:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769388, 'End_Lon': -73.98481, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780678, 'Start_Lon': -73.958742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-14 12:01:00', 'Trip_Pickup_DateTime': '2009-06-14 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729003, 'End_Lon': -73.981225, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746347, 'Start_Lon': -74.000838, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-14 03:29:00', 'Trip_Pickup_DateTime': '2009-06-14 03:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7516, 'End_Lon': -73.99335, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745547, 'Start_Lon': -73.977952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-14 11:55:00', 'Trip_Pickup_DateTime': '2009-06-14 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734162, 'End_Lon': -73.9909, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75195, 'Start_Lon': -73.986835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-24 19:52:00', 'Trip_Pickup_DateTime': '2009-06-24 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762802, 'End_Lon': -73.979315, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756782, 'Start_Lon': -73.989465, 'Tip_Amt': 0.0, 'Tolls_Amt': 2.5, 'Total_Amt': 11.1, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-24 20:52:00', 'Trip_Pickup_DateTime': '2009-06-24 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681005, 'End_Lon': -73.996338, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693508, 'Start_Lon': -73.992923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-10 17:47:00', 'Trip_Pickup_DateTime': '2009-06-10 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743045, 'End_Lon': -73.977121, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.706463, 'Start_Lon': -74.003751, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-26 18:55:51', 'Trip_Pickup_DateTime': '2009-06-26 18:40:30', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.77928, 'End_Lon': -73.962115, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754792, 'Start_Lon': -73.975333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-24 10:35:00', 'Trip_Pickup_DateTime': '2009-06-24 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771015, 'End_Lon': -73.949443, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772473, 'Start_Lon': -73.95869, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-14 00:51:00', 'Trip_Pickup_DateTime': '2009-06-14 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757288, 'End_Lon': -73.98992, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755598, 'Start_Lon': -73.989048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.15, 'Trip_Dropoff_DateTime': '2009-06-10 19:05:00', 'Trip_Pickup_DateTime': '2009-06-10 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751857, 'End_Lon': -74.004352, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750605, 'Start_Lon': -73.994598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-15 10:00:00', 'Trip_Pickup_DateTime': '2009-06-15 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754517, 'End_Lon': -73.981313, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753085, 'Start_Lon': -73.955992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-24 15:29:00', 'Trip_Pickup_DateTime': '2009-06-24 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74847, 'End_Lon': -73.981018, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74251, 'Start_Lon': -73.979363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-14 00:53:00', 'Trip_Pickup_DateTime': '2009-06-14 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738667, 'End_Lon': -73.988348, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768707, 'Start_Lon': -73.9873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-10 18:47:00', 'Trip_Pickup_DateTime': '2009-06-10 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770365, 'End_Lon': -73.983352, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775133, 'Start_Lon': -73.980472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-11 22:12:00', 'Trip_Pickup_DateTime': '2009-06-11 22:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762778, 'End_Lon': -73.975843, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75016, 'Start_Lon': -73.991495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-10 18:55:00', 'Trip_Pickup_DateTime': '2009-06-10 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760742, 'End_Lon': -73.984693, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755937, 'Start_Lon': -73.990472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-14 14:51:00', 'Trip_Pickup_DateTime': '2009-06-14 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752143, 'End_Lon': -73.977055, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707873, 'Start_Lon': -74.003515, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.87, 'Trip_Dropoff_DateTime': '2009-06-11 22:10:00', 'Trip_Pickup_DateTime': '2009-06-11 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735255, 'End_Lon': -73.998302, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733238, 'Start_Lon': -74.005443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-12 02:10:00', 'Trip_Pickup_DateTime': '2009-06-12 02:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772742, 'End_Lon': -73.961672, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783087, 'Start_Lon': -73.953097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-10 19:03:00', 'Trip_Pickup_DateTime': '2009-06-10 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743648, 'End_Lon': -73.987037, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750905, 'Start_Lon': -74.006108, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-10 17:48:00', 'Trip_Pickup_DateTime': '2009-06-10 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764278, 'End_Lon': -73.968618, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7245, 'Start_Lon': -73.998427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-11 23:10:00', 'Trip_Pickup_DateTime': '2009-06-11 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800322, 'End_Lon': -73.969565, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773513, 'Start_Lon': -73.870633, 'Tip_Amt': 4.68, 'Tolls_Amt': 4.15, 'Total_Amt': 32.23, 'Trip_Distance': 8.78, 'Trip_Dropoff_DateTime': '2009-06-11 23:00:00', 'Trip_Pickup_DateTime': '2009-06-11 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798147, 'End_Lon': -73.950438, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788678, 'Start_Lon': -73.955465, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-24 07:00:00', 'Trip_Pickup_DateTime': '2009-06-24 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769003, 'End_Lon': -73.967495, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759508, 'Start_Lon': -73.973462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-15 18:51:00', 'Trip_Pickup_DateTime': '2009-06-15 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74589, 'End_Lon': -73.956268, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749872, 'Start_Lon': -73.97471, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.39, 'Trip_Dropoff_DateTime': '2009-06-12 02:15:00', 'Trip_Pickup_DateTime': '2009-06-12 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.643865, 'End_Lon': -74.019587, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.649918, 'Start_Lon': -73.973427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.3, 'Trip_Distance': 10.69, 'Trip_Dropoff_DateTime': '2009-06-24 15:08:00', 'Trip_Pickup_DateTime': '2009-06-24 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764518, 'End_Lon': -73.980635, 'Fare_Amt': 25.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774053, 'Start_Lon': -73.874525, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.35, 'Trip_Distance': 10.72, 'Trip_Dropoff_DateTime': '2009-06-11 23:18:00', 'Trip_Pickup_DateTime': '2009-06-11 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755205, 'End_Lon': -73.972067, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774507, 'Start_Lon': -73.954123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-14 13:07:00', 'Trip_Pickup_DateTime': '2009-06-14 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74388, 'End_Lon': -73.994895, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78278, 'Start_Lon': -73.948077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-15 18:26:00', 'Trip_Pickup_DateTime': '2009-06-15 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758283, 'End_Lon': -73.98621, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74912, 'Start_Lon': -73.988138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-15 18:11:00', 'Trip_Pickup_DateTime': '2009-06-15 18:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740295, 'End_Lon': -74.005778, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763237, 'Start_Lon': -73.9808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-15 18:52:00', 'Trip_Pickup_DateTime': '2009-06-15 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722593, 'End_Lon': -73.983035, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744475, 'Start_Lon': -73.980972, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-14 00:03:00', 'Trip_Pickup_DateTime': '2009-06-13 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.825058, 'End_Lon': -73.926453, 'Fare_Amt': 23.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735008, 'Start_Lon': -73.991355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 9.22, 'Trip_Dropoff_DateTime': '2009-06-11 20:34:00', 'Trip_Pickup_DateTime': '2009-06-11 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760242, 'End_Lon': -73.97372, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751807, 'Start_Lon': -73.980153, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-15 17:41:00', 'Trip_Pickup_DateTime': '2009-06-15 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759895, 'End_Lon': -73.991948, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774427, 'Start_Lon': -73.955208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-11 18:16:00', 'Trip_Pickup_DateTime': '2009-06-11 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766307, 'End_Lon': -73.977602, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762352, 'Start_Lon': -73.971838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-11 23:02:00', 'Trip_Pickup_DateTime': '2009-06-11 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.668905, 'End_Lon': -73.985793, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754053, 'Start_Lon': -73.978197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.7, 'Trip_Distance': 7.1, 'Trip_Dropoff_DateTime': '2009-06-15 19:56:00', 'Trip_Pickup_DateTime': '2009-06-15 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792415, 'End_Lon': -73.940603, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775718, 'Start_Lon': -73.947108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-14 00:16:00', 'Trip_Pickup_DateTime': '2009-06-14 00:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749302, 'End_Lon': -73.987442, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738093, 'Start_Lon': -73.981505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-12 01:39:00', 'Trip_Pickup_DateTime': '2009-06-12 01:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763852, 'End_Lon': -73.97202, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77955, 'Start_Lon': -73.981083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-11 13:38:00', 'Trip_Pickup_DateTime': '2009-06-11 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791838, 'End_Lon': -73.9671, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76482, 'Start_Lon': -73.964393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-15 18:07:00', 'Trip_Pickup_DateTime': '2009-06-15 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750867, 'End_Lon': -73.990823, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765458, 'Start_Lon': -73.982203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-15 17:42:00', 'Trip_Pickup_DateTime': '2009-06-15 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731247, 'End_Lon': -74.001428, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728962, 'Start_Lon': -73.993695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-15 18:21:00', 'Trip_Pickup_DateTime': '2009-06-15 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7739, 'End_Lon': -73.946228, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777733, 'Start_Lon': -73.959055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-15 19:07:00', 'Trip_Pickup_DateTime': '2009-06-15 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722945, 'End_Lon': -73.98883, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716343, 'Start_Lon': -74.006693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-15 18:43:00', 'Trip_Pickup_DateTime': '2009-06-15 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770702, 'End_Lon': -73.865258, 'Fare_Amt': 30.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648542, 'Start_Lon': -73.783125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.5, 'Trip_Distance': 11.55, 'Trip_Dropoff_DateTime': '2009-06-15 18:17:00', 'Trip_Pickup_DateTime': '2009-06-15 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738385, 'End_Lon': -73.992962, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750053, 'Start_Lon': -73.994412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-15 18:13:00', 'Trip_Pickup_DateTime': '2009-06-15 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760797, 'End_Lon': -73.977718, 'Fare_Amt': 50.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771318, 'Start_Lon': -73.878082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 7.58, 'Trip_Dropoff_DateTime': '2009-06-24 15:32:00', 'Trip_Pickup_DateTime': '2009-06-24 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727212, 'End_Lon': -73.988667, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73855, 'Start_Lon': -73.985557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-11 20:51:00', 'Trip_Pickup_DateTime': '2009-06-11 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719753, 'End_Lon': -74.001907, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739982, 'Start_Lon': -73.983785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-15 12:33:00', 'Trip_Pickup_DateTime': '2009-06-15 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765753, 'End_Lon': -73.976485, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781082, 'Start_Lon': -73.972547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-11 17:59:00', 'Trip_Pickup_DateTime': '2009-06-11 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749855, 'End_Lon': -74.003408, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793523, 'Start_Lon': -73.974508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-11 17:42:00', 'Trip_Pickup_DateTime': '2009-06-11 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755422, 'End_Lon': -73.98492, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76409, 'Start_Lon': -73.973695, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-15 15:27:00', 'Trip_Pickup_DateTime': '2009-06-15 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755583, 'End_Lon': -73.971467, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743287, 'Start_Lon': -73.979907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-15 15:18:00', 'Trip_Pickup_DateTime': '2009-06-15 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730087, 'End_Lon': -73.990977, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722078, 'Start_Lon': -73.988728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-10 19:31:00', 'Trip_Pickup_DateTime': '2009-06-10 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766478, 'End_Lon': -73.955935, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770662, 'Start_Lon': -73.96322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-15 15:25:00', 'Trip_Pickup_DateTime': '2009-06-15 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784373, 'End_Lon': -73.973248, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775065, 'Start_Lon': -73.959042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-15 12:59:00', 'Trip_Pickup_DateTime': '2009-06-15 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802905, 'End_Lon': -73.95284, 'Fare_Amt': 2.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805968, 'Start_Lon': -73.950585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.25, 'Trip_Dropoff_DateTime': '2009-06-13 21:44:00', 'Trip_Pickup_DateTime': '2009-06-13 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735417, 'End_Lon': -74.003317, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723477, 'Start_Lon': -73.995918, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-14 18:10:00', 'Trip_Pickup_DateTime': '2009-06-14 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771587, 'End_Lon': -73.95913, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78055, 'Start_Lon': -73.954688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.11, 'Trip_Dropoff_DateTime': '2009-06-11 19:46:00', 'Trip_Pickup_DateTime': '2009-06-11 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76657, 'End_Lon': -73.978488, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750977, 'Start_Lon': -74.005495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-11 17:32:00', 'Trip_Pickup_DateTime': '2009-06-11 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755983, 'End_Lon': -73.986295, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768493, 'Start_Lon': -73.981992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-11 17:19:00', 'Trip_Pickup_DateTime': '2009-06-11 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716918, 'End_Lon': -74.012403, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772998, 'Start_Lon': -73.964548, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.5, 'Trip_Distance': 6.96, 'Trip_Dropoff_DateTime': '2009-06-17 13:03:00', 'Trip_Pickup_DateTime': '2009-06-17 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728023, 'End_Lon': -73.99132, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745018, 'Start_Lon': -73.99452, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 8.95, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-23 12:37:00', 'Trip_Pickup_DateTime': '2009-06-23 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71695, 'End_Lon': -73.81103, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773755, 'Start_Lon': -73.870905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.82, 'Trip_Dropoff_DateTime': '2009-06-24 09:05:00', 'Trip_Pickup_DateTime': '2009-06-24 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737155, 'End_Lon': -73.98133, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779438, 'Start_Lon': -73.944472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-11 12:14:00', 'Trip_Pickup_DateTime': '2009-06-11 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75252, 'End_Lon': -73.970802, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739858, 'Start_Lon': -73.99144, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-13 21:19:00', 'Trip_Pickup_DateTime': '2009-06-13 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74144, 'End_Lon': -73.975145, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75021, 'Start_Lon': -73.978415, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 14:36:00', 'Trip_Pickup_DateTime': '2009-06-15 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792197, 'End_Lon': -73.926092, 'Fare_Amt': 21.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75915, 'Start_Lon': -73.986295, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.85, 'Trip_Distance': 6.78, 'Trip_Dropoff_DateTime': '2009-06-11 19:24:00', 'Trip_Pickup_DateTime': '2009-06-11 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.835063, 'End_Lon': -73.92307, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739735, 'Start_Lon': -73.976358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 8.6, 'Trip_Dropoff_DateTime': '2009-06-15 16:14:00', 'Trip_Pickup_DateTime': '2009-06-15 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750247, 'End_Lon': -73.995407, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725763, 'Start_Lon': -74.007713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-15 17:52:00', 'Trip_Pickup_DateTime': '2009-06-15 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808998, 'End_Lon': -74.091148, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802272, 'Start_Lon': -74.065022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-16 13:36:00', 'Trip_Pickup_DateTime': '2009-06-16 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77486, 'End_Lon': -73.944803, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74389, 'Start_Lon': -73.973555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-11 12:17:00', 'Trip_Pickup_DateTime': '2009-06-11 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790327, 'End_Lon': -73.852957, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796535, 'Start_Lon': -73.855805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-11 20:03:00', 'Trip_Pickup_DateTime': '2009-06-11 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74124, 'End_Lon': -73.993835, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733848, 'Start_Lon': -73.98649, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-11 20:18:00', 'Trip_Pickup_DateTime': '2009-06-11 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77534, 'End_Lon': -73.962895, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766808, 'Start_Lon': -73.969078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-11 15:17:00', 'Trip_Pickup_DateTime': '2009-06-11 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7812, 'End_Lon': -73.959325, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779595, 'Start_Lon': -73.957522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-11 15:31:00', 'Trip_Pickup_DateTime': '2009-06-11 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720525, 'End_Lon': -73.999688, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749815, 'Start_Lon': -73.991937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-11 15:20:00', 'Trip_Pickup_DateTime': '2009-06-11 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645037, 'End_Lon': -73.781045, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644803, 'Start_Lon': -73.78175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.04, 'Trip_Dropoff_DateTime': '2009-06-08 22:12:00', 'Trip_Pickup_DateTime': '2009-06-08 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751647, 'End_Lon': -73.971462, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745123, 'Start_Lon': -73.992522, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-08 21:39:00', 'Trip_Pickup_DateTime': '2009-06-08 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731058, 'End_Lon': -73.993462, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745033, 'Start_Lon': -73.98699, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-12 09:05:00', 'Trip_Pickup_DateTime': '2009-06-12 08:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.689222, 'End_Lon': -73.961988, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733367, 'Start_Lon': -74.002982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.76, 'Trip_Dropoff_DateTime': '2009-06-25 00:32:00', 'Trip_Pickup_DateTime': '2009-06-25 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73668, 'End_Lon': -73.977113, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74057, 'Start_Lon': -73.98653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-12 09:12:00', 'Trip_Pickup_DateTime': '2009-06-12 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757955, 'End_Lon': -73.98371, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746953, 'Start_Lon': -74.002747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-29 10:12:00', 'Trip_Pickup_DateTime': '2009-06-29 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754007, 'End_Lon': -73.96694, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756892, 'Start_Lon': -73.984147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-13 23:49:00', 'Trip_Pickup_DateTime': '2009-06-13 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750517, 'End_Lon': -73.979025, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722377, 'Start_Lon': -73.997213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-14 11:38:00', 'Trip_Pickup_DateTime': '2009-06-14 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716267, 'End_Lon': -74.004498, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74054, 'Start_Lon': -73.989478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-25 18:23:00', 'Trip_Pickup_DateTime': '2009-06-25 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770222, 'End_Lon': -73.980353, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778447, 'Start_Lon': -73.985603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-10 18:10:00', 'Trip_Pickup_DateTime': '2009-06-10 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723818, 'End_Lon': -74.00399, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74892, 'Start_Lon': -73.995763, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-10 18:47:00', 'Trip_Pickup_DateTime': '2009-06-10 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705783, 'End_Lon': -74.007207, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704865, 'Start_Lon': -74.017238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-14 15:01:00', 'Trip_Pickup_DateTime': '2009-06-14 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77949, 'End_Lon': -73.951512, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759458, 'Start_Lon': -73.981, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-18 17:50:00', 'Trip_Pickup_DateTime': '2009-06-18 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773798, 'End_Lon': -73.984002, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778393, 'Start_Lon': -73.985542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-14 19:08:00', 'Trip_Pickup_DateTime': '2009-06-14 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760702, 'End_Lon': -73.984972, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80671, 'Start_Lon': -73.96081, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-14 11:45:00', 'Trip_Pickup_DateTime': '2009-06-14 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749682, 'End_Lon': -73.993427, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748335, 'Start_Lon': -73.988338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-24 17:22:00', 'Trip_Pickup_DateTime': '2009-06-24 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762992, 'End_Lon': -73.996732, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760835, 'Start_Lon': -73.991465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.24, 'Trip_Dropoff_DateTime': '2009-06-04 17:22:00', 'Trip_Pickup_DateTime': '2009-06-04 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753457, 'End_Lon': -73.979453, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762515, 'Start_Lon': -73.969695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-10 16:59:00', 'Trip_Pickup_DateTime': '2009-06-10 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745083, 'End_Lon': -73.984255, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724833, 'Start_Lon': -74.004347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-10 15:56:00', 'Trip_Pickup_DateTime': '2009-06-10 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756185, 'End_Lon': -73.982327, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747977, 'Start_Lon': -73.984922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-14 21:41:00', 'Trip_Pickup_DateTime': '2009-06-14 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737187, 'End_Lon': -73.97898, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749835, 'Start_Lon': -73.9936, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-26 21:02:00', 'Trip_Pickup_DateTime': '2009-06-26 20:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760293, 'End_Lon': -73.959647, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706175, 'Start_Lon': -74.016577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 6.58, 'Trip_Dropoff_DateTime': '2009-06-10 14:28:00', 'Trip_Pickup_DateTime': '2009-06-10 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745807, 'End_Lon': -73.98237, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737225, 'Start_Lon': -73.988533, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-24 16:05:00', 'Trip_Pickup_DateTime': '2009-06-24 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719097, 'End_Lon': -74.005012, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760548, 'Start_Lon': -73.978998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 4.98, 'Trip_Dropoff_DateTime': '2009-06-14 11:56:00', 'Trip_Pickup_DateTime': '2009-06-14 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779333, 'End_Lon': -73.988158, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781903, 'Start_Lon': -73.953798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-10 14:43:00', 'Trip_Pickup_DateTime': '2009-06-10 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724528, 'End_Lon': -73.997487, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734775, 'Start_Lon': -73.994693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-10 16:44:00', 'Trip_Pickup_DateTime': '2009-06-10 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764335, 'End_Lon': -73.972985, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769933, 'Start_Lon': -73.984352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-14 22:00:00', 'Trip_Pickup_DateTime': '2009-06-14 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767928, 'End_Lon': -73.953112, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773875, 'Start_Lon': -73.954677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-10 13:29:00', 'Trip_Pickup_DateTime': '2009-06-10 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745317, 'End_Lon': -73.978287, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733192, 'Start_Lon': -74.006425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-14 21:34:00', 'Trip_Pickup_DateTime': '2009-06-14 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798778, 'End_Lon': -73.972898, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761357, 'Start_Lon': -73.977625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-19 17:18:00', 'Trip_Pickup_DateTime': '2009-06-19 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784785, 'End_Lon': -73.94954, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775017, 'Start_Lon': -73.976532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-14 20:45:00', 'Trip_Pickup_DateTime': '2009-06-14 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740077, 'End_Lon': -73.982123, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7515, 'Start_Lon': -74.005083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-14 21:42:00', 'Trip_Pickup_DateTime': '2009-06-14 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763157, 'End_Lon': -73.98441, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740618, 'Start_Lon': -74.005747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-27 14:00:00', 'Trip_Pickup_DateTime': '2009-06-27 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787348, 'End_Lon': -73.942492, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798147, 'Start_Lon': -73.952272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-10 16:33:00', 'Trip_Pickup_DateTime': '2009-06-10 16:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759015, 'End_Lon': -73.96236, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761958, 'Start_Lon': -73.95998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-10 13:23:00', 'Trip_Pickup_DateTime': '2009-06-10 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715645, 'End_Lon': -73.823203, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71307, 'Start_Lon': -73.82395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-10 12:06:00', 'Trip_Pickup_DateTime': '2009-06-10 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740812, 'End_Lon': -74.004855, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741408, 'Start_Lon': -73.98542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-18 17:31:00', 'Trip_Pickup_DateTime': '2009-06-18 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76566, 'End_Lon': -73.975978, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70373, 'Start_Lon': -74.007137, 'Tip_Amt': 5.73, 'Tolls_Amt': 0.0, 'Total_Amt': 24.83, 'Trip_Distance': 6.45, 'Trip_Dropoff_DateTime': '2009-06-18 18:05:00', 'Trip_Pickup_DateTime': '2009-06-18 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743495, 'End_Lon': -74.000178, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763762, 'Start_Lon': -73.988855, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-14 23:12:00', 'Trip_Pickup_DateTime': '2009-06-14 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770133, 'End_Lon': -73.9841, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785057, 'Start_Lon': -73.973312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-10 12:02:00', 'Trip_Pickup_DateTime': '2009-06-10 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720563, 'End_Lon': -74.01208, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704338, 'Start_Lon': -74.01511, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-25 06:56:00', 'Trip_Pickup_DateTime': '2009-06-25 06:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7591, 'End_Lon': -73.970718, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750177, 'Start_Lon': -73.991445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-16 14:47:00', 'Trip_Pickup_DateTime': '2009-06-16 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763775, 'End_Lon': -73.959695, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744232, 'Start_Lon': -73.99179, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-13 22:15:00', 'Trip_Pickup_DateTime': '2009-06-13 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75761, 'End_Lon': -73.973697, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758378, 'Start_Lon': -73.970322, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-10 13:08:00', 'Trip_Pickup_DateTime': '2009-06-10 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75085, 'End_Lon': -73.979148, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758067, 'Start_Lon': -74.000685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-10 14:33:00', 'Trip_Pickup_DateTime': '2009-06-10 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.655172, 'End_Lon': -73.974768, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738067, 'Start_Lon': -74.005595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 6.72, 'Trip_Dropoff_DateTime': '2009-06-27 00:00:00', 'Trip_Pickup_DateTime': '2009-06-26 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}]\n",
            "got page number 5 with 1000 records\n",
            "[{'End_Lat': 40.761235, 'End_Lon': -73.969343, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76411, 'Start_Lon': -73.959128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-10 11:48:00', 'Trip_Pickup_DateTime': '2009-06-10 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728042, 'End_Lon': -73.98265, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744015, 'Start_Lon': -73.976517, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-10 19:29:00', 'Trip_Pickup_DateTime': '2009-06-10 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74323, 'End_Lon': -73.99267, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740973, 'Start_Lon': -73.978765, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-12 08:26:00', 'Trip_Pickup_DateTime': '2009-06-12 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713088, 'End_Lon': -74.014247, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735545, 'Start_Lon': -73.99862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-25 06:35:00', 'Trip_Pickup_DateTime': '2009-06-25 06:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720743, 'End_Lon': -73.997407, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721167, 'Start_Lon': -73.993738, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 4.85, 'Trip_Distance': 0.28, 'Trip_Dropoff_DateTime': '2009-06-26 11:37:00', 'Trip_Pickup_DateTime': '2009-06-26 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741553, 'End_Lon': -73.9751, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733415, 'Start_Lon': -73.995407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-12 09:19:00', 'Trip_Pickup_DateTime': '2009-06-12 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783748, 'End_Lon': -73.950308, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743617, 'Start_Lon': -73.979515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-29 02:09:00', 'Trip_Pickup_DateTime': '2009-06-29 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77276, 'End_Lon': -73.97757, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76119, 'Start_Lon': -73.973257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-26 00:02:00', 'Trip_Pickup_DateTime': '2009-06-25 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741805, 'End_Lon': -73.980443, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761833, 'Start_Lon': -73.986502, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-08 22:09:00', 'Trip_Pickup_DateTime': '2009-06-08 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738418, 'End_Lon': -73.989937, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73135, 'Start_Lon': -73.988548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-08 21:17:00', 'Trip_Pickup_DateTime': '2009-06-08 21:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774878, 'End_Lon': -73.976858, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727265, 'Start_Lon': -73.993522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-08 22:24:00', 'Trip_Pickup_DateTime': '2009-06-08 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706338, 'End_Lon': -74.008287, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767007, 'Start_Lon': -73.98132, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-08 22:10:00', 'Trip_Pickup_DateTime': '2009-06-08 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.641895, 'End_Lon': -73.788057, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762435, 'Start_Lon': -73.978755, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.19, 'Trip_Dropoff_DateTime': '2009-06-24 13:28:00', 'Trip_Pickup_DateTime': '2009-06-24 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75941, 'End_Lon': -73.975988, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735042, 'Start_Lon': -74.006143, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-12 08:27:00', 'Trip_Pickup_DateTime': '2009-06-12 08:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7417, 'End_Lon': -73.993712, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708482, 'Start_Lon': -74.017135, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-28 18:40:00', 'Trip_Pickup_DateTime': '2009-06-28 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.816828, 'End_Lon': -73.947248, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757942, 'Start_Lon': -73.971875, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.14, 'Trip_Dropoff_DateTime': '2009-06-08 21:16:00', 'Trip_Pickup_DateTime': '2009-06-08 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725797, 'End_Lon': -74.00565, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740615, 'Start_Lon': -74.005198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-30 13:38:00', 'Trip_Pickup_DateTime': '2009-06-30 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740132, 'End_Lon': -74.00584, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745683, 'Start_Lon': -73.984443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-24 19:38:00', 'Trip_Pickup_DateTime': '2009-06-24 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798465, 'End_Lon': -73.965247, 'Fare_Amt': 12.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801558, 'Start_Lon': -73.934513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-12 08:58:00', 'Trip_Pickup_DateTime': '2009-06-12 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774412, 'End_Lon': -73.981035, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800428, 'Start_Lon': -73.96202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-12 08:50:00', 'Trip_Pickup_DateTime': '2009-06-12 08:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76117, 'End_Lon': -73.9736, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707945, 'Start_Lon': -74.011645, 'Tip_Amt': 3.62, 'Tolls_Amt': 0.0, 'Total_Amt': 21.72, 'Trip_Distance': 6.36, 'Trip_Dropoff_DateTime': '2009-06-12 07:40:00', 'Trip_Pickup_DateTime': '2009-06-12 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745628, 'End_Lon': -73.992725, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741415, 'Start_Lon': -73.998477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-12 04:44:00', 'Trip_Pickup_DateTime': '2009-06-12 04:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793993, 'End_Lon': -73.962963, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773995, 'Start_Lon': -73.874517, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.35, 'Trip_Distance': 8.61, 'Trip_Dropoff_DateTime': '2009-06-08 20:49:00', 'Trip_Pickup_DateTime': '2009-06-08 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.826732, 'End_Lon': -73.942192, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775045, 'Start_Lon': -73.930568, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.24, 'Trip_Dropoff_DateTime': '2009-06-14 06:12:00', 'Trip_Pickup_DateTime': '2009-06-14 05:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767597, 'End_Lon': -73.960938, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747555, 'Start_Lon': -74.003973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 3.59, 'Trip_Dropoff_DateTime': '2009-06-10 13:37:00', 'Trip_Pickup_DateTime': '2009-06-10 13:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756097, 'End_Lon': -73.998347, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719472, 'Start_Lon': -74.001743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-10 11:39:00', 'Trip_Pickup_DateTime': '2009-06-10 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754045, 'End_Lon': -73.966023, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756715, 'Start_Lon': -73.97504, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-10 19:29:00', 'Trip_Pickup_DateTime': '2009-06-10 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735328, 'End_Lon': -73.985763, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742022, 'Start_Lon': -73.98476, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-13 18:36:00', 'Trip_Pickup_DateTime': '2009-06-13 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802402, 'End_Lon': -73.96426, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758298, 'Start_Lon': -73.988932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-12 02:37:00', 'Trip_Pickup_DateTime': '2009-06-12 02:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751785, 'End_Lon': -73.977497, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76277, 'Start_Lon': -73.98184, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-10 11:04:00', 'Trip_Pickup_DateTime': '2009-06-10 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810215, 'End_Lon': -73.964663, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787857, 'Start_Lon': -73.97698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-16 14:33:00', 'Trip_Pickup_DateTime': '2009-06-16 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761262, 'End_Lon': -73.984523, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774722, 'Start_Lon': -73.982018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-14 11:00:00', 'Trip_Pickup_DateTime': '2009-06-14 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797813, 'End_Lon': -73.969543, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.8107, 'Start_Lon': -73.961982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-10 13:16:00', 'Trip_Pickup_DateTime': '2009-06-10 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695328, 'End_Lon': -73.936708, 'Fare_Amt': 22.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763193, 'Start_Lon': -73.989018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 7.67, 'Trip_Dropoff_DateTime': '2009-06-28 20:41:00', 'Trip_Pickup_DateTime': '2009-06-28 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788728, 'End_Lon': -73.94778, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769833, 'Start_Lon': -73.9605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-18 17:24:00', 'Trip_Pickup_DateTime': '2009-06-18 17:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761968, 'End_Lon': -74.000713, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764535, 'Start_Lon': -73.991895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-18 18:45:00', 'Trip_Pickup_DateTime': '2009-06-18 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766947, 'End_Lon': -73.956155, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792695, 'Start_Lon': -73.967682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-14 00:24:00', 'Trip_Pickup_DateTime': '2009-06-14 00:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76059, 'End_Lon': -73.971482, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76463, 'Start_Lon': -73.987783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-16 15:16:00', 'Trip_Pickup_DateTime': '2009-06-16 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799623, 'End_Lon': -73.966228, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791275, 'Start_Lon': -73.974078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-13 23:15:00', 'Trip_Pickup_DateTime': '2009-06-13 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771898, 'End_Lon': -73.958963, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772372, 'Start_Lon': -73.96703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-10 13:27:00', 'Trip_Pickup_DateTime': '2009-06-10 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720028, 'End_Lon': -74.005763, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744203, 'Start_Lon': -73.992347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-29 10:30:00', 'Trip_Pickup_DateTime': '2009-06-29 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778762, 'End_Lon': -73.983847, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765503, 'Start_Lon': -73.995037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-11 18:46:00', 'Trip_Pickup_DateTime': '2009-06-11 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760453, 'End_Lon': -74.002805, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776402, 'Start_Lon': -73.952818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 4.2, 'Trip_Dropoff_DateTime': '2009-06-12 07:13:00', 'Trip_Pickup_DateTime': '2009-06-12 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747267, 'End_Lon': -73.915932, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751975, 'Start_Lon': -74.004685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.34, 'Trip_Dropoff_DateTime': '2009-06-15 00:51:00', 'Trip_Pickup_DateTime': '2009-06-15 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72924, 'End_Lon': -73.992108, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757447, 'Start_Lon': -73.9715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-14 19:10:00', 'Trip_Pickup_DateTime': '2009-06-14 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764158, 'End_Lon': -73.964578, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752978, 'Start_Lon': -73.966625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-14 13:02:00', 'Trip_Pickup_DateTime': '2009-06-14 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727035, 'End_Lon': -73.979835, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739113, 'Start_Lon': -73.98335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-13 23:03:00', 'Trip_Pickup_DateTime': '2009-06-13 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760445, 'End_Lon': -73.976782, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742655, 'Start_Lon': -73.996402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-10 17:22:00', 'Trip_Pickup_DateTime': '2009-06-10 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756793, 'End_Lon': -73.963875, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755902, 'Start_Lon': -73.970662, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-10 17:36:00', 'Trip_Pickup_DateTime': '2009-06-10 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768815, 'End_Lon': -73.862353, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721537, 'Start_Lon': -73.844602, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-10 17:36:00', 'Trip_Pickup_DateTime': '2009-06-10 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.674987, 'End_Lon': -73.972708, 'Fare_Amt': 20.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736383, 'Start_Lon': -73.974578, 'Tip_Amt': 5.27, 'Tolls_Amt': 0.0, 'Total_Amt': 26.37, 'Trip_Distance': 6.79, 'Trip_Dropoff_DateTime': '2009-06-10 17:50:00', 'Trip_Pickup_DateTime': '2009-06-10 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734478, 'End_Lon': -73.989687, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75502, 'Start_Lon': -73.968563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-14 19:25:00', 'Trip_Pickup_DateTime': '2009-06-14 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783677, 'End_Lon': -73.947467, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785937, 'Start_Lon': -73.950927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-14 14:03:00', 'Trip_Pickup_DateTime': '2009-06-14 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740012, 'End_Lon': -73.981572, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727673, 'Start_Lon': -73.985185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-14 17:57:00', 'Trip_Pickup_DateTime': '2009-06-14 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757047, 'End_Lon': -73.972238, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764657, 'Start_Lon': -73.984342, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-24 07:50:00', 'Trip_Pickup_DateTime': '2009-06-24 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77554, 'End_Lon': -73.864505, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77554, 'Start_Lon': -73.864505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-30 14:46:00', 'Trip_Pickup_DateTime': '2009-06-30 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724697, 'End_Lon': -74.000652, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738187, 'Start_Lon': -73.991548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-23 14:14:00', 'Trip_Pickup_DateTime': '2009-06-23 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780152, 'End_Lon': -73.961283, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760723, 'Start_Lon': -73.982325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-30 15:17:00', 'Trip_Pickup_DateTime': '2009-06-30 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755852, 'End_Lon': -73.978663, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7541, 'Start_Lon': -73.973753, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-29 14:42:00', 'Trip_Pickup_DateTime': '2009-06-29 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803008, 'End_Lon': -73.949117, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801653, 'Start_Lon': -73.948185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-29 22:56:00', 'Trip_Pickup_DateTime': '2009-06-29 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.822388, 'End_Lon': -73.942283, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748528, 'Start_Lon': -73.993892, 'Tip_Amt': 3.9, 'Tolls_Amt': 0.0, 'Total_Amt': 24.0, 'Trip_Distance': 5.92, 'Trip_Dropoff_DateTime': '2009-06-30 11:44:00', 'Trip_Pickup_DateTime': '2009-06-30 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81314, 'End_Lon': -73.960022, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783633, 'Start_Lon': -73.980607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-29 18:31:00', 'Trip_Pickup_DateTime': '2009-06-29 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747227, 'End_Lon': -74.056468, 'Fare_Amt': 40.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724295, 'Start_Lon': -74.006317, 'Tip_Amt': 2.5, 'Tolls_Amt': 8.0, 'Total_Amt': 50.5, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-30 23:42:00', 'Trip_Pickup_DateTime': '2009-06-30 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722728, 'End_Lon': -73.988918, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749825, 'Start_Lon': -73.9914, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-30 22:35:00', 'Trip_Pickup_DateTime': '2009-06-30 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706578, 'End_Lon': -74.01742, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743625, 'Start_Lon': -73.999637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-29 22:04:00', 'Trip_Pickup_DateTime': '2009-06-29 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788557, 'End_Lon': -73.969002, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76049, 'Start_Lon': -73.975832, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-30 20:52:00', 'Trip_Pickup_DateTime': '2009-06-30 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735052, 'End_Lon': -73.991298, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731493, 'Start_Lon': -74.001143, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-29 23:13:00', 'Trip_Pickup_DateTime': '2009-06-29 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790578, 'End_Lon': -73.972742, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766953, 'Start_Lon': -73.953833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-29 20:19:00', 'Trip_Pickup_DateTime': '2009-06-29 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734655, 'End_Lon': -73.98453, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764738, 'Start_Lon': -73.977803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-29 12:15:00', 'Trip_Pickup_DateTime': '2009-06-29 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770262, 'End_Lon': -73.964638, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762627, 'Start_Lon': -73.987028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-29 19:21:00', 'Trip_Pickup_DateTime': '2009-06-29 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752952, 'End_Lon': -73.973908, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.809273, 'Start_Lon': -73.948967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-27 02:30:00', 'Trip_Pickup_DateTime': '2009-06-27 02:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.807935, 'End_Lon': -73.964175, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.815173, 'Start_Lon': -73.959, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-30 18:53:00', 'Trip_Pickup_DateTime': '2009-06-30 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70243, 'End_Lon': -74.013673, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711803, 'Start_Lon': -74.010395, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-25 23:50:00', 'Trip_Pickup_DateTime': '2009-06-25 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740488, 'End_Lon': -73.989255, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743082, 'Start_Lon': -74.007538, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-30 22:43:00', 'Trip_Pickup_DateTime': '2009-06-30 22:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762412, 'End_Lon': -73.989185, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743405, 'Start_Lon': -73.999948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-30 22:20:00', 'Trip_Pickup_DateTime': '2009-06-30 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759138, 'End_Lon': -73.974553, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744102, 'Start_Lon': -73.98555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-30 17:04:00', 'Trip_Pickup_DateTime': '2009-06-30 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738788, 'End_Lon': -73.991688, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757158, 'Start_Lon': -73.964113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-30 09:24:00', 'Trip_Pickup_DateTime': '2009-06-30 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7448, 'End_Lon': -73.991328, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705725, 'Start_Lon': -74.015568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-29 12:58:00', 'Trip_Pickup_DateTime': '2009-06-29 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741783, 'End_Lon': -73.974903, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73314, 'Start_Lon': -74.002372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-30 22:58:00', 'Trip_Pickup_DateTime': '2009-06-30 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75981, 'End_Lon': -73.966205, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756068, 'Start_Lon': -73.986355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 5.0, 'Trip_Dropoff_DateTime': '2009-06-29 21:22:00', 'Trip_Pickup_DateTime': '2009-06-29 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729265, 'End_Lon': -73.987255, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754735, 'Start_Lon': -73.991433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-29 11:37:00', 'Trip_Pickup_DateTime': '2009-06-29 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750688, 'End_Lon': -73.97912, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741803, 'Start_Lon': -74.001247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-30 15:20:00', 'Trip_Pickup_DateTime': '2009-06-30 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774935, 'End_Lon': -73.953958, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784657, 'Start_Lon': -73.947055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-18 19:25:00', 'Trip_Pickup_DateTime': '2009-06-18 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746297, 'End_Lon': -73.974187, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770455, 'Start_Lon': -73.94814, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-30 12:25:00', 'Trip_Pickup_DateTime': '2009-06-30 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790665, 'End_Lon': -73.945202, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788982, 'Start_Lon': -73.97061, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-30 13:15:00', 'Trip_Pickup_DateTime': '2009-06-30 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74549, 'End_Lon': -73.980238, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749788, 'Start_Lon': -73.976937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-30 16:06:00', 'Trip_Pickup_DateTime': '2009-06-30 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801055, 'End_Lon': -73.943382, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750743, 'Start_Lon': -73.974827, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-30 20:37:00', 'Trip_Pickup_DateTime': '2009-06-30 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75861, 'End_Lon': -73.987975, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740542, 'Start_Lon': -73.986487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-29 19:05:00', 'Trip_Pickup_DateTime': '2009-06-29 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.577933, 'End_Lon': -73.954137, 'Fare_Amt': 48.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764097, 'Start_Lon': -73.954352, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 53.25, 'Trip_Distance': 20.57, 'Trip_Dropoff_DateTime': '2009-06-18 19:01:00', 'Trip_Pickup_DateTime': '2009-06-18 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75774, 'End_Lon': -73.973825, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753852, 'Start_Lon': -73.967755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-16 15:06:00', 'Trip_Pickup_DateTime': '2009-06-16 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759595, 'End_Lon': -73.973902, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746298, 'Start_Lon': -73.981972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-30 07:18:00', 'Trip_Pickup_DateTime': '2009-06-30 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757658, 'End_Lon': -73.970563, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76101, 'Start_Lon': -73.978643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-30 20:40:00', 'Trip_Pickup_DateTime': '2009-06-30 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76333, 'End_Lon': -73.988127, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739397, 'Start_Lon': -74.003718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-29 15:34:00', 'Trip_Pickup_DateTime': '2009-06-29 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783392, 'End_Lon': -73.944705, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776962, 'Start_Lon': -73.957458, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-30 18:07:00', 'Trip_Pickup_DateTime': '2009-06-30 18:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707803, 'End_Lon': -74.012247, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780085, 'Start_Lon': -73.984377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.79, 'Trip_Dropoff_DateTime': '2009-06-30 16:25:00', 'Trip_Pickup_DateTime': '2009-06-30 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714458, 'End_Lon': -73.842912, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768478, 'Start_Lon': -73.982428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 10.96, 'Trip_Dropoff_DateTime': '2009-06-30 22:25:00', 'Trip_Pickup_DateTime': '2009-06-30 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714588, 'End_Lon': -74.009877, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758392, 'Start_Lon': -73.969485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.66, 'Trip_Dropoff_DateTime': '2009-06-30 20:40:00', 'Trip_Pickup_DateTime': '2009-06-30 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7799, 'End_Lon': -73.944643, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788655, 'Start_Lon': -73.955038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-15 16:17:00', 'Trip_Pickup_DateTime': '2009-06-15 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757643, 'End_Lon': -73.980487, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742903, 'Start_Lon': -73.992708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-29 20:12:00', 'Trip_Pickup_DateTime': '2009-06-29 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75953, 'End_Lon': -73.978597, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78009, 'Start_Lon': -73.954998, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-30 10:03:00', 'Trip_Pickup_DateTime': '2009-06-30 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749502, 'End_Lon': -73.992405, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761452, 'Start_Lon': -73.96813, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-29 14:19:00', 'Trip_Pickup_DateTime': '2009-06-29 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757708, 'End_Lon': -73.985367, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725358, 'Start_Lon': -73.996992, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-30 12:56:00', 'Trip_Pickup_DateTime': '2009-06-30 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749385, 'End_Lon': -73.993493, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75617, 'Start_Lon': -73.989223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-14 02:24:00', 'Trip_Pickup_DateTime': '2009-06-14 02:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748695, 'End_Lon': -73.98745, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753178, 'Start_Lon': -73.976458, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-29 19:40:00', 'Trip_Pickup_DateTime': '2009-06-29 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7732, 'End_Lon': -73.946797, 'Fare_Amt': 10.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75966, 'Start_Lon': -73.974722, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-29 13:41:00', 'Trip_Pickup_DateTime': '2009-06-29 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742317, 'End_Lon': -74.000547, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74087, 'Start_Lon': -74.007613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-29 20:38:00', 'Trip_Pickup_DateTime': '2009-06-29 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75198, 'End_Lon': -73.982038, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788947, 'Start_Lon': -73.955047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-29 11:53:00', 'Trip_Pickup_DateTime': '2009-06-29 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771273, 'End_Lon': -73.981617, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770307, 'Start_Lon': -73.971485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-30 12:28:00', 'Trip_Pickup_DateTime': '2009-06-30 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757882, 'End_Lon': -73.975335, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.653532, 'Start_Lon': -73.806938, 'Tip_Amt': 9.0, 'Tolls_Amt': 5.0, 'Total_Amt': 59.0, 'Trip_Distance': 16.23, 'Trip_Dropoff_DateTime': '2009-06-29 19:34:00', 'Trip_Pickup_DateTime': '2009-06-29 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747768, 'End_Lon': -73.973158, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772957, 'Start_Lon': -73.946292, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-24 14:32:00', 'Trip_Pickup_DateTime': '2009-06-24 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739055, 'End_Lon': -74.000777, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785788, 'Start_Lon': -73.976433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-30 00:55:00', 'Trip_Pickup_DateTime': '2009-06-30 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76676, 'End_Lon': -73.978807, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784418, 'Start_Lon': -73.980903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-29 18:21:00', 'Trip_Pickup_DateTime': '2009-06-29 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761398, 'End_Lon': -73.96719, 'Fare_Amt': 12.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759237, 'Start_Lon': -73.986215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-22 15:12:00', 'Trip_Pickup_DateTime': '2009-06-22 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761693, 'End_Lon': -73.982173, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.804188, 'Start_Lon': -73.966708, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-30 19:37:00', 'Trip_Pickup_DateTime': '2009-06-30 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757082, 'End_Lon': -73.963892, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749175, 'Start_Lon': -73.971763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-26 18:53:00', 'Trip_Pickup_DateTime': '2009-06-26 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733125, 'End_Lon': -74.006097, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760468, 'Start_Lon': -73.971217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-30 20:31:00', 'Trip_Pickup_DateTime': '2009-06-30 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744877, 'End_Lon': -73.98757, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75452, 'Start_Lon': -73.995417, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-25 18:42:00', 'Trip_Pickup_DateTime': '2009-06-25 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.866957, 'End_Lon': -73.92335, 'Fare_Amt': 19.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792182, 'Start_Lon': -73.952607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 7.42, 'Trip_Dropoff_DateTime': '2009-06-28 00:08:00', 'Trip_Pickup_DateTime': '2009-06-27 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778382, 'End_Lon': -73.974423, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774568, 'Start_Lon': -73.958068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-29 22:06:00', 'Trip_Pickup_DateTime': '2009-06-29 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72186, 'End_Lon': -74.00425, 'Fare_Amt': 28.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768983, 'Start_Lon': -73.86272, 'Tip_Amt': 5.62, 'Tolls_Amt': 0.0, 'Total_Amt': 33.72, 'Trip_Distance': 10.85, 'Trip_Dropoff_DateTime': '2009-06-25 14:12:00', 'Trip_Pickup_DateTime': '2009-06-25 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736707, 'End_Lon': -73.989192, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743623, 'Start_Lon': -73.976882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-30 08:38:00', 'Trip_Pickup_DateTime': '2009-06-30 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773975, 'End_Lon': -73.870707, 'Fare_Amt': 25.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774325, 'Start_Lon': -73.982925, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.45, 'Trip_Distance': 10.49, 'Trip_Dropoff_DateTime': '2009-06-25 08:04:00', 'Trip_Pickup_DateTime': '2009-06-25 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750607, 'End_Lon': -73.994722, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723387, 'Start_Lon': -74.007833, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-30 14:20:00', 'Trip_Pickup_DateTime': '2009-06-30 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77974, 'End_Lon': -73.981743, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810308, 'Start_Lon': -73.962417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-30 12:42:00', 'Trip_Pickup_DateTime': '2009-06-30 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749509, 'End_Lon': -73.975446, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.754353, 'Start_Lon': -73.986567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-22 11:45:04', 'Trip_Pickup_DateTime': '2009-06-22 11:39:41', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.773728, 'End_Lon': -73.949637, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773263, 'Start_Lon': -73.96169, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-30 15:56:00', 'Trip_Pickup_DateTime': '2009-06-30 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810242, 'End_Lon': -73.957693, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782777, 'Start_Lon': -73.973993, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-30 08:13:00', 'Trip_Pickup_DateTime': '2009-06-30 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733837, 'End_Lon': -74.002268, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728138, 'Start_Lon': -73.985058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-25 04:43:00', 'Trip_Pickup_DateTime': '2009-06-25 04:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7654, 'End_Lon': -73.963912, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785543, 'Start_Lon': -73.969512, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-15 16:10:00', 'Trip_Pickup_DateTime': '2009-06-15 15:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740678, 'End_Lon': -74.00483, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710612, 'Start_Lon': -73.965472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.96, 'Trip_Dropoff_DateTime': '2009-06-30 22:15:00', 'Trip_Pickup_DateTime': '2009-06-30 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736975, 'End_Lon': -74.006187, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763252, 'Start_Lon': -73.973662, 'Tip_Amt': 3.02, 'Tolls_Amt': 0.0, 'Total_Amt': 18.12, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-25 19:56:00', 'Trip_Pickup_DateTime': '2009-06-25 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774055, 'End_Lon': -73.870988, 'Fare_Amt': 26.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754523, 'Start_Lon': -73.985883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.9, 'Trip_Distance': 11.3, 'Trip_Dropoff_DateTime': '2009-06-30 09:32:00', 'Trip_Pickup_DateTime': '2009-06-30 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71996, 'End_Lon': -74.008732, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744275, 'Start_Lon': -73.981152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-30 21:13:00', 'Trip_Pickup_DateTime': '2009-06-30 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749585, 'End_Lon': -73.987265, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75924, 'Start_Lon': -73.976153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-29 20:18:00', 'Trip_Pickup_DateTime': '2009-06-29 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760825, 'End_Lon': -73.996235, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76476, 'Start_Lon': -73.980703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-29 21:20:00', 'Trip_Pickup_DateTime': '2009-06-29 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758105, 'End_Lon': -74.000668, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756005, 'Start_Lon': -73.982187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-30 09:10:00', 'Trip_Pickup_DateTime': '2009-06-30 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752805, 'End_Lon': -73.98144, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764127, 'Start_Lon': -73.968085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-30 13:15:00', 'Trip_Pickup_DateTime': '2009-06-30 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758888, 'End_Lon': -73.972563, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749332, 'Start_Lon': -73.975407, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-30 07:07:00', 'Trip_Pickup_DateTime': '2009-06-30 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757173, 'End_Lon': -73.971518, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769333, 'Start_Lon': -73.958068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-29 22:39:00', 'Trip_Pickup_DateTime': '2009-06-29 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.803612, 'End_Lon': -73.967715, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777803, 'Start_Lon': -73.951082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-30 20:24:00', 'Trip_Pickup_DateTime': '2009-06-30 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744455, 'End_Lon': -73.981212, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75361, 'Start_Lon': -73.975703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-29 13:42:00', 'Trip_Pickup_DateTime': '2009-06-29 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716408, 'End_Lon': -73.996565, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762463, 'Start_Lon': -73.98261, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-11 19:15:00', 'Trip_Pickup_DateTime': '2009-06-11 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759265, 'End_Lon': -73.914387, 'Fare_Amt': 31.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646797, 'Start_Lon': -73.789337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.7, 'Trip_Distance': 13.44, 'Trip_Dropoff_DateTime': '2009-06-27 16:52:00', 'Trip_Pickup_DateTime': '2009-06-27 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744628, 'End_Lon': -73.982912, 'Fare_Amt': 30.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768813, 'Start_Lon': -73.86278, 'Tip_Amt': 5.5, 'Tolls_Amt': 4.15, 'Total_Amt': 39.75, 'Trip_Distance': 11.79, 'Trip_Dropoff_DateTime': '2009-06-30 09:12:00', 'Trip_Pickup_DateTime': '2009-06-30 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767823, 'End_Lon': -73.964065, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772505, 'Start_Lon': -73.967212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-26 13:34:00', 'Trip_Pickup_DateTime': '2009-06-26 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788332, 'End_Lon': -73.98107, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769412, 'Start_Lon': -73.982053, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-30 20:41:00', 'Trip_Pickup_DateTime': '2009-06-30 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76812, 'End_Lon': -73.952833, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761903, 'Start_Lon': -73.98099, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-30 19:53:00', 'Trip_Pickup_DateTime': '2009-06-30 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76607, 'End_Lon': -73.98316, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743307, 'Start_Lon': -74.007468, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-25 16:44:00', 'Trip_Pickup_DateTime': '2009-06-25 16:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788192, 'End_Lon': -73.976112, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80531, 'Start_Lon': -73.96547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-30 18:55:00', 'Trip_Pickup_DateTime': '2009-06-30 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757655, 'End_Lon': -73.984496, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.744537, 'Start_Lon': -73.985495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-17 10:07:42', 'Trip_Pickup_DateTime': '2009-06-17 09:55:33', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.752888, 'End_Lon': -73.988975, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730595, 'Start_Lon': -73.982722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-29 14:02:00', 'Trip_Pickup_DateTime': '2009-06-29 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761777, 'End_Lon': -73.972648, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756015, 'Start_Lon': -73.976722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-29 18:32:00', 'Trip_Pickup_DateTime': '2009-06-29 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768758, 'End_Lon': -73.966423, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74821, 'Start_Lon': -73.996628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-12 08:07:00', 'Trip_Pickup_DateTime': '2009-06-12 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76636, 'End_Lon': -73.954172, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777085, 'Start_Lon': -73.946445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-25 13:03:00', 'Trip_Pickup_DateTime': '2009-06-25 12:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746582, 'End_Lon': -73.979933, 'Fare_Amt': 14.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789695, 'Start_Lon': -73.966207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-23 08:55:00', 'Trip_Pickup_DateTime': '2009-06-23 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74195, 'End_Lon': -73.97481, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731602, 'Start_Lon': -74.000898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-22 16:03:00', 'Trip_Pickup_DateTime': '2009-06-22 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789142, 'End_Lon': -73.97632, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784517, 'Start_Lon': -73.979328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-23 18:38:00', 'Trip_Pickup_DateTime': '2009-06-23 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734373, 'End_Lon': -73.992012, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74373, 'Start_Lon': -73.984725, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-22 16:59:00', 'Trip_Pickup_DateTime': '2009-06-22 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78073, 'End_Lon': -73.976358, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770052, 'Start_Lon': -73.96033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-26 11:49:00', 'Trip_Pickup_DateTime': '2009-06-26 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740563, 'End_Lon': -74.005655, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725515, 'Start_Lon': -73.983913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-22 19:39:00', 'Trip_Pickup_DateTime': '2009-06-22 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744477, 'End_Lon': -73.985352, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736137, 'Start_Lon': -73.991758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-28 01:26:00', 'Trip_Pickup_DateTime': '2009-06-28 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773402, 'End_Lon': -73.955613, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759178, 'Start_Lon': -73.980978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-29 19:44:00', 'Trip_Pickup_DateTime': '2009-06-29 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747477, 'End_Lon': -73.98523, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76166, 'Start_Lon': -73.974987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-27 16:15:00', 'Trip_Pickup_DateTime': '2009-06-27 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.686985, 'End_Lon': -73.990285, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712035, 'Start_Lon': -74.006272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-26 20:23:00', 'Trip_Pickup_DateTime': '2009-06-26 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760357, 'End_Lon': -73.981627, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760357, 'Start_Lon': -73.981627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-26 13:23:00', 'Trip_Pickup_DateTime': '2009-06-26 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738818, 'End_Lon': -73.98462, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778362, 'Start_Lon': -73.956732, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-29 00:15:00', 'Trip_Pickup_DateTime': '2009-06-29 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759748, 'End_Lon': -73.973557, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778117, 'Start_Lon': -73.952098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-24 07:02:00', 'Trip_Pickup_DateTime': '2009-06-24 06:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667265, 'End_Lon': -73.922775, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71837, 'Start_Lon': -73.988075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.15, 'Trip_Dropoff_DateTime': '2009-06-30 00:44:00', 'Trip_Pickup_DateTime': '2009-06-30 00:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758105, 'End_Lon': -73.992777, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777797, 'Start_Lon': -73.987813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-29 08:13:00', 'Trip_Pickup_DateTime': '2009-06-29 08:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779492, 'End_Lon': -73.98475, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762582, 'Start_Lon': -73.987092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-23 15:55:00', 'Trip_Pickup_DateTime': '2009-06-23 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75864, 'End_Lon': -74.000242, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7594, 'Start_Lon': -73.984202, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-29 09:37:00', 'Trip_Pickup_DateTime': '2009-06-29 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766232, 'End_Lon': -73.96281, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775167, 'Start_Lon': -73.949892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-29 11:33:00', 'Trip_Pickup_DateTime': '2009-06-29 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742472, 'End_Lon': -73.984608, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766558, 'Start_Lon': -73.978313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-23 19:24:00', 'Trip_Pickup_DateTime': '2009-06-23 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719685, 'End_Lon': -73.987572, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712425, 'Start_Lon': -74.009733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-27 22:23:00', 'Trip_Pickup_DateTime': '2009-06-27 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758012, 'End_Lon': -74.000762, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758777, 'Start_Lon': -73.985813, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-29 08:25:00', 'Trip_Pickup_DateTime': '2009-06-29 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644827, 'End_Lon': -73.776712, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746155, 'Start_Lon': -73.976372, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.37, 'Trip_Dropoff_DateTime': '2009-06-27 11:54:00', 'Trip_Pickup_DateTime': '2009-06-27 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763123, 'End_Lon': -73.992875, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743907, 'Start_Lon': -73.972027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-26 23:49:00', 'Trip_Pickup_DateTime': '2009-06-26 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769683, 'End_Lon': -73.982067, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763433, 'Start_Lon': -73.985733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-22 12:53:00', 'Trip_Pickup_DateTime': '2009-06-22 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740763, 'End_Lon': -74.001258, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739985, 'Start_Lon': -73.978105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-27 23:12:00', 'Trip_Pickup_DateTime': '2009-06-27 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720227, 'End_Lon': -73.813543, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721425, 'Start_Lon': -73.843755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-23 01:07:00', 'Trip_Pickup_DateTime': '2009-06-23 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747175, 'End_Lon': -73.977452, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758545, 'Start_Lon': -73.981087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-27 18:48:00', 'Trip_Pickup_DateTime': '2009-06-27 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75822, 'End_Lon': -73.992393, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774317, 'Start_Lon': -73.982322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-22 14:31:00', 'Trip_Pickup_DateTime': '2009-06-22 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757162, 'End_Lon': -73.97548, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75769, 'Start_Lon': -73.990732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-26 08:04:00', 'Trip_Pickup_DateTime': '2009-06-26 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726007, 'End_Lon': -73.948652, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7239, 'Start_Lon': -73.979228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-26 22:55:00', 'Trip_Pickup_DateTime': '2009-06-26 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755433, 'End_Lon': -73.985228, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74974, 'Start_Lon': -73.991342, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-25 22:00:00', 'Trip_Pickup_DateTime': '2009-06-25 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757553, 'End_Lon': -73.98713, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750223, 'Start_Lon': -73.992083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-27 12:38:00', 'Trip_Pickup_DateTime': '2009-06-27 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748205, 'End_Lon': -73.98873, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75144, 'Start_Lon': -73.985817, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-28 05:55:00', 'Trip_Pickup_DateTime': '2009-06-28 05:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731013, 'End_Lon': -73.996343, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729123, 'Start_Lon': -73.99799, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.3, 'Trip_Distance': 12.57, 'Trip_Dropoff_DateTime': '2009-06-27 10:08:00', 'Trip_Pickup_DateTime': '2009-06-27 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68685, 'End_Lon': -73.98444, 'Fare_Amt': 27.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76886, 'Start_Lon': -73.865727, 'Tip_Amt': 5.46, 'Tolls_Amt': 0.0, 'Total_Amt': 32.76, 'Trip_Distance': 11.33, 'Trip_Dropoff_DateTime': '2009-06-27 09:50:00', 'Trip_Pickup_DateTime': '2009-06-27 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695928, 'End_Lon': -73.995768, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745298, 'Start_Lon': -74.008485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.18, 'Trip_Dropoff_DateTime': '2009-06-27 12:18:00', 'Trip_Pickup_DateTime': '2009-06-27 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719102, 'End_Lon': -74.004632, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737202, 'Start_Lon': -73.987773, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-27 18:28:00', 'Trip_Pickup_DateTime': '2009-06-27 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729935, 'End_Lon': -73.986712, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762705, 'Start_Lon': -73.989537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-27 23:11:00', 'Trip_Pickup_DateTime': '2009-06-27 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783253, 'End_Lon': -73.978653, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757598, 'Start_Lon': -73.982562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-29 22:19:00', 'Trip_Pickup_DateTime': '2009-06-29 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718343, 'End_Lon': -74.005182, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720217, 'Start_Lon': -74.010355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-26 16:19:00', 'Trip_Pickup_DateTime': '2009-06-26 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734937, 'End_Lon': -73.988392, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72857, 'Start_Lon': -74.001418, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-28 17:26:00', 'Trip_Pickup_DateTime': '2009-06-28 17:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763495, 'End_Lon': -73.978042, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75983, 'Start_Lon': -73.970188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-27 18:51:00', 'Trip_Pickup_DateTime': '2009-06-27 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74657, 'End_Lon': -73.995577, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783335, 'Start_Lon': -73.959035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-27 09:11:00', 'Trip_Pickup_DateTime': '2009-06-27 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760192, 'End_Lon': -73.986485, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768502, 'Start_Lon': -73.984805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-25 18:11:00', 'Trip_Pickup_DateTime': '2009-06-25 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788242, 'End_Lon': -73.976633, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737913, 'Start_Lon': -73.97791, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-25 13:47:00', 'Trip_Pickup_DateTime': '2009-06-25 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758057, 'End_Lon': -73.999663, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738437, 'Start_Lon': -73.996015, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-25 18:59:00', 'Trip_Pickup_DateTime': '2009-06-25 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731008, 'End_Lon': -73.986982, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724437, 'Start_Lon': -74.002285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-27 16:01:00', 'Trip_Pickup_DateTime': '2009-06-27 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757915, 'End_Lon': -73.97461, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711737, 'Start_Lon': -74.00723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.43, 'Trip_Dropoff_DateTime': '2009-06-26 13:39:00', 'Trip_Pickup_DateTime': '2009-06-26 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784212, 'End_Lon': -73.950072, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745648, 'Start_Lon': -73.982272, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-25 21:04:00', 'Trip_Pickup_DateTime': '2009-06-25 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70591, 'End_Lon': -74.016362, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760738, 'Start_Lon': -73.962475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.98, 'Trip_Dropoff_DateTime': '2009-06-27 04:37:00', 'Trip_Pickup_DateTime': '2009-06-27 04:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745055, 'End_Lon': -74.008148, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739413, 'Start_Lon': -73.980872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-27 02:28:00', 'Trip_Pickup_DateTime': '2009-06-27 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770515, 'End_Lon': -73.86503, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753422, 'Start_Lon': -73.969683, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.05, 'Trip_Distance': 8.48, 'Trip_Dropoff_DateTime': '2009-06-25 18:34:00', 'Trip_Pickup_DateTime': '2009-06-25 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755997, 'End_Lon': -73.973145, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761248, 'Start_Lon': -73.986877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-22 22:54:00', 'Trip_Pickup_DateTime': '2009-06-22 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736422, 'End_Lon': -74.00176, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740348, 'Start_Lon': -73.988868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-19 15:56:00', 'Trip_Pickup_DateTime': '2009-06-19 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75466, 'End_Lon': -73.966535, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771772, 'Start_Lon': -73.96767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-28 13:18:00', 'Trip_Pickup_DateTime': '2009-06-28 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750112, 'End_Lon': -73.99404, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785128, 'Start_Lon': -73.953717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-23 05:52:00', 'Trip_Pickup_DateTime': '2009-06-23 05:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765175, 'End_Lon': -73.97964, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7632, 'Start_Lon': -73.985528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-25 08:55:00', 'Trip_Pickup_DateTime': '2009-06-25 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747647, 'End_Lon': -73.984425, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765917, 'Start_Lon': -73.965217, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-25 18:34:00', 'Trip_Pickup_DateTime': '2009-06-25 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.813772, 'End_Lon': -73.947953, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789092, 'Start_Lon': -73.952672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-27 17:04:00', 'Trip_Pickup_DateTime': '2009-06-27 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755255, 'End_Lon': -73.979743, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749608, 'Start_Lon': -73.975712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-30 10:07:00', 'Trip_Pickup_DateTime': '2009-06-30 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772865, 'End_Lon': -73.989692, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725693, 'Start_Lon': -73.997575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.26, 'Trip_Dropoff_DateTime': '2009-06-24 23:11:00', 'Trip_Pickup_DateTime': '2009-06-24 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.801633, 'End_Lon': -73.965005, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743435, 'Start_Lon': -73.993292, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 4.9, 'Trip_Dropoff_DateTime': '2009-06-26 00:04:00', 'Trip_Pickup_DateTime': '2009-06-25 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740197, 'End_Lon': -73.998405, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746553, 'Start_Lon': -73.981847, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-25 20:25:00', 'Trip_Pickup_DateTime': '2009-06-25 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780378, 'End_Lon': -73.958082, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772412, 'Start_Lon': -73.958712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-26 10:34:00', 'Trip_Pickup_DateTime': '2009-06-26 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769018, 'End_Lon': -73.943115, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76369, 'Start_Lon': -73.978593, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-23 20:55:00', 'Trip_Pickup_DateTime': '2009-06-23 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76492, 'End_Lon': -73.963398, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758905, 'Start_Lon': -73.989295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-24 22:21:00', 'Trip_Pickup_DateTime': '2009-06-24 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746308, 'End_Lon': -74.000788, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742873, 'Start_Lon': -73.984802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-23 19:00:00', 'Trip_Pickup_DateTime': '2009-06-23 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734045, 'End_Lon': -73.998792, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761067, 'Start_Lon': -73.971297, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-23 20:38:00', 'Trip_Pickup_DateTime': '2009-06-23 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758735, 'End_Lon': -73.98204, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759595, 'Start_Lon': -73.981002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-23 16:23:00', 'Trip_Pickup_DateTime': '2009-06-23 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777725, 'End_Lon': -73.950963, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780918, 'Start_Lon': -73.958503, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-28 19:09:00', 'Trip_Pickup_DateTime': '2009-06-28 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760387, 'End_Lon': -73.964727, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741953, 'Start_Lon': -73.980535, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-24 04:55:00', 'Trip_Pickup_DateTime': '2009-06-24 04:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804813, 'End_Lon': -73.954365, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75758, 'Start_Lon': -73.970212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.4, 'Trip_Dropoff_DateTime': '2009-06-24 00:11:00', 'Trip_Pickup_DateTime': '2009-06-23 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761887, 'End_Lon': -73.966168, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762143, 'Start_Lon': -73.989883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-28 20:07:00', 'Trip_Pickup_DateTime': '2009-06-28 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767803, 'End_Lon': -73.969503, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749367, 'Start_Lon': -73.98743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-30 12:00:00', 'Trip_Pickup_DateTime': '2009-06-30 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727245, 'End_Lon': -74.006065, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732023, 'Start_Lon': -74.003793, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-25 01:12:00', 'Trip_Pickup_DateTime': '2009-06-25 01:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773592, 'End_Lon': -73.96584, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76649, 'Start_Lon': -73.953715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-24 17:41:00', 'Trip_Pickup_DateTime': '2009-06-24 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760395, 'End_Lon': -73.970327, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780622, 'Start_Lon': -73.96128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-24 16:04:00', 'Trip_Pickup_DateTime': '2009-06-24 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756457, 'End_Lon': -73.973823, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72722, 'Start_Lon': -73.979623, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-24 07:32:00', 'Trip_Pickup_DateTime': '2009-06-24 07:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737983, 'End_Lon': -73.989158, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752913, 'Start_Lon': -73.978258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-26 18:32:00', 'Trip_Pickup_DateTime': '2009-06-26 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754853, 'End_Lon': -73.965425, 'Fare_Amt': 14.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706102, 'Start_Lon': -74.003335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.86, 'Trip_Dropoff_DateTime': '2009-06-25 22:03:00', 'Trip_Pickup_DateTime': '2009-06-25 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757677, 'End_Lon': -73.988817, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743075, 'Start_Lon': -73.984425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-23 20:22:00', 'Trip_Pickup_DateTime': '2009-06-23 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757108, 'End_Lon': -73.9829, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749392, 'Start_Lon': -73.991818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-23 19:01:00', 'Trip_Pickup_DateTime': '2009-06-23 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77712, 'End_Lon': -73.978742, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773352, 'Start_Lon': -73.962163, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-23 15:24:00', 'Trip_Pickup_DateTime': '2009-06-23 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.866005, 'End_Lon': -74.16543, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.8933, 'Start_Lon': -74.150528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-23 00:03:00', 'Trip_Pickup_DateTime': '2009-06-22 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756763, 'End_Lon': -73.99031, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755798, 'Start_Lon': -73.972953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-22 20:30:00', 'Trip_Pickup_DateTime': '2009-06-22 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756637, 'End_Lon': -73.975403, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76504, 'Start_Lon': -73.97648, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-24 07:22:00', 'Trip_Pickup_DateTime': '2009-06-24 07:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800605, 'End_Lon': -73.969125, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77251, 'Start_Lon': -73.964928, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-23 18:38:00', 'Trip_Pickup_DateTime': '2009-06-23 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796595, 'End_Lon': -73.974458, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78044, 'Start_Lon': -73.98033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-22 17:33:00', 'Trip_Pickup_DateTime': '2009-06-22 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766532, 'End_Lon': -73.967043, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761103, 'Start_Lon': -73.983723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-23 18:21:00', 'Trip_Pickup_DateTime': '2009-06-23 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741722, 'End_Lon': -73.975085, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730302, 'Start_Lon': -73.997203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-22 13:30:00', 'Trip_Pickup_DateTime': '2009-06-22 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722862, 'End_Lon': -74.00186, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718762, 'Start_Lon': -73.988214, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-20 14:50:30', 'Trip_Pickup_DateTime': '2009-06-20 14:40:40', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.754607, 'End_Lon': -73.856815, 'Fare_Amt': 21.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770822, 'Start_Lon': -73.956767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.3, 'Trip_Distance': 7.51, 'Trip_Dropoff_DateTime': '2009-06-18 19:28:00', 'Trip_Pickup_DateTime': '2009-06-18 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77369, 'End_Lon': -73.963632, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757348, 'Start_Lon': -73.963892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-28 13:48:00', 'Trip_Pickup_DateTime': '2009-06-28 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742927, 'End_Lon': -73.992692, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738927, 'Start_Lon': -73.995735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-29 13:56:00', 'Trip_Pickup_DateTime': '2009-06-29 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791052, 'End_Lon': -73.975757, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783648, 'Start_Lon': -73.981855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-30 14:56:00', 'Trip_Pickup_DateTime': '2009-06-30 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730595, 'End_Lon': -73.990518, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778752, 'Start_Lon': -73.953422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.91, 'Trip_Dropoff_DateTime': '2009-06-25 15:49:00', 'Trip_Pickup_DateTime': '2009-06-25 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702288, 'End_Lon': -74.008562, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717617, 'Start_Lon': -74.015728, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-23 07:25:00', 'Trip_Pickup_DateTime': '2009-06-23 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757163, 'End_Lon': -73.960763, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756668, 'Start_Lon': -73.96067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-30 16:25:00', 'Trip_Pickup_DateTime': '2009-06-30 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780748, 'End_Lon': -73.960353, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769022, 'Start_Lon': -73.952188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-30 09:00:00', 'Trip_Pickup_DateTime': '2009-06-30 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754283, 'End_Lon': -73.977717, 'Fare_Amt': 22.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758735, 'Start_Lon': -73.977467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 5.42, 'Trip_Dropoff_DateTime': '2009-06-29 14:03:00', 'Trip_Pickup_DateTime': '2009-06-29 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762785, 'End_Lon': -73.994703, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733373, 'Start_Lon': -74.002545, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-24 23:49:00', 'Trip_Pickup_DateTime': '2009-06-24 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754737, 'End_Lon': -73.980098, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717197, 'Start_Lon': -74.014087, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-29 07:31:00', 'Trip_Pickup_DateTime': '2009-06-29 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791488, 'End_Lon': -73.946872, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77902, 'Start_Lon': -73.954042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-26 07:56:00', 'Trip_Pickup_DateTime': '2009-06-26 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.838485, 'End_Lon': -73.9415, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765198, 'Start_Lon': -73.98393, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 6.51, 'Trip_Dropoff_DateTime': '2009-06-24 20:36:00', 'Trip_Pickup_DateTime': '2009-06-24 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735375, 'End_Lon': -73.974678, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755137, 'Start_Lon': -73.975628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-24 18:31:00', 'Trip_Pickup_DateTime': '2009-06-24 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739843, 'End_Lon': -73.979615, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748422, 'Start_Lon': -73.984705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-26 16:35:00', 'Trip_Pickup_DateTime': '2009-06-26 16:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743638, 'End_Lon': -73.975068, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736268, 'Start_Lon': -73.988365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-27 03:58:00', 'Trip_Pickup_DateTime': '2009-06-27 03:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741323, 'End_Lon': -73.919898, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745138, 'Start_Lon': -73.978563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.4, 'Trip_Dropoff_DateTime': '2009-06-25 04:57:00', 'Trip_Pickup_DateTime': '2009-06-25 04:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74221, 'End_Lon': -73.99527, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739575, 'Start_Lon': -73.985137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-24 14:12:00', 'Trip_Pickup_DateTime': '2009-06-24 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721152, 'End_Lon': -74.00989, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713623, 'Start_Lon': -74.011985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-25 12:08:00', 'Trip_Pickup_DateTime': '2009-06-25 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721155, 'End_Lon': -74.009925, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769673, 'Start_Lon': -73.984655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.49, 'Trip_Dropoff_DateTime': '2009-06-25 07:24:00', 'Trip_Pickup_DateTime': '2009-06-25 07:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765548, 'End_Lon': -73.968273, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777608, 'Start_Lon': -73.954857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-24 18:52:00', 'Trip_Pickup_DateTime': '2009-06-24 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731412, 'End_Lon': -73.991662, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75911, 'Start_Lon': -73.984667, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-24 07:43:00', 'Trip_Pickup_DateTime': '2009-06-24 07:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750405, 'End_Lon': -73.969963, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754773, 'Start_Lon': -73.984377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-25 20:41:00', 'Trip_Pickup_DateTime': '2009-06-25 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751128, 'End_Lon': -73.990983, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766765, 'Start_Lon': -73.978378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-23 20:42:00', 'Trip_Pickup_DateTime': '2009-06-23 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752023, 'End_Lon': -73.979052, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73158, 'Start_Lon': -74.009112, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-24 22:59:00', 'Trip_Pickup_DateTime': '2009-06-24 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759778, 'End_Lon': -73.993733, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766105, 'Start_Lon': -73.965228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-23 20:37:00', 'Trip_Pickup_DateTime': '2009-06-23 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721432, 'End_Lon': -73.990235, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740992, 'Start_Lon': -74.007427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-25 04:51:00', 'Trip_Pickup_DateTime': '2009-06-25 04:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751632, 'End_Lon': -74.007672, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747252, 'Start_Lon': -73.996977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-26 18:42:00', 'Trip_Pickup_DateTime': '2009-06-26 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72901, 'End_Lon': -73.995532, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719547, 'Start_Lon': -74.00866, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-24 21:47:00', 'Trip_Pickup_DateTime': '2009-06-24 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746478, 'End_Lon': -73.956768, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763433, 'Start_Lon': -73.964367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-23 21:39:00', 'Trip_Pickup_DateTime': '2009-06-23 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711788, 'End_Lon': -74.004438, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.694623, 'Start_Lon': -73.996308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-26 07:05:00', 'Trip_Pickup_DateTime': '2009-06-26 06:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757953, 'End_Lon': -73.98953, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747643, 'Start_Lon': -73.985223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-24 08:19:00', 'Trip_Pickup_DateTime': '2009-06-24 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778945, 'End_Lon': -73.962347, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737922, 'Start_Lon': -73.977732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-23 12:45:00', 'Trip_Pickup_DateTime': '2009-06-23 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759728, 'End_Lon': -73.98684, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751235, 'Start_Lon': -73.994075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-25 14:13:00', 'Trip_Pickup_DateTime': '2009-06-25 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70786, 'End_Lon': -74.001508, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73504, 'Start_Lon': -74.001943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-28 17:50:00', 'Trip_Pickup_DateTime': '2009-06-28 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774438, 'End_Lon': -73.872852, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762623, 'Start_Lon': -73.963215, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.3, 'Trip_Distance': 8.54, 'Trip_Dropoff_DateTime': '2009-06-23 18:42:00', 'Trip_Pickup_DateTime': '2009-06-23 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762993, 'End_Lon': -73.95906, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776953, 'Start_Lon': -73.959553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-24 00:04:00', 'Trip_Pickup_DateTime': '2009-06-23 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.668853, 'End_Lon': -73.990815, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781588, 'Start_Lon': -73.946078, 'Tip_Amt': 5.8, 'Tolls_Amt': 0.0, 'Total_Amt': 34.8, 'Trip_Distance': 12.1, 'Trip_Dropoff_DateTime': '2009-06-25 00:19:00', 'Trip_Pickup_DateTime': '2009-06-24 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806773, 'End_Lon': -73.964683, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770542, 'Start_Lon': -73.981968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-23 20:32:00', 'Trip_Pickup_DateTime': '2009-06-23 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746382, 'End_Lon': -73.993982, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73962, 'Start_Lon': -73.995207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-24 17:45:00', 'Trip_Pickup_DateTime': '2009-06-24 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742808, 'End_Lon': -73.978732, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752005, 'Start_Lon': -73.976117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-24 08:14:00', 'Trip_Pickup_DateTime': '2009-06-24 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710705, 'End_Lon': -73.850797, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72614, 'Start_Lon': -73.846198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-24 15:32:00', 'Trip_Pickup_DateTime': '2009-06-24 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777387, 'End_Lon': -73.98094, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763835, 'Start_Lon': -73.971662, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-24 12:21:00', 'Trip_Pickup_DateTime': '2009-06-24 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768373, 'End_Lon': -73.963698, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73581, 'Start_Lon': -74.005067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.64, 'Trip_Dropoff_DateTime': '2009-06-26 21:32:00', 'Trip_Pickup_DateTime': '2009-06-26 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762698, 'End_Lon': -73.971513, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73368, 'Start_Lon': -74.006172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-24 13:47:00', 'Trip_Pickup_DateTime': '2009-06-24 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756408, 'End_Lon': -73.990253, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770038, 'Start_Lon': -73.951473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-26 16:53:00', 'Trip_Pickup_DateTime': '2009-06-26 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774953, 'End_Lon': -73.963115, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758593, 'Start_Lon': -73.969478, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-24 11:48:00', 'Trip_Pickup_DateTime': '2009-06-24 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704757, 'End_Lon': -74.017087, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75067, 'Start_Lon': -73.990903, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.76, 'Trip_Dropoff_DateTime': '2009-06-24 07:52:00', 'Trip_Pickup_DateTime': '2009-06-24 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719845, 'End_Lon': -74.010293, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800908, 'Start_Lon': -73.96904, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.94, 'Trip_Dropoff_DateTime': '2009-06-26 20:33:00', 'Trip_Pickup_DateTime': '2009-06-26 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77481, 'End_Lon': -73.903983, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751245, 'Start_Lon': -73.975138, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 6.31, 'Trip_Dropoff_DateTime': '2009-06-25 23:02:00', 'Trip_Pickup_DateTime': '2009-06-25 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758403, 'End_Lon': -73.97756, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761347, 'Start_Lon': -73.98254, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-25 12:06:00', 'Trip_Pickup_DateTime': '2009-06-25 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75031, 'End_Lon': -73.99126, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724663, 'Start_Lon': -73.998445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-28 17:29:00', 'Trip_Pickup_DateTime': '2009-06-28 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809002, 'End_Lon': -73.999395, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803352, 'Start_Lon': -73.989825, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-26 01:01:00', 'Trip_Pickup_DateTime': '2009-06-26 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747588, 'End_Lon': -73.989102, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725095, 'Start_Lon': -73.99612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-26 23:02:00', 'Trip_Pickup_DateTime': '2009-06-26 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733582, 'End_Lon': -73.993132, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728452, 'Start_Lon': -73.999572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-23 21:29:00', 'Trip_Pickup_DateTime': '2009-06-23 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782882, 'End_Lon': -73.973692, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778645, 'Start_Lon': -73.947896, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-20 18:58:56', 'Trip_Pickup_DateTime': '2009-06-20 18:50:07', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.7683, 'End_Lon': -73.961798, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73101, 'Start_Lon': -74.00152, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.87, 'Trip_Dropoff_DateTime': '2009-06-24 08:03:00', 'Trip_Pickup_DateTime': '2009-06-24 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75063, 'End_Lon': -73.98101, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77257, 'Start_Lon': -73.966752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-28 18:19:00', 'Trip_Pickup_DateTime': '2009-06-28 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760515, 'End_Lon': -73.986817, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741653, 'Start_Lon': -73.987407, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-23 23:05:00', 'Trip_Pickup_DateTime': '2009-06-23 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741768, 'End_Lon': -73.98092, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739938, 'Start_Lon': -74.006023, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-27 20:02:00', 'Trip_Pickup_DateTime': '2009-06-27 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757072, 'End_Lon': -73.989758, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75023, 'Start_Lon': -74.002422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-25 04:22:00', 'Trip_Pickup_DateTime': '2009-06-25 04:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787942, 'End_Lon': -73.94445, 'Fare_Amt': 10.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810617, 'Start_Lon': -73.961925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-26 12:24:00', 'Trip_Pickup_DateTime': '2009-06-26 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772865, 'End_Lon': -73.949955, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750475, 'Start_Lon': -73.976127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-22 11:47:00', 'Trip_Pickup_DateTime': '2009-06-22 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790015, 'End_Lon': -73.973237, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77391, 'Start_Lon': -73.982328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-23 16:59:00', 'Trip_Pickup_DateTime': '2009-06-23 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749965, 'End_Lon': -73.99496, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744572, 'Start_Lon': -73.996683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-26 20:22:00', 'Trip_Pickup_DateTime': '2009-06-26 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756577, 'End_Lon': -73.98163, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756077, 'Start_Lon': -73.989638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-24 03:21:00', 'Trip_Pickup_DateTime': '2009-06-24 03:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724045, 'End_Lon': -74.00328, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722458, 'Start_Lon': -73.987923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-26 02:44:00', 'Trip_Pickup_DateTime': '2009-06-26 02:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760152, 'End_Lon': -73.984952, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.703552, 'Start_Lon': -74.012143, 'Tip_Amt': 4.25, 'Tolls_Amt': 0.0, 'Total_Amt': 21.25, 'Trip_Distance': 5.22, 'Trip_Dropoff_DateTime': '2009-06-24 21:22:00', 'Trip_Pickup_DateTime': '2009-06-24 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734092, 'End_Lon': -73.986502, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761732, 'Start_Lon': -73.983568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-22 20:25:00', 'Trip_Pickup_DateTime': '2009-06-22 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721735, 'End_Lon': -73.995835, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74067, 'Start_Lon': -74.001907, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-22 19:44:00', 'Trip_Pickup_DateTime': '2009-06-22 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764023, 'End_Lon': -73.915298, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761322, 'Start_Lon': -73.923728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-23 01:23:00', 'Trip_Pickup_DateTime': '2009-06-23 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744598, 'End_Lon': -73.98099, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76012, 'Start_Lon': -73.991343, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-24 20:07:00', 'Trip_Pickup_DateTime': '2009-06-24 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.659522, 'End_Lon': -73.978358, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75455, 'Start_Lon': -73.977195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 9.91, 'Trip_Dropoff_DateTime': '2009-06-26 01:22:00', 'Trip_Pickup_DateTime': '2009-06-26 00:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734312, 'End_Lon': -74.006182, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735187, 'Start_Lon': -73.991428, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-23 21:19:00', 'Trip_Pickup_DateTime': '2009-06-23 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779725, 'End_Lon': -73.956035, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722353, 'Start_Lon': -73.997078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.5, 'Trip_Dropoff_DateTime': '2009-06-23 21:31:00', 'Trip_Pickup_DateTime': '2009-06-23 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759958, 'End_Lon': -73.982718, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778932, 'Start_Lon': -73.98528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-24 10:31:00', 'Trip_Pickup_DateTime': '2009-06-24 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775972, 'End_Lon': -73.982088, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766127, 'Start_Lon': -73.965787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-22 17:03:00', 'Trip_Pickup_DateTime': '2009-06-22 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778882, 'End_Lon': -73.962282, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781008, 'Start_Lon': -73.954313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-22 17:41:00', 'Trip_Pickup_DateTime': '2009-06-22 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75292, 'End_Lon': -73.992893, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738565, 'Start_Lon': -73.987292, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-22 14:54:00', 'Trip_Pickup_DateTime': '2009-06-22 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76419, 'End_Lon': -73.962797, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761417, 'Start_Lon': -73.98372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-22 17:48:00', 'Trip_Pickup_DateTime': '2009-06-22 17:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737027, 'End_Lon': -74.001325, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72133, 'Start_Lon': -73.997572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-25 00:05:00', 'Trip_Pickup_DateTime': '2009-06-24 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767858, 'End_Lon': -73.967347, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772913, 'Start_Lon': -73.958605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-16 16:54:00', 'Trip_Pickup_DateTime': '2009-06-16 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726907, 'End_Lon': -73.977895, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761932, 'Start_Lon': -73.968382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-25 01:34:00', 'Trip_Pickup_DateTime': '2009-06-25 01:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782177, 'End_Lon': -73.951823, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764217, 'Start_Lon': -73.95868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-22 21:11:00', 'Trip_Pickup_DateTime': '2009-06-22 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756255, 'End_Lon': -73.981437, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763127, 'Start_Lon': -73.969287, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-25 15:37:00', 'Trip_Pickup_DateTime': '2009-06-25 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.665228, 'End_Lon': -73.799448, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7456, 'Start_Lon': -73.989895, 'Tip_Amt': 7.0, 'Tolls_Amt': 4.15, 'Total_Amt': 56.15, 'Trip_Distance': 14.47, 'Trip_Dropoff_DateTime': '2009-06-24 14:17:00', 'Trip_Pickup_DateTime': '2009-06-24 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750865, 'End_Lon': -73.986923, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744735, 'Start_Lon': -73.987443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-18 19:58:00', 'Trip_Pickup_DateTime': '2009-06-18 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74316, 'End_Lon': -74.00742, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745758, 'Start_Lon': -73.98446, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-23 11:49:00', 'Trip_Pickup_DateTime': '2009-06-23 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72343, 'End_Lon': -73.990028, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734915, 'Start_Lon': -74.00606, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-24 21:12:00', 'Trip_Pickup_DateTime': '2009-06-24 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77092, 'End_Lon': -73.96134, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7231, 'Start_Lon': -73.999165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.73, 'Trip_Dropoff_DateTime': '2009-06-22 12:37:00', 'Trip_Pickup_DateTime': '2009-06-22 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767143, 'End_Lon': -73.98258, 'Fare_Amt': 10.5, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7415, 'Start_Lon': -73.98527, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-18 19:01:00', 'Trip_Pickup_DateTime': '2009-06-18 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740038, 'End_Lon': -73.995425, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751563, 'Start_Lon': -73.993967, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-22 18:52:00', 'Trip_Pickup_DateTime': '2009-06-22 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70958, 'End_Lon': -74.017905, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72616, 'Start_Lon': -73.996235, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-22 22:02:00', 'Trip_Pickup_DateTime': '2009-06-22 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75628, 'End_Lon': -73.983173, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751203, 'Start_Lon': -73.994018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-29 08:59:00', 'Trip_Pickup_DateTime': '2009-06-29 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781085, 'End_Lon': -73.981592, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741478, 'Start_Lon': -73.999865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-16 16:39:00', 'Trip_Pickup_DateTime': '2009-06-16 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.86804, 'End_Lon': -73.907017, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.866982, 'Start_Lon': -73.906888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-22 13:44:00', 'Trip_Pickup_DateTime': '2009-06-22 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74509, 'End_Lon': -73.980633, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74509, 'Start_Lon': -73.980633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-23 19:43:00', 'Trip_Pickup_DateTime': '2009-06-23 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744168, 'End_Lon': -73.991883, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729222, 'Start_Lon': -73.984118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-28 21:21:00', 'Trip_Pickup_DateTime': '2009-06-28 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786945, 'End_Lon': -73.953667, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784822, 'Start_Lon': -73.979057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-25 20:16:00', 'Trip_Pickup_DateTime': '2009-06-25 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733838, 'End_Lon': -74.002578, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741573, 'Start_Lon': -73.993457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-23 23:16:00', 'Trip_Pickup_DateTime': '2009-06-23 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767705, 'End_Lon': -73.968357, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711092, 'Start_Lon': -74.01562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-22 20:27:00', 'Trip_Pickup_DateTime': '2009-06-22 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762912, 'End_Lon': -73.974307, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750962, 'Start_Lon': -73.982673, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-27 10:17:00', 'Trip_Pickup_DateTime': '2009-06-27 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77301, 'End_Lon': -73.956137, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768513, 'Start_Lon': -73.984775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-18 19:56:00', 'Trip_Pickup_DateTime': '2009-06-18 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747883, 'End_Lon': -73.911057, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745395, 'Start_Lon': -73.904233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-28 04:40:00', 'Trip_Pickup_DateTime': '2009-06-28 04:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730147, 'End_Lon': -73.983863, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755728, 'Start_Lon': -73.993962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-22 17:36:00', 'Trip_Pickup_DateTime': '2009-06-22 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73388, 'End_Lon': -73.990472, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.680572, 'Start_Lon': -74.000843, 'Tip_Amt': 3.3, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 5.19, 'Trip_Dropoff_DateTime': '2009-06-24 09:09:00', 'Trip_Pickup_DateTime': '2009-06-24 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731612, 'End_Lon': -73.995117, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730472, 'Start_Lon': -73.980437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-23 11:25:00', 'Trip_Pickup_DateTime': '2009-06-23 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765623, 'End_Lon': -73.958633, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768628, 'Start_Lon': -73.96578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-24 08:46:00', 'Trip_Pickup_DateTime': '2009-06-24 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750647, 'End_Lon': -73.970483, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755768, 'Start_Lon': -73.968172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-22 22:19:00', 'Trip_Pickup_DateTime': '2009-06-22 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-22 11:26:00', 'Trip_Pickup_DateTime': '2009-06-22 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742325, 'End_Lon': -73.99347, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740023, 'Start_Lon': -74.002327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-27 20:41:00', 'Trip_Pickup_DateTime': '2009-06-27 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756337, 'End_Lon': -73.999285, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774352, 'Start_Lon': -73.981028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-27 09:04:00', 'Trip_Pickup_DateTime': '2009-06-27 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794575, 'End_Lon': -73.971808, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723278, 'Start_Lon': -73.982488, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 6.63, 'Trip_Dropoff_DateTime': '2009-06-27 01:26:00', 'Trip_Pickup_DateTime': '2009-06-27 01:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764817, 'End_Lon': -73.970607, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711608, 'Start_Lon': -74.008908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 6.43, 'Trip_Dropoff_DateTime': '2009-06-26 12:43:00', 'Trip_Pickup_DateTime': '2009-06-26 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750038, 'End_Lon': -73.994968, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734917, 'Start_Lon': -73.998693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-26 17:53:00', 'Trip_Pickup_DateTime': '2009-06-26 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804867, 'End_Lon': -73.938747, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773025, 'Start_Lon': -73.949632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-27 11:07:00', 'Trip_Pickup_DateTime': '2009-06-27 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774838, 'End_Lon': -73.982178, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757457, 'Start_Lon': -73.985518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-22 18:47:00', 'Trip_Pickup_DateTime': '2009-06-22 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783248, 'End_Lon': -73.980328, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777632, 'Start_Lon': -73.961282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-22 15:20:00', 'Trip_Pickup_DateTime': '2009-06-22 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72421, 'End_Lon': -73.973657, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732992, 'Start_Lon': -73.987478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-23 10:46:00', 'Trip_Pickup_DateTime': '2009-06-23 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777218, 'End_Lon': -73.985238, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780873, 'Start_Lon': -73.981553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-24 12:16:00', 'Trip_Pickup_DateTime': '2009-06-24 12:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771335, 'End_Lon': -73.985982, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75328, 'Start_Lon': -73.979103, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-16 17:00:00', 'Trip_Pickup_DateTime': '2009-06-16 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756032, 'End_Lon': -73.970543, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761467, 'Start_Lon': -74.000308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-24 10:18:00', 'Trip_Pickup_DateTime': '2009-06-24 09:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777922, 'End_Lon': -73.959705, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744215, 'Start_Lon': -73.992035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-22 16:53:00', 'Trip_Pickup_DateTime': '2009-06-22 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746555, 'End_Lon': -73.972082, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762615, 'Start_Lon': -74.00032, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-24 12:04:00', 'Trip_Pickup_DateTime': '2009-06-24 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756048, 'End_Lon': -73.987605, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743752, 'Start_Lon': -73.999568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-24 09:14:00', 'Trip_Pickup_DateTime': '2009-06-24 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801618, 'End_Lon': -73.962795, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810383, 'Start_Lon': -73.952932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-22 14:02:00', 'Trip_Pickup_DateTime': '2009-06-22 13:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758483, 'End_Lon': -73.992667, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782497, 'Start_Lon': -73.97302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-16 17:01:00', 'Trip_Pickup_DateTime': '2009-06-16 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743935, 'End_Lon': -73.99524, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73515, 'Start_Lon': -73.990047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-25 14:33:00', 'Trip_Pickup_DateTime': '2009-06-25 14:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778909, 'End_Lon': -73.986992, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.778271, 'Start_Lon': -73.982174, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-12 14:27:30', 'Trip_Pickup_DateTime': '2009-06-12 14:24:54', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.720177, 'End_Lon': -74.002318, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724638, 'Start_Lon': -73.998505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-26 19:28:00', 'Trip_Pickup_DateTime': '2009-06-26 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761958, 'End_Lon': -73.980633, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725968, 'Start_Lon': -73.994943, 'Tip_Amt': 3.56, 'Tolls_Amt': 0.0, 'Total_Amt': 21.36, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-22 21:21:00', 'Trip_Pickup_DateTime': '2009-06-22 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727683, 'End_Lon': -73.9852, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74226, 'Start_Lon': -73.989085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-27 13:10:00', 'Trip_Pickup_DateTime': '2009-06-27 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774373, 'End_Lon': -73.989148, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.763959, 'Start_Lon': -73.9852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-06 19:59:10', 'Trip_Pickup_DateTime': '2009-06-06 19:55:20', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.748828, 'End_Lon': -73.995882, 'Fare_Amt': 6.9, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721218, 'Start_Lon': -74.008338, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-26 16:25:00', 'Trip_Pickup_DateTime': '2009-06-26 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750502, 'End_Lon': -73.973797, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733905, 'Start_Lon': -73.97782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-22 12:52:00', 'Trip_Pickup_DateTime': '2009-06-22 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738875, 'End_Lon': -74.000445, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734797, 'Start_Lon': -74.002087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-23 15:54:00', 'Trip_Pickup_DateTime': '2009-06-23 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72536, 'End_Lon': -73.99582, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730635, 'Start_Lon': -73.986077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-25 22:34:00', 'Trip_Pickup_DateTime': '2009-06-25 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.863422, 'End_Lon': -73.926008, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750293, 'Start_Lon': -73.971723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 9.24, 'Trip_Dropoff_DateTime': '2009-06-23 01:58:00', 'Trip_Pickup_DateTime': '2009-06-23 01:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768272, 'End_Lon': -73.962825, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751677, 'Start_Lon': -73.970718, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-25 20:15:00', 'Trip_Pickup_DateTime': '2009-06-25 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73278, 'End_Lon': -73.981587, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71938, 'Start_Lon': -73.997418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-27 21:09:00', 'Trip_Pickup_DateTime': '2009-06-27 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772553, 'End_Lon': -73.977342, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761317, 'Start_Lon': -73.977843, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-23 20:30:00', 'Trip_Pickup_DateTime': '2009-06-23 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741815, 'End_Lon': -74.00475, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756457, 'Start_Lon': -73.974775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-28 11:46:00', 'Trip_Pickup_DateTime': '2009-06-28 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78051, 'End_Lon': -73.946108, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75594, 'Start_Lon': -73.970683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-26 16:37:00', 'Trip_Pickup_DateTime': '2009-06-26 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745602, 'End_Lon': -73.978198, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770557, 'Start_Lon': -73.956502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-26 16:22:00', 'Trip_Pickup_DateTime': '2009-06-26 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691532, 'End_Lon': -73.958825, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.694582, 'Start_Lon': -73.992105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-27 01:32:00', 'Trip_Pickup_DateTime': '2009-06-27 01:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773458, 'End_Lon': -73.980547, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762982, 'Start_Lon': -73.982167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-22 15:55:00', 'Trip_Pickup_DateTime': '2009-06-22 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739787, 'End_Lon': -73.991607, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733975, 'Start_Lon': -73.999342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-27 19:36:00', 'Trip_Pickup_DateTime': '2009-06-27 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.680513, 'End_Lon': -73.974953, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704003, 'Start_Lon': -74.007888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-24 22:18:00', 'Trip_Pickup_DateTime': '2009-06-24 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756663, 'End_Lon': -73.9694, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78698, 'Start_Lon': -73.972683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-27 15:14:00', 'Trip_Pickup_DateTime': '2009-06-27 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758965, 'End_Lon': -73.974952, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775915, 'Start_Lon': -73.949985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-28 02:33:00', 'Trip_Pickup_DateTime': '2009-06-28 02:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732355, 'End_Lon': -73.994803, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726972, 'Start_Lon': -73.980435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-22 11:43:00', 'Trip_Pickup_DateTime': '2009-06-22 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743675, 'End_Lon': -73.979568, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750082, 'Start_Lon': -73.991648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-29 07:46:00', 'Trip_Pickup_DateTime': '2009-06-29 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760095, 'End_Lon': -73.979572, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732158, 'Start_Lon': -73.994148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-27 22:21:00', 'Trip_Pickup_DateTime': '2009-06-27 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708573, 'End_Lon': -73.805552, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72213, 'Start_Lon': -73.846022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-22 12:43:00', 'Trip_Pickup_DateTime': '2009-06-22 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808868, 'End_Lon': -73.941275, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739595, 'Start_Lon': -73.99482, 'Tip_Amt': 2.4, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.23, 'Trip_Dropoff_DateTime': '2009-06-25 23:07:00', 'Trip_Pickup_DateTime': '2009-06-25 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758577, 'End_Lon': -73.962817, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759828, 'Start_Lon': -73.964717, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-26 06:57:00', 'Trip_Pickup_DateTime': '2009-06-26 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756195, 'End_Lon': -73.982965, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76044, 'Start_Lon': -73.961345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-25 22:46:00', 'Trip_Pickup_DateTime': '2009-06-25 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788625, 'End_Lon': -73.973067, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799522, 'Start_Lon': -73.968078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-28 01:46:00', 'Trip_Pickup_DateTime': '2009-06-28 01:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.819412, 'End_Lon': -73.944363, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.812833, 'Start_Lon': -73.94929, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-27 18:10:00', 'Trip_Pickup_DateTime': '2009-06-27 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739665, 'End_Lon': -73.990922, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75976, 'Start_Lon': -73.969875, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-22 15:42:00', 'Trip_Pickup_DateTime': '2009-06-22 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750332, 'End_Lon': -73.9911, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759055, 'Start_Lon': -73.995905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-25 21:41:00', 'Trip_Pickup_DateTime': '2009-06-25 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749063, 'End_Lon': -73.978417, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707472, 'Start_Lon': -74.013165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.98, 'Trip_Dropoff_DateTime': '2009-06-24 10:51:00', 'Trip_Pickup_DateTime': '2009-06-24 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787332, 'End_Lon': -73.968102, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77676, 'Start_Lon': -73.952753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-23 03:18:00', 'Trip_Pickup_DateTime': '2009-06-23 03:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73285, 'End_Lon': -73.995917, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763623, 'Start_Lon': -73.97136, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-22 18:48:00', 'Trip_Pickup_DateTime': '2009-06-22 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765992, 'End_Lon': -73.983153, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7535, 'Start_Lon': -73.988527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-22 21:34:00', 'Trip_Pickup_DateTime': '2009-06-22 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783642, 'End_Lon': -73.956568, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759463, 'Start_Lon': -73.96566, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-25 13:52:00', 'Trip_Pickup_DateTime': '2009-06-25 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760607, 'End_Lon': -73.985497, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750037, 'Start_Lon': -74.002485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-27 00:38:00', 'Trip_Pickup_DateTime': '2009-06-27 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751383, 'End_Lon': -73.975263, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756865, 'Start_Lon': -73.963682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-25 14:27:00', 'Trip_Pickup_DateTime': '2009-06-25 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774238, 'End_Lon': -73.94833, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783998, 'Start_Lon': -73.947337, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-25 15:01:00', 'Trip_Pickup_DateTime': '2009-06-25 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791443, 'End_Lon': -73.97403, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784512, 'Start_Lon': -73.954212, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-25 16:56:00', 'Trip_Pickup_DateTime': '2009-06-25 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782497, 'End_Lon': -73.978718, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779227, 'Start_Lon': -73.98725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-28 17:32:00', 'Trip_Pickup_DateTime': '2009-06-28 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-23 13:43:00', 'Trip_Pickup_DateTime': '2009-06-23 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728165, 'End_Lon': -74.002015, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726898, 'Start_Lon': -73.988808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-23 04:07:00', 'Trip_Pickup_DateTime': '2009-06-23 04:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739362, 'End_Lon': -73.988642, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735155, 'Start_Lon': -73.980558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-28 00:11:00', 'Trip_Pickup_DateTime': '2009-06-27 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716203, 'End_Lon': -74.001278, 'Fare_Amt': 35.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747758, 'Start_Lon': -73.982657, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 39.85, 'Trip_Distance': 12.98, 'Trip_Dropoff_DateTime': '2009-06-22 16:37:00', 'Trip_Pickup_DateTime': '2009-06-22 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774228, 'End_Lon': -73.87372, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764482, 'Start_Lon': -73.968878, 'Tip_Amt': 5.3, 'Tolls_Amt': 4.15, 'Total_Amt': 35.95, 'Trip_Distance': 10.08, 'Trip_Dropoff_DateTime': '2009-06-25 12:43:00', 'Trip_Pickup_DateTime': '2009-06-25 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728575, 'End_Lon': -73.999562, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73979, 'Start_Lon': -73.998862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-27 05:51:00', 'Trip_Pickup_DateTime': '2009-06-27 05:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79243, 'End_Lon': -73.96792, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80156, 'Start_Lon': -73.961087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-26 17:20:00', 'Trip_Pickup_DateTime': '2009-06-26 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786762, 'End_Lon': -73.996027, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7728, 'Start_Lon': -73.988927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-25 00:45:00', 'Trip_Pickup_DateTime': '2009-06-25 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724405, 'End_Lon': -73.990707, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732577, 'Start_Lon': -73.985203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-28 16:07:00', 'Trip_Pickup_DateTime': '2009-06-28 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774342, 'End_Lon': -73.873395, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75832, 'Start_Lon': -73.986923, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 9.77, 'Trip_Dropoff_DateTime': '2009-06-29 10:54:00', 'Trip_Pickup_DateTime': '2009-06-29 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703333, 'End_Lon': -74.011615, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745297, 'Start_Lon': -73.975582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-26 09:37:00', 'Trip_Pickup_DateTime': '2009-06-26 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791292, 'End_Lon': -73.974058, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767402, 'Start_Lon': -73.982207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-25 19:28:00', 'Trip_Pickup_DateTime': '2009-06-25 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756655, 'End_Lon': -73.986217, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767097, 'Start_Lon': -73.980067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-25 12:23:00', 'Trip_Pickup_DateTime': '2009-06-25 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75517, 'End_Lon': -73.971428, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762985, 'Start_Lon': -73.975905, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-22 21:05:00', 'Trip_Pickup_DateTime': '2009-06-22 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737683, 'End_Lon': -73.992675, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742735, 'Start_Lon': -73.984232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-22 17:17:00', 'Trip_Pickup_DateTime': '2009-06-22 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79527, 'End_Lon': -73.973132, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760105, 'Start_Lon': -73.967813, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-27 02:59:00', 'Trip_Pickup_DateTime': '2009-06-27 02:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706205, 'End_Lon': -74.005847, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71512, 'Start_Lon': -74.001962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-25 10:15:00', 'Trip_Pickup_DateTime': '2009-06-25 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.685635, 'End_Lon': -73.981643, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738673, 'Start_Lon': -73.982907, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-24 22:45:00', 'Trip_Pickup_DateTime': '2009-06-24 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756042, 'End_Lon': -73.978752, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755935, 'Start_Lon': -73.990795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-25 06:06:00', 'Trip_Pickup_DateTime': '2009-06-25 06:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756623, 'End_Lon': -73.985882, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79439, 'Start_Lon': -73.939608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.32, 'Trip_Dropoff_DateTime': '2009-06-27 09:39:00', 'Trip_Pickup_DateTime': '2009-06-27 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75069, 'End_Lon': -74.003537, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749005, 'Start_Lon': -73.987817, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-27 21:23:00', 'Trip_Pickup_DateTime': '2009-06-27 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790577, 'End_Lon': -73.96808, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768075, 'Start_Lon': -73.982275, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-25 16:14:00', 'Trip_Pickup_DateTime': '2009-06-25 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764822, 'End_Lon': -73.984177, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759087, 'Start_Lon': -73.988575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-25 14:29:00', 'Trip_Pickup_DateTime': '2009-06-25 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758603, 'End_Lon': -73.993547, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756393, 'Start_Lon': -73.978248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-22 11:23:00', 'Trip_Pickup_DateTime': '2009-06-22 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727125, 'End_Lon': -73.985563, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73044, 'Start_Lon': -74.000243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-28 05:57:00', 'Trip_Pickup_DateTime': '2009-06-28 05:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778678, 'End_Lon': -73.958493, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785677, 'Start_Lon': -73.955498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-22 11:49:00', 'Trip_Pickup_DateTime': '2009-06-22 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768475, 'End_Lon': -73.958918, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75875, 'Start_Lon': -73.970408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-27 09:55:00', 'Trip_Pickup_DateTime': '2009-06-27 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756678, 'End_Lon': -73.978073, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761193, 'Start_Lon': -73.969003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-29 09:53:00', 'Trip_Pickup_DateTime': '2009-06-29 09:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708748, 'End_Lon': -74.004997, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737233, 'Start_Lon': -73.974238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-26 09:39:00', 'Trip_Pickup_DateTime': '2009-06-26 09:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770687, 'End_Lon': -73.953988, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790315, 'Start_Lon': -73.954167, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-25 13:12:00', 'Trip_Pickup_DateTime': '2009-06-25 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761465, 'End_Lon': -73.963755, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708318, 'Start_Lon': -74.01085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 6.07, 'Trip_Dropoff_DateTime': '2009-06-25 10:06:00', 'Trip_Pickup_DateTime': '2009-06-25 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710637, 'End_Lon': -73.991757, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707005, 'Start_Lon': -74.012922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-22 11:47:00', 'Trip_Pickup_DateTime': '2009-06-22 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741063, 'End_Lon': -73.98134, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726133, 'Start_Lon': -73.989482, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-28 02:10:00', 'Trip_Pickup_DateTime': '2009-06-28 02:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.675195, 'End_Lon': -73.981288, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722985, 'Start_Lon': -73.98845, 'Tip_Amt': 2.2, 'Tolls_Amt': 0.0, 'Total_Amt': 20.0, 'Trip_Distance': 6.5, 'Trip_Dropoff_DateTime': '2009-06-26 01:49:00', 'Trip_Pickup_DateTime': '2009-06-26 01:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761803, 'End_Lon': -73.983343, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785052, 'Start_Lon': -73.94949, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.55, 'Trip_Dropoff_DateTime': '2009-06-24 12:44:00', 'Trip_Pickup_DateTime': '2009-06-24 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763298, 'End_Lon': -73.934252, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760738, 'Start_Lon': -73.961198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-24 16:46:00', 'Trip_Pickup_DateTime': '2009-06-24 16:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718777, 'End_Lon': -73.988042, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72, 'Start_Lon': -74.001568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-24 15:09:00', 'Trip_Pickup_DateTime': '2009-06-24 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767368, 'End_Lon': -73.953705, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744492, 'Start_Lon': -73.991242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-24 17:39:00', 'Trip_Pickup_DateTime': '2009-06-24 17:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763955, 'End_Lon': -73.996092, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759212, 'Start_Lon': -73.965088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-23 23:28:00', 'Trip_Pickup_DateTime': '2009-06-23 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713838, 'End_Lon': -73.992715, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74698, 'Start_Lon': -73.98841, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-25 15:51:00', 'Trip_Pickup_DateTime': '2009-06-25 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705827, 'End_Lon': -74.007188, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726255, 'Start_Lon': -73.98942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-27 02:12:00', 'Trip_Pickup_DateTime': '2009-06-27 02:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715615, 'End_Lon': -74.006277, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74522, 'Start_Lon': -74.008173, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-18 21:14:00', 'Trip_Pickup_DateTime': '2009-06-18 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751088, 'End_Lon': -73.994562, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749508, 'Start_Lon': -73.995858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-24 23:33:00', 'Trip_Pickup_DateTime': '2009-06-24 23:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767417, 'End_Lon': -73.957733, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764403, 'Start_Lon': -73.976232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-24 15:13:00', 'Trip_Pickup_DateTime': '2009-06-24 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756448, 'End_Lon': -73.970575, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761717, 'Start_Lon': -73.983988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-18 20:57:00', 'Trip_Pickup_DateTime': '2009-06-18 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768475, 'End_Lon': -73.966018, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753123, 'Start_Lon': -73.979203, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-28 13:00:00', 'Trip_Pickup_DateTime': '2009-06-28 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75151, 'End_Lon': -73.97375, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743942, 'Start_Lon': -73.979405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-25 07:33:00', 'Trip_Pickup_DateTime': '2009-06-25 07:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.655998, 'End_Lon': -73.909018, 'Fare_Amt': 36.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734693, 'Start_Lon': -73.990515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 37.0, 'Trip_Distance': 13.56, 'Trip_Dropoff_DateTime': '2009-06-25 00:14:00', 'Trip_Pickup_DateTime': '2009-06-24 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755885, 'End_Lon': -73.990815, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747962, 'Start_Lon': -73.982877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-23 17:50:00', 'Trip_Pickup_DateTime': '2009-06-23 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785482, 'End_Lon': -73.98378, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803013, 'Start_Lon': -73.967783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-23 20:21:00', 'Trip_Pickup_DateTime': '2009-06-23 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77333, 'End_Lon': -73.982417, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749085, 'Start_Lon': -73.969337, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-24 20:10:00', 'Trip_Pickup_DateTime': '2009-06-24 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715533, 'End_Lon': -74.005475, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742453, 'Start_Lon': -73.983648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-23 21:28:00', 'Trip_Pickup_DateTime': '2009-06-23 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776487, 'End_Lon': -73.961982, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757687, 'Start_Lon': -73.97526, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-26 13:29:00', 'Trip_Pickup_DateTime': '2009-06-26 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787338, 'End_Lon': -73.979003, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780542, 'Start_Lon': -73.9824, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-24 20:16:00', 'Trip_Pickup_DateTime': '2009-06-24 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728945, 'End_Lon': -73.976918, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726238, 'Start_Lon': -74.00745, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-23 17:44:00', 'Trip_Pickup_DateTime': '2009-06-23 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749397, 'End_Lon': -73.97246, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733273, 'Start_Lon': -73.99976, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-25 22:16:00', 'Trip_Pickup_DateTime': '2009-06-25 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.81606, 'End_Lon': -73.96053, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77809, 'Start_Lon': -73.95434, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-26 13:48:00', 'Trip_Pickup_DateTime': '2009-06-26 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791982, 'End_Lon': -73.978127, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751708, 'Start_Lon': -73.986225, 'Tip_Amt': 3.02, 'Tolls_Amt': 0.0, 'Total_Amt': 18.12, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-23 17:10:00', 'Trip_Pickup_DateTime': '2009-06-23 16:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7512, 'End_Lon': -74.00661, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726127, 'Start_Lon': -73.983465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-24 07:41:00', 'Trip_Pickup_DateTime': '2009-06-24 07:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707942, 'End_Lon': -74.011367, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742353, 'Start_Lon': -74.004303, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-29 06:40:00', 'Trip_Pickup_DateTime': '2009-06-29 06:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705043, 'End_Lon': -74.005252, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71416, 'Start_Lon': -74.0027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-24 17:02:00', 'Trip_Pickup_DateTime': '2009-06-24 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756002, 'End_Lon': -73.972198, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742182, 'Start_Lon': -73.987178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-27 23:50:00', 'Trip_Pickup_DateTime': '2009-06-27 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682248, 'End_Lon': -73.998063, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740928, 'Start_Lon': -73.998002, 'Tip_Amt': 3.32, 'Tolls_Amt': 0.0, 'Total_Amt': 19.92, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-23 05:53:00', 'Trip_Pickup_DateTime': '2009-06-23 05:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771003, 'End_Lon': -73.95953, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786178, 'Start_Lon': -73.97254, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-25 20:00:00', 'Trip_Pickup_DateTime': '2009-06-25 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797075, 'End_Lon': -73.946635, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763735, 'Start_Lon': -73.964527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-27 12:34:00', 'Trip_Pickup_DateTime': '2009-06-27 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736698, 'End_Lon': -73.988902, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719915, 'Start_Lon': -73.987758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-27 12:08:00', 'Trip_Pickup_DateTime': '2009-06-27 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747417, 'End_Lon': -73.971282, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740753, 'Start_Lon': -73.985023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-29 00:52:00', 'Trip_Pickup_DateTime': '2009-06-29 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749302, 'End_Lon': -73.99223, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73474, 'Start_Lon': -74.000055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-28 17:37:00', 'Trip_Pickup_DateTime': '2009-06-28 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754247, 'End_Lon': -73.897295, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754247, 'Start_Lon': -73.897295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-24 19:27:00', 'Trip_Pickup_DateTime': '2009-06-24 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81055, 'End_Lon': -73.958228, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800575, 'Start_Lon': -73.965858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-26 07:26:00', 'Trip_Pickup_DateTime': '2009-06-26 07:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748657, 'End_Lon': -73.912987, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750168, 'Start_Lon': -73.994905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-29 11:05:00', 'Trip_Pickup_DateTime': '2009-06-29 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77053, 'End_Lon': -73.954458, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779135, 'Start_Lon': -73.956433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-23 21:48:00', 'Trip_Pickup_DateTime': '2009-06-23 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74869, 'End_Lon': -73.995992, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747442, 'Start_Lon': -74.00166, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-27 18:47:00', 'Trip_Pickup_DateTime': '2009-06-27 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759287, 'End_Lon': -73.983763, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709362, 'Start_Lon': -74.014762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-24 06:15:00', 'Trip_Pickup_DateTime': '2009-06-24 06:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756982, 'End_Lon': -73.966893, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776975, 'Start_Lon': -73.952435, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-25 23:12:00', 'Trip_Pickup_DateTime': '2009-06-25 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742927, 'End_Lon': -74.001143, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727567, 'Start_Lon': -73.993067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-24 01:54:00', 'Trip_Pickup_DateTime': '2009-06-24 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767377, 'End_Lon': -73.983558, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743618, 'Start_Lon': -73.999607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-27 10:21:00', 'Trip_Pickup_DateTime': '2009-06-27 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75001, 'End_Lon': -73.991495, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724215, 'Start_Lon': -73.992733, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-25 15:35:00', 'Trip_Pickup_DateTime': '2009-06-25 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785428, 'End_Lon': -73.978717, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768288, 'Start_Lon': -73.982292, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-24 09:47:00', 'Trip_Pickup_DateTime': '2009-06-24 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750292, 'End_Lon': -73.994845, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741517, 'Start_Lon': -74.001208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-24 18:40:00', 'Trip_Pickup_DateTime': '2009-06-24 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783128, 'End_Lon': -73.974408, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75394, 'Start_Lon': -73.97723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-23 20:26:00', 'Trip_Pickup_DateTime': '2009-06-23 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764677, 'End_Lon': -73.970352, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772445, 'Start_Lon': -73.952983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-24 10:48:00', 'Trip_Pickup_DateTime': '2009-06-24 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688838, 'End_Lon': -73.983743, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.666313, 'Start_Lon': -73.992002, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-27 09:19:00', 'Trip_Pickup_DateTime': '2009-06-27 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763268, 'End_Lon': -73.965019, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.758936, 'Start_Lon': -73.988338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-16 19:26:01', 'Trip_Pickup_DateTime': '2009-06-16 19:16:54', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.743302, 'End_Lon': -73.993998, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750358, 'Start_Lon': -73.978003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-23 12:26:00', 'Trip_Pickup_DateTime': '2009-06-23 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768635, 'End_Lon': -73.957915, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781803, 'Start_Lon': -73.955917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-25 14:20:00', 'Trip_Pickup_DateTime': '2009-06-25 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728723, 'End_Lon': -73.991115, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732865, 'Start_Lon': -73.987682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-29 08:33:00', 'Trip_Pickup_DateTime': '2009-06-29 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743245, 'End_Lon': -73.98405, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74967, 'Start_Lon': -73.991717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-29 08:27:00', 'Trip_Pickup_DateTime': '2009-06-29 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749675, 'End_Lon': -73.991307, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764362, 'Start_Lon': -73.97709, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-22 22:05:00', 'Trip_Pickup_DateTime': '2009-06-22 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739055, 'End_Lon': -73.982973, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77063, 'Start_Lon': -73.950943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-27 18:38:00', 'Trip_Pickup_DateTime': '2009-06-27 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738558, 'End_Lon': -73.999388, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725833, 'Start_Lon': -74.003775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-24 10:53:00', 'Trip_Pickup_DateTime': '2009-06-24 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656772, 'End_Lon': -73.976742, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703038, 'Start_Lon': -74.01145, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 18.85, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-23 20:09:00', 'Trip_Pickup_DateTime': '2009-06-23 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749465, 'End_Lon': -73.973387, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755882, 'Start_Lon': -73.96762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-23 09:00:00', 'Trip_Pickup_DateTime': '2009-06-23 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76678, 'End_Lon': -73.989048, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762055, 'Start_Lon': -73.970133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-25 18:49:00', 'Trip_Pickup_DateTime': '2009-06-25 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756423, 'End_Lon': -73.976523, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745178, 'Start_Lon': -73.9869, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-24 09:25:00', 'Trip_Pickup_DateTime': '2009-06-24 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762032, 'End_Lon': -73.966302, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761697, 'Start_Lon': -73.96716, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.06, 'Trip_Dropoff_DateTime': '2009-06-25 20:43:00', 'Trip_Pickup_DateTime': '2009-06-25 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739613, 'End_Lon': -73.995082, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72584, 'Start_Lon': -73.997697, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-28 02:32:00', 'Trip_Pickup_DateTime': '2009-06-28 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76997, 'End_Lon': -73.986747, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784033, 'Start_Lon': -73.981433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-24 08:55:00', 'Trip_Pickup_DateTime': '2009-06-24 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769785, 'End_Lon': -73.952155, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752252, 'Start_Lon': -73.977992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-23 20:56:00', 'Trip_Pickup_DateTime': '2009-06-23 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.667018, 'End_Lon': -73.98477, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731887, 'Start_Lon': -73.985265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.11, 'Trip_Dropoff_DateTime': '2009-06-27 04:19:00', 'Trip_Pickup_DateTime': '2009-06-27 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755338, 'End_Lon': -73.918653, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759317, 'Start_Lon': -73.98725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-24 00:44:00', 'Trip_Pickup_DateTime': '2009-06-24 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806636, 'End_Lon': -73.955549, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773748, 'Start_Lon': -73.960236, 'Tip_Amt': 2.14, 'Tolls_Amt': 0.0, 'Total_Amt': 11.84, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-23 20:03:46', 'Trip_Pickup_DateTime': '2009-06-23 19:51:48', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.78315, 'End_Lon': -73.978152, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727788, 'Start_Lon': -73.993292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.09, 'Trip_Dropoff_DateTime': '2009-06-28 23:07:00', 'Trip_Pickup_DateTime': '2009-06-28 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751693, 'End_Lon': -73.977358, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714163, 'Start_Lon': -74.002728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-25 11:52:00', 'Trip_Pickup_DateTime': '2009-06-25 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764428, 'End_Lon': -73.976, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727728, 'Start_Lon': -73.993335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-25 18:38:00', 'Trip_Pickup_DateTime': '2009-06-25 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740912, 'End_Lon': -73.981455, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719878, 'Start_Lon': -73.988253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-27 02:02:00', 'Trip_Pickup_DateTime': '2009-06-27 01:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724568, 'End_Lon': -74.002902, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757912, 'Start_Lon': -73.972037, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-23 17:11:00', 'Trip_Pickup_DateTime': '2009-06-23 16:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738937, 'End_Lon': -74.04013, 'Fare_Amt': 53.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73893, 'Start_Lon': -74.04013, 'Tip_Amt': 10.6, 'Tolls_Amt': 0.0, 'Total_Amt': 63.6, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 19:59:00', 'Trip_Pickup_DateTime': '2009-06-24 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725853, 'End_Lon': -73.996223, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740648, 'Start_Lon': -74.00487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-27 22:20:00', 'Trip_Pickup_DateTime': '2009-06-27 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722233, 'End_Lon': -73.991793, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721143, 'Start_Lon': -73.993577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-27 03:00:00', 'Trip_Pickup_DateTime': '2009-06-27 02:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759478, 'End_Lon': -73.970338, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74343, 'Start_Lon': -73.97266, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-28 10:29:00', 'Trip_Pickup_DateTime': '2009-06-28 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709992, 'End_Lon': -74.009565, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72079, 'Start_Lon': -73.995805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-28 05:55:00', 'Trip_Pickup_DateTime': '2009-06-28 05:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748852, 'End_Lon': -73.98793, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755585, 'Start_Lon': -73.970785, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-28 02:31:00', 'Trip_Pickup_DateTime': '2009-06-28 02:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759808, 'End_Lon': -73.992262, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76146, 'Start_Lon': -74.00001, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-27 22:30:00', 'Trip_Pickup_DateTime': '2009-06-27 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739008, 'End_Lon': -73.996163, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775267, 'Start_Lon': -73.980198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-26 22:45:00', 'Trip_Pickup_DateTime': '2009-06-26 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798142, 'End_Lon': -73.971103, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77747, 'Start_Lon': -73.986257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-28 13:44:00', 'Trip_Pickup_DateTime': '2009-06-28 13:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774875, 'End_Lon': -73.96312, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764847, 'Start_Lon': -73.966488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-25 05:35:00', 'Trip_Pickup_DateTime': '2009-06-25 05:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769823, 'End_Lon': -73.961022, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.792445, 'Start_Lon': -73.967847, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-23 14:23:00', 'Trip_Pickup_DateTime': '2009-06-23 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762403, 'End_Lon': -73.966182, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739493, 'Start_Lon': -73.98258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-29 07:55:00', 'Trip_Pickup_DateTime': '2009-06-29 07:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74963, 'End_Lon': -73.987399, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743967, 'Start_Lon': -73.973543, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-25 15:16:07', 'Trip_Pickup_DateTime': '2009-06-25 15:01:28', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.671322, 'End_Lon': -73.971295, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.674525, 'Start_Lon': -73.963003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-27 01:59:00', 'Trip_Pickup_DateTime': '2009-06-27 01:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766398, 'End_Lon': -73.952688, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.772286, 'Start_Lon': -73.980582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-25 11:53:57', 'Trip_Pickup_DateTime': '2009-06-25 11:42:51', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.747687, 'End_Lon': -73.992595, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768687, 'Start_Lon': -73.958088, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-23 12:00:00', 'Trip_Pickup_DateTime': '2009-06-23 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788373, 'End_Lon': -73.976853, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772418, 'Start_Lon': -73.95304, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-23 14:09:00', 'Trip_Pickup_DateTime': '2009-06-23 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76831, 'End_Lon': -73.968055, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725407, 'Start_Lon': -73.997037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-26 12:21:00', 'Trip_Pickup_DateTime': '2009-06-26 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761405, 'End_Lon': -73.960655, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741555, 'Start_Lon': -73.983203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-23 18:02:00', 'Trip_Pickup_DateTime': '2009-06-23 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732648, 'End_Lon': -73.995727, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778202, 'Start_Lon': -73.98603, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-23 14:42:00', 'Trip_Pickup_DateTime': '2009-06-23 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752392, 'End_Lon': -73.974245, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729323, 'Start_Lon': -73.989865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-27 03:44:00', 'Trip_Pickup_DateTime': '2009-06-27 03:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756862, 'End_Lon': -73.969148, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768248, 'Start_Lon': -73.982423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-27 09:31:00', 'Trip_Pickup_DateTime': '2009-06-27 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762848, 'End_Lon': -73.967918, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774913, 'Start_Lon': -73.959073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-23 13:19:00', 'Trip_Pickup_DateTime': '2009-06-23 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751587, 'End_Lon': -73.978158, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745127, 'Start_Lon': -73.980725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-27 05:57:00', 'Trip_Pickup_DateTime': '2009-06-27 05:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750573, 'End_Lon': -73.977017, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737758, 'Start_Lon': -73.977303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-26 12:17:00', 'Trip_Pickup_DateTime': '2009-06-26 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777335, 'End_Lon': -73.98563, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790135, 'Start_Lon': -73.975155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-24 14:48:00', 'Trip_Pickup_DateTime': '2009-06-24 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761777, 'End_Lon': -73.986425, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747207, 'Start_Lon': -73.997135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-26 13:14:00', 'Trip_Pickup_DateTime': '2009-06-26 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79405, 'End_Lon': -73.968125, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77673, 'Start_Lon': -73.949722, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-24 12:04:00', 'Trip_Pickup_DateTime': '2009-06-24 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743195, 'End_Lon': -73.993478, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75262, 'Start_Lon': -73.996848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-22 19:11:00', 'Trip_Pickup_DateTime': '2009-06-22 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.828552, 'End_Lon': -73.94369, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758108, 'Start_Lon': -73.989218, 'Tip_Amt': 8.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.8, 'Trip_Distance': 7.35, 'Trip_Dropoff_DateTime': '2009-06-27 01:41:00', 'Trip_Pickup_DateTime': '2009-06-27 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75867, 'End_Lon': -73.973088, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755732, 'Start_Lon': -73.995482, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-26 23:44:00', 'Trip_Pickup_DateTime': '2009-06-26 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.64941, 'End_Lon': -73.789692, 'Fare_Amt': 2.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648057, 'Start_Lon': -73.78926, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.14, 'Trip_Dropoff_DateTime': '2009-06-27 23:58:00', 'Trip_Pickup_DateTime': '2009-06-27 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75434, 'End_Lon': -73.96329, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749045, 'Start_Lon': -73.97969, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-26 23:30:00', 'Trip_Pickup_DateTime': '2009-06-26 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773288, 'End_Lon': -73.8721, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711667, 'Start_Lon': -74.009293, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.05, 'Trip_Distance': 14.72, 'Trip_Dropoff_DateTime': '2009-06-26 08:34:00', 'Trip_Pickup_DateTime': '2009-06-26 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748605, 'End_Lon': -73.971352, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730835, 'Start_Lon': -73.992257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-23 17:11:00', 'Trip_Pickup_DateTime': '2009-06-23 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734747, 'End_Lon': -73.990267, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.647398, 'Start_Lon': -73.789553, 'Tip_Amt': 7.0, 'Tolls_Amt': 4.15, 'Total_Amt': 56.15, 'Trip_Distance': 17.41, 'Trip_Dropoff_DateTime': '2009-06-27 22:22:00', 'Trip_Pickup_DateTime': '2009-06-27 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744135, 'End_Lon': -73.976567, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752015, 'Start_Lon': -73.975737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-28 12:54:00', 'Trip_Pickup_DateTime': '2009-06-28 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757818, 'End_Lon': -73.970687, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737033, 'Start_Lon': -73.978537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-26 10:46:00', 'Trip_Pickup_DateTime': '2009-06-26 10:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768098, 'End_Lon': -73.981215, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744905, 'Start_Lon': -73.97596, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-28 07:33:00', 'Trip_Pickup_DateTime': '2009-06-28 07:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755177, 'End_Lon': -73.987552, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746025, 'Start_Lon': -73.978107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-23 18:57:00', 'Trip_Pickup_DateTime': '2009-06-23 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.836705, 'End_Lon': -73.940032, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761895, 'Start_Lon': -73.990115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.7, 'Trip_Dropoff_DateTime': '2009-06-26 00:06:00', 'Trip_Pickup_DateTime': '2009-06-25 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748133, 'End_Lon': -73.976272, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734693, 'Start_Lon': -73.986267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 12:46:00', 'Trip_Pickup_DateTime': '2009-06-26 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762695, 'End_Lon': -73.983162, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774793, 'Start_Lon': -73.980558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-28 10:03:00', 'Trip_Pickup_DateTime': '2009-06-28 09:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765103, 'End_Lon': -73.966007, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73703, 'Start_Lon': -73.9844, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-28 07:35:00', 'Trip_Pickup_DateTime': '2009-06-28 07:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755307, 'End_Lon': -73.993172, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763748, 'Start_Lon': -73.978672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-26 14:00:00', 'Trip_Pickup_DateTime': '2009-06-26 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745988, 'End_Lon': -73.919098, 'Fare_Amt': 32.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644728, 'Start_Lon': -73.781998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.4, 'Trip_Distance': 14.6, 'Trip_Dropoff_DateTime': '2009-06-18 21:05:00', 'Trip_Pickup_DateTime': '2009-06-18 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789613, 'End_Lon': -73.96622, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77967, 'Start_Lon': -73.959838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-27 11:30:00', 'Trip_Pickup_DateTime': '2009-06-27 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74385, 'End_Lon': -73.983418, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758718, 'Start_Lon': -73.97143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-18 21:25:00', 'Trip_Pickup_DateTime': '2009-06-18 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729877, 'End_Lon': -73.980797, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74176, 'Start_Lon': -73.974922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-27 23:33:00', 'Trip_Pickup_DateTime': '2009-06-27 23:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800188, 'End_Lon': -73.958587, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796852, 'Start_Lon': -73.937957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-27 13:17:00', 'Trip_Pickup_DateTime': '2009-06-27 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764853, 'End_Lon': -73.976402, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743678, 'Start_Lon': -73.98342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-27 01:09:00', 'Trip_Pickup_DateTime': '2009-06-27 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.684698, 'End_Lon': -73.96513, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729362, 'Start_Lon': -73.991922, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-28 23:16:00', 'Trip_Pickup_DateTime': '2009-06-28 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78256, 'End_Lon': -73.95531, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765422, 'Start_Lon': -73.95794, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-16 17:56:00', 'Trip_Pickup_DateTime': '2009-06-16 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.545983, 'End_Lon': -74.21319, 'Fare_Amt': 95.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756048, 'Start_Lon': -73.994375, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.0, 'Total_Amt': 103.0, 'Trip_Distance': 27.47, 'Trip_Dropoff_DateTime': '2009-06-26 23:56:00', 'Trip_Pickup_DateTime': '2009-06-26 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719508, 'End_Lon': -73.997597, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762427, 'Start_Lon': -74.001333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-25 19:17:00', 'Trip_Pickup_DateTime': '2009-06-25 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752023, 'End_Lon': -73.977923, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767337, 'Start_Lon': -73.979295, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-26 15:28:00', 'Trip_Pickup_DateTime': '2009-06-26 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75299, 'End_Lon': -73.99489, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70584, 'Start_Lon': -74.006173, 'Tip_Amt': 3.18, 'Tolls_Amt': 0.0, 'Total_Amt': 19.08, 'Trip_Distance': 4.6, 'Trip_Dropoff_DateTime': '2009-06-26 17:52:00', 'Trip_Pickup_DateTime': '2009-06-26 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766097, 'End_Lon': -74.019045, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737127, 'Start_Lon': -74.009025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-25 07:12:00', 'Trip_Pickup_DateTime': '2009-06-25 07:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.618997, 'End_Lon': -74.021055, 'Fare_Amt': 42.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70702, 'Start_Lon': -74.012405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 43.0, 'Trip_Distance': 16.05, 'Trip_Dropoff_DateTime': '2009-06-27 00:50:00', 'Trip_Pickup_DateTime': '2009-06-26 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725007, 'End_Lon': -73.994945, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720017, 'Start_Lon': -73.989032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-26 22:44:00', 'Trip_Pickup_DateTime': '2009-06-26 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777325, 'End_Lon': -73.918733, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755337, 'Start_Lon': -73.973048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-27 03:26:00', 'Trip_Pickup_DateTime': '2009-06-27 03:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802973, 'End_Lon': -73.967465, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788993, 'Start_Lon': -73.975785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-25 16:56:00', 'Trip_Pickup_DateTime': '2009-06-25 16:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740742, 'End_Lon': -73.987608, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72655, 'Start_Lon': -73.986113, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-25 14:13:00', 'Trip_Pickup_DateTime': '2009-06-25 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711343, 'End_Lon': -74.01606, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760772, 'Start_Lon': -73.99848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.76, 'Trip_Dropoff_DateTime': '2009-06-16 18:07:00', 'Trip_Pickup_DateTime': '2009-06-16 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753607, 'End_Lon': -73.980575, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77735, 'Start_Lon': -73.977675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-25 06:51:00', 'Trip_Pickup_DateTime': '2009-06-25 06:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776555, 'End_Lon': -73.952827, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785487, 'Start_Lon': -73.96957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-23 20:46:00', 'Trip_Pickup_DateTime': '2009-06-23 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728177, 'End_Lon': -73.991037, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734515, 'Start_Lon': -73.9911, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-18 20:40:00', 'Trip_Pickup_DateTime': '2009-06-18 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778998, 'End_Lon': -73.97619, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752865, 'Start_Lon': -73.993007, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-16 13:29:00', 'Trip_Pickup_DateTime': '2009-06-16 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726512, 'End_Lon': -73.975362, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722652, 'Start_Lon': -73.988632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-26 18:59:00', 'Trip_Pickup_DateTime': '2009-06-26 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763725, 'End_Lon': -73.98145, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787703, 'Start_Lon': -73.967587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-28 10:30:00', 'Trip_Pickup_DateTime': '2009-06-28 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77592, 'End_Lon': -73.958243, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782215, 'Start_Lon': -73.955802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-27 10:56:00', 'Trip_Pickup_DateTime': '2009-06-27 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748923, 'End_Lon': -73.988383, 'Fare_Amt': 3.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742938, 'Start_Lon': -73.992763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-24 22:28:00', 'Trip_Pickup_DateTime': '2009-06-24 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720995, 'End_Lon': -73.956488, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726482, 'Start_Lon': -73.986128, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 4.63, 'Trip_Dropoff_DateTime': '2009-06-27 18:15:00', 'Trip_Pickup_DateTime': '2009-06-27 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74497, 'End_Lon': -73.982895, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727533, 'Start_Lon': -73.988417, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-23 09:15:00', 'Trip_Pickup_DateTime': '2009-06-23 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743112, 'End_Lon': -73.99655, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773038, 'Start_Lon': -73.952193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-27 21:18:00', 'Trip_Pickup_DateTime': '2009-06-27 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784403, 'End_Lon': -73.977302, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761805, 'Start_Lon': -73.982452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-28 18:41:00', 'Trip_Pickup_DateTime': '2009-06-28 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763417, 'End_Lon': -73.985625, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760472, 'Start_Lon': -73.975718, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-04 21:07:00', 'Trip_Pickup_DateTime': '2009-06-04 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769772, 'End_Lon': -73.950988, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788223, 'Start_Lon': -73.976707, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-27 16:20:00', 'Trip_Pickup_DateTime': '2009-06-27 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767042, 'End_Lon': -73.979322, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768282, 'Start_Lon': -73.992928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-28 18:01:00', 'Trip_Pickup_DateTime': '2009-06-28 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784892, 'End_Lon': -73.950707, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779265, 'Start_Lon': -73.945043, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-29 08:15:00', 'Trip_Pickup_DateTime': '2009-06-29 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779227, 'End_Lon': -73.961075, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771777, 'Start_Lon': -73.959015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-28 19:07:00', 'Trip_Pickup_DateTime': '2009-06-28 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740767, 'End_Lon': -74.004728, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73071, 'Start_Lon': -73.995648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-27 16:26:00', 'Trip_Pickup_DateTime': '2009-06-27 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738448, 'End_Lon': -73.995865, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72224, 'Start_Lon': -74.003932, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-28 03:48:00', 'Trip_Pickup_DateTime': '2009-06-28 03:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72064, 'End_Lon': -73.988855, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719722, 'Start_Lon': -74.004948, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-28 02:08:00', 'Trip_Pickup_DateTime': '2009-06-28 02:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745803, 'End_Lon': -73.988223, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726603, 'Start_Lon': -73.995918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-29 01:59:00', 'Trip_Pickup_DateTime': '2009-06-29 01:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790683, 'End_Lon': -73.974517, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785252, 'Start_Lon': -73.957763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-27 21:32:00', 'Trip_Pickup_DateTime': '2009-06-27 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741338, 'End_Lon': -73.905115, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763538, 'Start_Lon': -73.977707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.34, 'Trip_Dropoff_DateTime': '2009-06-28 20:57:00', 'Trip_Pickup_DateTime': '2009-06-28 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748412, 'End_Lon': -73.975287, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776682, 'Start_Lon': -73.952768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-28 03:35:00', 'Trip_Pickup_DateTime': '2009-06-28 03:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729848, 'End_Lon': -73.986795, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746507, 'Start_Lon': -73.979735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-27 21:13:00', 'Trip_Pickup_DateTime': '2009-06-27 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765288, 'End_Lon': -73.983473, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754965, 'Start_Lon': -73.974635, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-25 01:06:00', 'Trip_Pickup_DateTime': '2009-06-25 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739927, 'End_Lon': -73.998953, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755622, 'Start_Lon': -73.987872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-28 00:19:00', 'Trip_Pickup_DateTime': '2009-06-28 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735612, 'End_Lon': -74.006812, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769228, 'Start_Lon': -73.982573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-26 21:28:00', 'Trip_Pickup_DateTime': '2009-06-26 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774318, 'End_Lon': -73.872593, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731597, 'Start_Lon': -73.982497, 'Tip_Amt': 6.75, 'Tolls_Amt': 5.0, 'Total_Amt': 34.25, 'Trip_Distance': 9.4, 'Trip_Dropoff_DateTime': '2009-06-25 08:18:00', 'Trip_Pickup_DateTime': '2009-06-25 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763642, 'End_Lon': -73.985233, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753302, 'Start_Lon': -73.985252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-26 21:04:00', 'Trip_Pickup_DateTime': '2009-06-26 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760943, 'End_Lon': -73.923118, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74466, 'Start_Lon': -73.991473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 5.52, 'Trip_Dropoff_DateTime': '2009-06-28 04:58:00', 'Trip_Pickup_DateTime': '2009-06-28 04:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717868, 'End_Lon': -74.010347, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739128, 'Start_Lon': -73.989988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-28 01:09:00', 'Trip_Pickup_DateTime': '2009-06-28 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761897, 'End_Lon': -73.957632, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770198, 'Start_Lon': -73.951225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-27 00:31:00', 'Trip_Pickup_DateTime': '2009-06-27 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772468, 'End_Lon': -73.952627, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744037, 'Start_Lon': -73.986245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-27 22:14:00', 'Trip_Pickup_DateTime': '2009-06-27 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778513, 'End_Lon': -73.953185, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76573, 'Start_Lon': -73.963775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-25 16:12:00', 'Trip_Pickup_DateTime': '2009-06-25 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788973, 'End_Lon': -73.980083, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756985, 'Start_Lon': -73.989878, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-28 06:34:00', 'Trip_Pickup_DateTime': '2009-06-28 06:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77875, 'End_Lon': -73.958442, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750395, 'Start_Lon': -73.991277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-28 09:43:00', 'Trip_Pickup_DateTime': '2009-06-28 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759747, 'End_Lon': -73.995345, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742428, 'Start_Lon': -74.007363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-27 13:21:00', 'Trip_Pickup_DateTime': '2009-06-27 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760115, 'End_Lon': -73.979982, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757405, 'Start_Lon': -73.969777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-25 10:22:00', 'Trip_Pickup_DateTime': '2009-06-25 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751542, 'End_Lon': -73.977035, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73835, 'Start_Lon': -73.983408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-28 22:18:00', 'Trip_Pickup_DateTime': '2009-06-28 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710975, 'End_Lon': -74.009027, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718472, 'Start_Lon': -74.006665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-28 21:47:00', 'Trip_Pickup_DateTime': '2009-06-28 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766997, 'End_Lon': -73.954493, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751927, 'Start_Lon': -73.978192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-25 10:49:00', 'Trip_Pickup_DateTime': '2009-06-25 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735497, 'End_Lon': -73.989787, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755363, 'Start_Lon': -73.97699, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-26 17:44:00', 'Trip_Pickup_DateTime': '2009-06-26 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755103, 'End_Lon': -74.002513, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75314, 'Start_Lon': -73.992925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-29 02:39:00', 'Trip_Pickup_DateTime': '2009-06-29 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788803, 'End_Lon': -73.970652, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785807, 'Start_Lon': -73.978515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-27 15:18:00', 'Trip_Pickup_DateTime': '2009-06-27 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728733, 'End_Lon': -74.006522, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749933, 'Start_Lon': -73.991797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-23 12:00:00', 'Trip_Pickup_DateTime': '2009-06-23 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752892, 'End_Lon': -73.99222, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752987, 'Start_Lon': -73.981907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-26 12:44:00', 'Trip_Pickup_DateTime': '2009-06-26 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750422, 'End_Lon': -73.990828, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75306, 'Start_Lon': -73.983827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-27 02:13:00', 'Trip_Pickup_DateTime': '2009-06-27 02:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762897, 'End_Lon': -73.97358, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764207, 'Start_Lon': -73.971277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-26 11:59:00', 'Trip_Pickup_DateTime': '2009-06-26 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757977, 'End_Lon': -73.965867, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749432, 'Start_Lon': -73.990758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-26 23:02:00', 'Trip_Pickup_DateTime': '2009-06-26 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758262, 'End_Lon': -73.992568, 'Fare_Amt': 33.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773872, 'Start_Lon': -73.872247, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.7, 'Trip_Distance': 10.34, 'Trip_Dropoff_DateTime': '2009-06-26 17:51:00', 'Trip_Pickup_DateTime': '2009-06-26 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693655, 'End_Lon': -73.982415, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693115, 'Start_Lon': -73.969383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-28 05:33:00', 'Trip_Pickup_DateTime': '2009-06-28 05:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.839052, 'End_Lon': -73.941402, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78945, 'Start_Lon': -73.977362, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 21.6, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-26 17:45:00', 'Trip_Pickup_DateTime': '2009-06-26 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727402, 'End_Lon': -73.991485, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731228, 'Start_Lon': -73.982207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-27 00:54:00', 'Trip_Pickup_DateTime': '2009-06-27 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.811555, 'End_Lon': -73.950623, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798655, 'Start_Lon': -73.956132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-26 17:47:00', 'Trip_Pickup_DateTime': '2009-06-26 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767512, 'End_Lon': -73.97068, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741658, 'Start_Lon': -73.989557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-27 16:34:00', 'Trip_Pickup_DateTime': '2009-06-27 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754282, 'End_Lon': -73.97621, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780918, 'Start_Lon': -73.949712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-29 08:09:00', 'Trip_Pickup_DateTime': '2009-06-29 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741973, 'End_Lon': -73.985017, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720828, 'Start_Lon': -73.981373, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-26 22:29:00', 'Trip_Pickup_DateTime': '2009-06-26 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706983, 'End_Lon': -74.005045, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736032, 'Start_Lon': -73.985092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.8, 'Trip_Dropoff_DateTime': '2009-06-26 18:09:00', 'Trip_Pickup_DateTime': '2009-06-26 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762823, 'End_Lon': -73.965647, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743847, 'Start_Lon': -73.995225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-24 13:01:00', 'Trip_Pickup_DateTime': '2009-06-24 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787098, 'End_Lon': -73.972708, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725438, 'Start_Lon': -74.00385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.56, 'Trip_Dropoff_DateTime': '2009-06-25 23:30:00', 'Trip_Pickup_DateTime': '2009-06-25 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735535, 'End_Lon': -73.989798, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759905, 'Start_Lon': -73.972863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-26 00:32:00', 'Trip_Pickup_DateTime': '2009-06-26 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771877, 'End_Lon': -73.955367, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76128, 'Start_Lon': -73.960765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-26 10:51:00', 'Trip_Pickup_DateTime': '2009-06-26 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-25 04:07:00', 'Trip_Pickup_DateTime': '2009-06-25 03:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758282, 'End_Lon': -73.986892, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760313, 'Start_Lon': -73.973238, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-26 01:23:00', 'Trip_Pickup_DateTime': '2009-06-26 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765493, 'End_Lon': -73.978583, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73729, 'Start_Lon': -73.988452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-24 23:13:00', 'Trip_Pickup_DateTime': '2009-06-24 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746723, 'End_Lon': -74.001198, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750257, 'Start_Lon': -73.99469, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-22 19:03:00', 'Trip_Pickup_DateTime': '2009-06-22 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.690723, 'End_Lon': -73.973357, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729097, 'Start_Lon': -73.978248, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.46, 'Trip_Dropoff_DateTime': '2009-06-25 02:25:00', 'Trip_Pickup_DateTime': '2009-06-25 02:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74291, 'End_Lon': -73.994697, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740117, 'Start_Lon': -74.005905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-26 18:28:00', 'Trip_Pickup_DateTime': '2009-06-26 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76064, 'End_Lon': -74.002753, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770832, 'Start_Lon': -73.866425, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.05, 'Trip_Distance': 10.42, 'Trip_Dropoff_DateTime': '2009-06-27 14:56:00', 'Trip_Pickup_DateTime': '2009-06-27 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773368, 'End_Lon': -73.97825, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745077, 'Start_Lon': -73.995453, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.12, 'Trip_Dropoff_DateTime': '2009-06-07 14:26:00', 'Trip_Pickup_DateTime': '2009-06-07 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785457, 'End_Lon': -73.969382, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766782, 'Start_Lon': -73.954105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-05 12:44:00', 'Trip_Pickup_DateTime': '2009-06-05 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750037, 'End_Lon': -73.972065, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784142, 'Start_Lon': -73.947168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-03 09:04:00', 'Trip_Pickup_DateTime': '2009-06-03 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757328, 'End_Lon': -73.984303, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744763, 'Start_Lon': -73.989225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-28 02:30:00', 'Trip_Pickup_DateTime': '2009-06-28 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765657, 'End_Lon': -73.98267, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794987, 'Start_Lon': -73.962347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-07 16:14:00', 'Trip_Pickup_DateTime': '2009-06-07 16:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739337, 'End_Lon': -73.993905, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734797, 'Start_Lon': -74.006058, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-08 09:46:00', 'Trip_Pickup_DateTime': '2009-06-08 09:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804678, 'End_Lon': -73.967753, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.800802, 'Start_Lon': -73.957955, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-06 15:20:00', 'Trip_Pickup_DateTime': '2009-06-06 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774572, 'End_Lon': -73.950935, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76148, 'Start_Lon': -73.965762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-02 15:28:00', 'Trip_Pickup_DateTime': '2009-06-02 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75805, 'End_Lon': -73.970492, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756775, 'Start_Lon': -73.967272, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-08 09:56:00', 'Trip_Pickup_DateTime': '2009-06-08 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.843228, 'End_Lon': -73.941663, 'Fare_Amt': 24.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744537, 'Start_Lon': -73.994485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.4, 'Trip_Distance': 9.54, 'Trip_Dropoff_DateTime': '2009-06-28 21:20:00', 'Trip_Pickup_DateTime': '2009-06-28 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783925, 'End_Lon': -73.956597, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756905, 'Start_Lon': -73.990092, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 3.12, 'Trip_Dropoff_DateTime': '2009-06-08 08:58:00', 'Trip_Pickup_DateTime': '2009-06-08 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770428, 'End_Lon': -73.954208, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757723, 'Start_Lon': -73.976367, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-02 21:41:00', 'Trip_Pickup_DateTime': '2009-06-02 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744678, 'End_Lon': -73.985557, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769667, 'Start_Lon': -73.86366, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.05, 'Trip_Distance': 9.26, 'Trip_Dropoff_DateTime': '2009-06-03 15:24:00', 'Trip_Pickup_DateTime': '2009-06-03 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77026, 'End_Lon': -73.987677, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756985, 'Start_Lon': -73.97238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-08 08:46:00', 'Trip_Pickup_DateTime': '2009-06-08 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77301, 'End_Lon': -73.885333, 'Fare_Amt': 22.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739962, 'Start_Lon': -73.994965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.9, 'Trip_Distance': 9.22, 'Trip_Dropoff_DateTime': '2009-06-06 17:44:00', 'Trip_Pickup_DateTime': '2009-06-06 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778677, 'End_Lon': -73.95806, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743993, 'Start_Lon': -73.99127, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-03 19:46:00', 'Trip_Pickup_DateTime': '2009-06-03 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762287, 'End_Lon': -73.978265, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750228, 'Start_Lon': -73.987112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-02 22:15:00', 'Trip_Pickup_DateTime': '2009-06-02 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7942, 'End_Lon': -73.938698, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76403, 'Start_Lon': -73.954562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-04 17:36:00', 'Trip_Pickup_DateTime': '2009-06-04 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788233, 'End_Lon': -73.967318, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.789833, 'Start_Lon': -73.943052, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-04 18:35:00', 'Trip_Pickup_DateTime': '2009-06-04 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759612, 'End_Lon': -73.976717, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772433, 'Start_Lon': -73.965067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-03 12:48:00', 'Trip_Pickup_DateTime': '2009-06-03 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73581, 'End_Lon': -73.99789, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714178, 'Start_Lon': -74.008365, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-18 22:42:00', 'Trip_Pickup_DateTime': '2009-06-18 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767338, 'End_Lon': -73.982072, 'Fare_Amt': 3.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764183, 'Start_Lon': -73.976628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-06 13:12:00', 'Trip_Pickup_DateTime': '2009-06-06 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786515, 'End_Lon': -73.974487, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763558, 'Start_Lon': -73.985123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-06 11:58:00', 'Trip_Pickup_DateTime': '2009-06-06 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736952, 'End_Lon': -74.007207, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729772, 'Start_Lon': -74.008425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-16 19:16:00', 'Trip_Pickup_DateTime': '2009-06-16 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802758, 'End_Lon': -73.967575, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785895, 'Start_Lon': -73.978463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-06 08:00:00', 'Trip_Pickup_DateTime': '2009-06-06 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76733, 'End_Lon': -73.97962, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786007, 'Start_Lon': -73.954923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-05 09:42:00', 'Trip_Pickup_DateTime': '2009-06-05 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773985, 'End_Lon': -73.870688, 'Fare_Amt': 31.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.703912, 'Start_Lon': -74.008363, 'Tip_Amt': 3.3, 'Tolls_Amt': 0.0, 'Total_Amt': 36.0, 'Trip_Distance': 12.64, 'Trip_Dropoff_DateTime': '2009-06-04 16:45:00', 'Trip_Pickup_DateTime': '2009-06-04 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767075, 'End_Lon': -73.997, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745995, 'Start_Lon': -73.987987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-07 12:23:00', 'Trip_Pickup_DateTime': '2009-06-07 12:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678087, 'End_Lon': -73.984413, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737022, 'Start_Lon': -73.989978, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.6, 'Trip_Distance': 5.28, 'Trip_Dropoff_DateTime': '2009-06-18 22:44:00', 'Trip_Pickup_DateTime': '2009-06-18 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759255, 'End_Lon': -73.98617, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731738, 'Start_Lon': -74.006562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.99, 'Trip_Dropoff_DateTime': '2009-06-18 22:29:00', 'Trip_Pickup_DateTime': '2009-06-18 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77772, 'End_Lon': -73.955485, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774048, 'Start_Lon': -73.87444, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.85, 'Trip_Distance': 8.26, 'Trip_Dropoff_DateTime': '2009-06-27 17:31:00', 'Trip_Pickup_DateTime': '2009-06-27 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736598, 'End_Lon': -73.987203, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761872, 'Start_Lon': -73.982373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-16 18:51:00', 'Trip_Pickup_DateTime': '2009-06-16 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-23 16:04:00', 'Trip_Pickup_DateTime': '2009-06-23 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749762, 'End_Lon': -73.979218, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769262, 'Start_Lon': -73.984835, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-24 08:03:00', 'Trip_Pickup_DateTime': '2009-06-24 07:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750237, 'End_Lon': -73.994727, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740337, 'Start_Lon': -73.987108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-18 22:16:00', 'Trip_Pickup_DateTime': '2009-06-18 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759225, 'End_Lon': -73.964697, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755935, 'Start_Lon': -73.968943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-02 06:47:00', 'Trip_Pickup_DateTime': '2009-06-02 06:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7687, 'End_Lon': -73.955327, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760452, 'Start_Lon': -73.961257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-07 21:48:00', 'Trip_Pickup_DateTime': '2009-06-07 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750567, 'End_Lon': -73.991047, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747695, 'Start_Lon': -73.972712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-28 01:25:00', 'Trip_Pickup_DateTime': '2009-06-28 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76505, 'End_Lon': -73.978308, 'Fare_Amt': 30.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76891, 'Start_Lon': -73.862627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.5, 'Trip_Distance': 11.12, 'Trip_Dropoff_DateTime': '2009-06-08 11:05:00', 'Trip_Pickup_DateTime': '2009-06-08 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780607, 'End_Lon': -73.952747, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780607, 'Start_Lon': -73.952747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.22, 'Trip_Dropoff_DateTime': '2009-06-26 08:36:00', 'Trip_Pickup_DateTime': '2009-06-26 08:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775068, 'End_Lon': -73.98155, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783573, 'Start_Lon': -73.981867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-25 19:29:00', 'Trip_Pickup_DateTime': '2009-06-25 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758575, 'End_Lon': -73.967467, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730125, 'Start_Lon': -73.983405, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-04 09:40:00', 'Trip_Pickup_DateTime': '2009-06-04 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756313, 'End_Lon': -73.978195, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761545, 'Start_Lon': -73.979227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-05 08:28:00', 'Trip_Pickup_DateTime': '2009-06-05 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741567, 'End_Lon': -73.985337, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750615, 'Start_Lon': -73.976698, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-02 12:54:00', 'Trip_Pickup_DateTime': '2009-06-02 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713238, 'End_Lon': -74.01323, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77019, 'Start_Lon': -73.957358, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.6, 'Trip_Distance': 9.13, 'Trip_Dropoff_DateTime': '2009-06-04 22:57:00', 'Trip_Pickup_DateTime': '2009-06-04 22:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777883, 'End_Lon': -73.943657, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787215, 'Start_Lon': -73.954012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-24 08:54:00', 'Trip_Pickup_DateTime': '2009-06-24 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78628, 'End_Lon': -73.969362, 'Fare_Amt': 18.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726882, 'Start_Lon': -73.988932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 5.69, 'Trip_Dropoff_DateTime': '2009-06-28 14:41:00', 'Trip_Pickup_DateTime': '2009-06-28 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737108, 'End_Lon': -73.99636, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731068, 'Start_Lon': -74.00413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-27 03:59:00', 'Trip_Pickup_DateTime': '2009-06-27 03:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780865, 'End_Lon': -73.981042, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762055, 'Start_Lon': -73.986177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-05 00:01:00', 'Trip_Pickup_DateTime': '2009-06-04 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702032, 'End_Lon': -73.936703, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725882, 'Start_Lon': -73.989685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-08 16:21:00', 'Trip_Pickup_DateTime': '2009-06-08 15:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72617, 'End_Lon': -74.005623, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743518, 'Start_Lon': -73.9809, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-05 23:10:00', 'Trip_Pickup_DateTime': '2009-06-05 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754028, 'End_Lon': -73.97824, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758067, 'Start_Lon': -73.985017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-08 01:20:00', 'Trip_Pickup_DateTime': '2009-06-08 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775433, 'End_Lon': -73.953813, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765327, 'Start_Lon': -73.970462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-27 16:03:00', 'Trip_Pickup_DateTime': '2009-06-27 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74443, 'End_Lon': -73.985458, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76253, 'Start_Lon': -73.982053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-05 19:39:00', 'Trip_Pickup_DateTime': '2009-06-05 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728847, 'End_Lon': -74.000665, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746373, 'Start_Lon': -73.994218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-04 08:34:00', 'Trip_Pickup_DateTime': '2009-06-04 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741963, 'End_Lon': -73.98518, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727972, 'Start_Lon': -73.993047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-05 12:07:00', 'Trip_Pickup_DateTime': '2009-06-05 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739272, 'End_Lon': -73.978447, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755025, 'Start_Lon': -73.97673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-25 18:37:00', 'Trip_Pickup_DateTime': '2009-06-25 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730855, 'End_Lon': -73.99268, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739807, 'Start_Lon': -73.998555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-24 07:03:00', 'Trip_Pickup_DateTime': '2009-06-24 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761862, 'End_Lon': -73.985077, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743487, 'Start_Lon': -74.007115, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-02 08:59:00', 'Trip_Pickup_DateTime': '2009-06-02 08:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78218, 'End_Lon': -73.948277, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773797, 'Start_Lon': -73.948727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-06 10:38:00', 'Trip_Pickup_DateTime': '2009-06-06 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761082, 'End_Lon': -73.97997, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76227, 'Start_Lon': -73.98569, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-05 22:32:00', 'Trip_Pickup_DateTime': '2009-06-05 22:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722535, 'End_Lon': -73.99748, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747277, 'Start_Lon': -73.979217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-28 11:58:00', 'Trip_Pickup_DateTime': '2009-06-28 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730992, 'End_Lon': -74.00806, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757922, 'Start_Lon': -73.988968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-24 08:27:00', 'Trip_Pickup_DateTime': '2009-06-24 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761118, 'End_Lon': -73.966923, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762103, 'Start_Lon': -73.980912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-05 09:23:00', 'Trip_Pickup_DateTime': '2009-06-05 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763095, 'End_Lon': -73.988113, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715913, 'Start_Lon': -74.01521, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-25 18:31:00', 'Trip_Pickup_DateTime': '2009-06-25 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748005, 'End_Lon': -73.98575, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759737, 'Start_Lon': -73.987883, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-07 06:15:00', 'Trip_Pickup_DateTime': '2009-06-07 06:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76835, 'End_Lon': -73.982247, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778547, 'Start_Lon': -73.98209, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-25 18:38:00', 'Trip_Pickup_DateTime': '2009-06-25 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723388, 'End_Lon': -73.9869, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730023, 'Start_Lon': -73.985827, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-23 22:16:00', 'Trip_Pickup_DateTime': '2009-06-23 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733825, 'End_Lon': -73.997971, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.727538, 'Start_Lon': -73.985804, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-20 12:25:10', 'Trip_Pickup_DateTime': '2009-06-20 12:19:31', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.730592, 'End_Lon': -74.000492, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726957, 'Start_Lon': -73.98006, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-28 10:52:00', 'Trip_Pickup_DateTime': '2009-06-28 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761798, 'End_Lon': -73.961378, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75012, 'Start_Lon': -73.991305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-02 18:17:00', 'Trip_Pickup_DateTime': '2009-06-02 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752245, 'End_Lon': -73.976785, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762443, 'Start_Lon': -73.986133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-05 16:55:00', 'Trip_Pickup_DateTime': '2009-06-05 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.656305, 'End_Lon': -73.949465, 'Fare_Amt': 51.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770443, 'Start_Lon': -73.865225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 51.3, 'Trip_Distance': 17.63, 'Trip_Dropoff_DateTime': '2009-06-08 10:15:00', 'Trip_Pickup_DateTime': '2009-06-08 08:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744243, 'End_Lon': -73.974935, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780783, 'Start_Lon': -73.945908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-08 14:05:00', 'Trip_Pickup_DateTime': '2009-06-08 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745077, 'End_Lon': -73.982855, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755558, 'Start_Lon': -73.973058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-02 19:07:00', 'Trip_Pickup_DateTime': '2009-06-02 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748588, 'End_Lon': -73.988482, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756678, 'Start_Lon': -73.983052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-25 23:28:00', 'Trip_Pickup_DateTime': '2009-06-25 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748437, 'End_Lon': -73.98877, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74438, 'Start_Lon': -73.98093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-06 03:23:00', 'Trip_Pickup_DateTime': '2009-06-06 03:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78997, 'End_Lon': -73.975068, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780118, 'Start_Lon': -73.980553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-05 19:40:00', 'Trip_Pickup_DateTime': '2009-06-05 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76971, 'End_Lon': -73.95702, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754553, 'Start_Lon': -73.984125, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-23 22:34:00', 'Trip_Pickup_DateTime': '2009-06-23 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740163, 'End_Lon': -73.998657, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739843, 'Start_Lon': -73.989427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-07 20:48:00', 'Trip_Pickup_DateTime': '2009-06-07 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721955, 'End_Lon': -74.005248, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719367, 'Start_Lon': -73.989542, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-06 04:24:00', 'Trip_Pickup_DateTime': '2009-06-06 04:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.667557, 'End_Lon': -73.982982, 'Fare_Amt': 50.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.645242, 'Start_Lon': -73.776698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.6, 'Trip_Distance': 23.38, 'Trip_Dropoff_DateTime': '2009-06-27 00:55:00', 'Trip_Pickup_DateTime': '2009-06-27 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762583, 'End_Lon': -73.972123, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758047, 'Start_Lon': -73.975072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-27 16:39:00', 'Trip_Pickup_DateTime': '2009-06-27 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723905, 'End_Lon': -73.978993, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729735, 'Start_Lon': -73.991678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-27 17:09:00', 'Trip_Pickup_DateTime': '2009-06-27 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810907, 'End_Lon': -73.952442, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79935, 'Start_Lon': -73.96309, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-28 18:36:00', 'Trip_Pickup_DateTime': '2009-06-28 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740223, 'End_Lon': -74.008138, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745523, 'Start_Lon': -73.975445, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-04 23:52:00', 'Trip_Pickup_DateTime': '2009-06-04 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751358, 'End_Lon': -74.007002, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742807, 'Start_Lon': -74.00774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-28 16:17:00', 'Trip_Pickup_DateTime': '2009-06-28 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741518, 'End_Lon': -73.97699, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777513, 'Start_Lon': -73.961353, 'Tip_Amt': 1.85, 'Tolls_Amt': 0.0, 'Total_Amt': 13.95, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-08 10:27:00', 'Trip_Pickup_DateTime': '2009-06-08 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756943, 'End_Lon': -73.986223, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74763, 'Start_Lon': -73.985137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-23 20:54:00', 'Trip_Pickup_DateTime': '2009-06-23 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775643, 'End_Lon': -73.984017, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739317, 'Start_Lon': -73.98743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-28 10:59:00', 'Trip_Pickup_DateTime': '2009-06-28 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779428, 'End_Lon': -73.947453, 'Fare_Amt': 18.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73367, 'Start_Lon': -74.00733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.39, 'Trip_Dropoff_DateTime': '2009-06-28 00:51:00', 'Trip_Pickup_DateTime': '2009-06-28 00:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762843, 'End_Lon': -73.989535, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771722, 'Start_Lon': -73.982763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-28 22:57:00', 'Trip_Pickup_DateTime': '2009-06-28 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753838, 'End_Lon': -73.982203, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736645, 'Start_Lon': -73.977723, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-29 09:24:00', 'Trip_Pickup_DateTime': '2009-06-29 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763193, 'End_Lon': -73.913497, 'Fare_Amt': 31.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711072, 'Start_Lon': -73.94928, 'Tip_Amt': 6.36, 'Tolls_Amt': 0.0, 'Total_Amt': 38.16, 'Trip_Distance': 12.29, 'Trip_Dropoff_DateTime': '2009-06-27 04:18:00', 'Trip_Pickup_DateTime': '2009-06-27 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744583, 'End_Lon': -73.991215, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.74656, 'Start_Lon': -74.001622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-24 21:16:21', 'Trip_Pickup_DateTime': '2009-06-24 21:11:26', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.774745, 'End_Lon': -73.956925, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759597, 'Start_Lon': -73.995165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.39, 'Trip_Dropoff_DateTime': '2009-06-28 11:58:00', 'Trip_Pickup_DateTime': '2009-06-28 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7558, 'End_Lon': -73.882425, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763968, 'Start_Lon': -73.978628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 5.91, 'Trip_Dropoff_DateTime': '2009-06-24 00:55:00', 'Trip_Pickup_DateTime': '2009-06-24 00:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775483, 'End_Lon': -73.982128, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792217, 'Start_Lon': -73.975528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-27 17:07:00', 'Trip_Pickup_DateTime': '2009-06-27 17:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80073, 'End_Lon': -73.96652, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783942, 'Start_Lon': -73.977847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-27 22:48:00', 'Trip_Pickup_DateTime': '2009-06-27 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75041, 'End_Lon': -73.990847, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724262, 'Start_Lon': -73.999337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-27 00:59:00', 'Trip_Pickup_DateTime': '2009-06-27 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754628, 'End_Lon': -73.985395, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782018, 'Start_Lon': -73.975537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-07 11:33:00', 'Trip_Pickup_DateTime': '2009-06-07 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781745, 'End_Lon': -73.957295, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719672, 'Start_Lon': -74.005422, 'Tip_Amt': 3.88, 'Tolls_Amt': 0.0, 'Total_Amt': 23.28, 'Trip_Distance': 5.6, 'Trip_Dropoff_DateTime': '2009-06-07 00:48:00', 'Trip_Pickup_DateTime': '2009-06-07 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731547, 'End_Lon': -73.985185, 'Fare_Amt': 10.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715225, 'Start_Lon': -74.009342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-07 19:41:00', 'Trip_Pickup_DateTime': '2009-06-07 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774208, 'End_Lon': -73.982442, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768462, 'Start_Lon': -73.955685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-05 17:58:00', 'Trip_Pickup_DateTime': '2009-06-05 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764898, 'End_Lon': -73.96403, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762437, 'Start_Lon': -73.971445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-26 01:28:00', 'Trip_Pickup_DateTime': '2009-06-26 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754517, 'End_Lon': -73.972957, 'Fare_Amt': 23.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768878, 'Start_Lon': -73.862678, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.95, 'Trip_Distance': 9.34, 'Trip_Dropoff_DateTime': '2009-06-05 23:54:00', 'Trip_Pickup_DateTime': '2009-06-05 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78057, 'End_Lon': -73.981875, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797017, 'Start_Lon': -73.97206, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-06 09:28:00', 'Trip_Pickup_DateTime': '2009-06-06 09:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790297, 'End_Lon': -73.965612, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7785, 'Start_Lon': -73.981578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-06 00:15:00', 'Trip_Pickup_DateTime': '2009-06-06 00:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753965, 'End_Lon': -73.98044, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772422, 'Start_Lon': -73.960695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-05 08:19:00', 'Trip_Pickup_DateTime': '2009-06-05 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800142, 'End_Lon': -73.969608, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75374, 'Start_Lon': -73.9769, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 4.34, 'Trip_Dropoff_DateTime': '2009-06-24 20:02:00', 'Trip_Pickup_DateTime': '2009-06-24 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.698102, 'End_Lon': -73.972683, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774757, 'Start_Lon': -73.954047, 'Tip_Amt': 5.22, 'Tolls_Amt': 0.0, 'Total_Amt': 31.32, 'Trip_Distance': 9.19, 'Trip_Dropoff_DateTime': '2009-06-29 08:06:00', 'Trip_Pickup_DateTime': '2009-06-29 07:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751838, 'End_Lon': -73.976083, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769213, 'Start_Lon': -73.96726, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-03 10:51:00', 'Trip_Pickup_DateTime': '2009-06-03 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742637, 'End_Lon': -73.98224, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734537, 'Start_Lon': -73.989935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.09, 'Trip_Dropoff_DateTime': '2009-06-28 22:44:00', 'Trip_Pickup_DateTime': '2009-06-28 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765097, 'End_Lon': -73.979717, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758278, 'Start_Lon': -73.975947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-07 11:37:00', 'Trip_Pickup_DateTime': '2009-06-07 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780797, 'End_Lon': -73.951725, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758837, 'Start_Lon': -73.96809, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-02 23:37:00', 'Trip_Pickup_DateTime': '2009-06-02 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756358, 'End_Lon': -73.983637, 'Fare_Amt': 31.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768928, 'Start_Lon': -73.862643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.7, 'Trip_Distance': 13.15, 'Trip_Dropoff_DateTime': '2009-06-26 10:55:00', 'Trip_Pickup_DateTime': '2009-06-26 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746058, 'End_Lon': -73.982133, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72283, 'Start_Lon': -73.982762, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-06 10:59:00', 'Trip_Pickup_DateTime': '2009-06-06 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755177, 'End_Lon': -73.975777, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756107, 'Start_Lon': -73.985647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-02 11:47:00', 'Trip_Pickup_DateTime': '2009-06-02 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769585, 'End_Lon': -73.964005, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746695, 'Start_Lon': -73.992053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-05 10:05:00', 'Trip_Pickup_DateTime': '2009-06-05 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740265, 'End_Lon': -73.9791, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752105, 'Start_Lon': -73.986012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-02 19:24:00', 'Trip_Pickup_DateTime': '2009-06-02 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735168, 'End_Lon': -73.990377, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772948, 'Start_Lon': -73.952083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.45, 'Trip_Dropoff_DateTime': '2009-06-26 09:48:00', 'Trip_Pickup_DateTime': '2009-06-26 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763977, 'End_Lon': -73.988605, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.806808, 'Start_Lon': -73.964962, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-29 01:22:00', 'Trip_Pickup_DateTime': '2009-06-29 01:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.859308, 'End_Lon': -73.928602, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76621, 'Start_Lon': -73.98316, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.2, 'Trip_Distance': 9.1, 'Trip_Dropoff_DateTime': '2009-06-02 20:19:00', 'Trip_Pickup_DateTime': '2009-06-02 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777868, 'End_Lon': -73.948688, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743057, 'Start_Lon': -73.9741, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-29 08:03:00', 'Trip_Pickup_DateTime': '2009-06-29 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762822, 'End_Lon': -73.960015, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752107, 'Start_Lon': -73.969782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-05 18:48:00', 'Trip_Pickup_DateTime': '2009-06-05 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723898, 'End_Lon': -73.978895, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721482, 'Start_Lon': -73.988837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-06 00:57:00', 'Trip_Pickup_DateTime': '2009-06-06 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76911, 'End_Lon': -73.963307, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7754, 'Start_Lon': -73.964845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-03 23:13:00', 'Trip_Pickup_DateTime': '2009-06-03 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760935, 'End_Lon': -73.968938, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75749, 'Start_Lon': -73.975817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-02 13:36:00', 'Trip_Pickup_DateTime': '2009-06-02 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77422, 'End_Lon': -73.871065, 'Fare_Amt': 27.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.690948, 'Start_Lon': -73.991792, 'Tip_Amt': 4.2, 'Tolls_Amt': 0.0, 'Total_Amt': 32.9, 'Trip_Distance': 11.3, 'Trip_Dropoff_DateTime': '2009-06-24 19:49:00', 'Trip_Pickup_DateTime': '2009-06-24 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778568, 'End_Lon': -73.948932, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777883, 'Start_Lon': -73.951675, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-28 21:46:00', 'Trip_Pickup_DateTime': '2009-06-28 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779268, 'End_Lon': -73.952945, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773515, 'Start_Lon': -73.955375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-05 19:02:00', 'Trip_Pickup_DateTime': '2009-06-05 18:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76084, 'End_Lon': -73.964248, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707757, 'Start_Lon': -73.932212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-24 20:29:00', 'Trip_Pickup_DateTime': '2009-06-24 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72264, 'End_Lon': -73.987933, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72979, 'Start_Lon': -73.998727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-05 23:24:00', 'Trip_Pickup_DateTime': '2009-06-05 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756422, 'End_Lon': -73.962262, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762557, 'Start_Lon': -73.967905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-02 18:43:00', 'Trip_Pickup_DateTime': '2009-06-02 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764195, 'End_Lon': -73.980675, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729197, 'Start_Lon': -73.97818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-07 01:16:00', 'Trip_Pickup_DateTime': '2009-06-07 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77249, 'End_Lon': -73.951757, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76914, 'Start_Lon': -73.955453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-02 08:32:00', 'Trip_Pickup_DateTime': '2009-06-02 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.66105, 'End_Lon': -73.961057, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774517, 'Start_Lon': -73.923867, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 29.5, 'Trip_Distance': 10.8, 'Trip_Dropoff_DateTime': '2009-06-04 01:34:00', 'Trip_Pickup_DateTime': '2009-06-04 01:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7553, 'End_Lon': -73.976247, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763215, 'Start_Lon': -73.9714, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-02 11:07:00', 'Trip_Pickup_DateTime': '2009-06-02 10:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725338, 'End_Lon': -73.984112, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775872, 'Start_Lon': -73.953113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 5.53, 'Trip_Dropoff_DateTime': '2009-06-02 19:16:00', 'Trip_Pickup_DateTime': '2009-06-02 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762403, 'End_Lon': -73.978807, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727732, 'Start_Lon': -74.0032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-04 18:12:00', 'Trip_Pickup_DateTime': '2009-06-04 18:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731373, 'End_Lon': -74.007862, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73785, 'Start_Lon': -73.988403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-06 21:43:00', 'Trip_Pickup_DateTime': '2009-06-06 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746538, 'End_Lon': -74.005062, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741503, 'Start_Lon': -73.99374, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-06 13:53:00', 'Trip_Pickup_DateTime': '2009-06-06 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716612, 'End_Lon': -74.002673, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744742, 'Start_Lon': -73.98095, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-06 01:54:00', 'Trip_Pickup_DateTime': '2009-06-06 01:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753698, 'End_Lon': -73.969363, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789238, 'Start_Lon': -73.954713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-04 16:02:00', 'Trip_Pickup_DateTime': '2009-06-04 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75199, 'End_Lon': -73.978207, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747722, 'Start_Lon': -73.985248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-06 22:23:00', 'Trip_Pickup_DateTime': '2009-06-06 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785908, 'End_Lon': -73.95128, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761815, 'Start_Lon': -73.97912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-05 13:46:00', 'Trip_Pickup_DateTime': '2009-06-05 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728558, 'End_Lon': -74.005063, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75162, 'Start_Lon': -73.97967, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-24 13:39:00', 'Trip_Pickup_DateTime': '2009-06-24 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741413, 'End_Lon': -73.987583, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75089, 'Start_Lon': -73.990787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-05 07:11:00', 'Trip_Pickup_DateTime': '2009-06-05 07:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751422, 'End_Lon': -73.989658, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774073, 'Start_Lon': -73.948865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-05 08:52:00', 'Trip_Pickup_DateTime': '2009-06-05 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787333, 'End_Lon': -73.95411, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7702, 'Start_Lon': -73.964107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-04 17:10:00', 'Trip_Pickup_DateTime': '2009-06-04 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758687, 'End_Lon': -73.978743, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763488, 'Start_Lon': -73.973717, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-03 16:34:00', 'Trip_Pickup_DateTime': '2009-06-03 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751388, 'End_Lon': -73.99227, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739722, 'Start_Lon': -74.006963, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-07 22:58:00', 'Trip_Pickup_DateTime': '2009-06-07 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771987, 'End_Lon': -73.95289, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753297, 'Start_Lon': -73.972862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-07 01:41:00', 'Trip_Pickup_DateTime': '2009-06-07 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726453, 'End_Lon': -74.002583, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728255, 'Start_Lon': -73.994665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-07 02:02:00', 'Trip_Pickup_DateTime': '2009-06-07 01:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774633, 'End_Lon': -73.92206, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760867, 'Start_Lon': -73.957198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-27 03:52:00', 'Trip_Pickup_DateTime': '2009-06-27 03:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.826913, 'End_Lon': -73.949877, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758208, 'Start_Lon': -73.990303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.12, 'Trip_Dropoff_DateTime': '2009-06-02 05:11:00', 'Trip_Pickup_DateTime': '2009-06-02 04:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768208, 'End_Lon': -73.981087, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754618, 'Start_Lon': -73.982915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-05 02:15:00', 'Trip_Pickup_DateTime': '2009-06-05 02:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75512, 'End_Lon': -73.890052, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755177, 'Start_Lon': -73.8896, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.04, 'Trip_Dropoff_DateTime': '2009-06-06 23:48:00', 'Trip_Pickup_DateTime': '2009-06-06 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772742, 'End_Lon': -73.946305, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789193, 'Start_Lon': -73.97579, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-02 18:10:00', 'Trip_Pickup_DateTime': '2009-06-02 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734217, 'End_Lon': -73.989435, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736263, 'Start_Lon': -73.984972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-06 10:02:00', 'Trip_Pickup_DateTime': '2009-06-06 09:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787566, 'End_Lon': -73.976753, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73118, 'Start_Lon': -74.0013, 'Tip_Amt': 2.92, 'Tolls_Amt': 0.0, 'Total_Amt': 17.02, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-06 20:42:24', 'Trip_Pickup_DateTime': '2009-06-06 20:25:13', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.762292, 'End_Lon': -73.97189, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782182, 'Start_Lon': -73.953312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-03 09:18:00', 'Trip_Pickup_DateTime': '2009-06-03 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766837, 'End_Lon': -73.960918, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760862, 'Start_Lon': -73.979988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-03 14:03:00', 'Trip_Pickup_DateTime': '2009-06-03 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750545, 'End_Lon': -73.991352, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784105, 'Start_Lon': -73.97999, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-07 01:31:00', 'Trip_Pickup_DateTime': '2009-06-07 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78845, 'End_Lon': -73.974457, 'Fare_Amt': 28.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.674245, 'Start_Lon': -73.985703, 'Tip_Amt': 5.88, 'Tolls_Amt': 0.0, 'Total_Amt': 35.28, 'Trip_Distance': 12.4, 'Trip_Dropoff_DateTime': '2009-06-07 01:37:00', 'Trip_Pickup_DateTime': '2009-06-07 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726358, 'End_Lon': -73.989362, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762258, 'Start_Lon': -73.970135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-05 21:03:00', 'Trip_Pickup_DateTime': '2009-06-05 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77746, 'End_Lon': -73.94901, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789713, 'Start_Lon': -73.972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-04 23:06:00', 'Trip_Pickup_DateTime': '2009-06-04 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77684, 'End_Lon': -73.946612, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727912, 'Start_Lon': -73.991, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.27, 'Trip_Dropoff_DateTime': '2009-06-03 02:08:00', 'Trip_Pickup_DateTime': '2009-06-03 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746, 'End_Lon': -73.982165, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739955, 'Start_Lon': -74.006032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-27 20:34:00', 'Trip_Pickup_DateTime': '2009-06-27 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772665, 'End_Lon': -73.95288, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751908, 'Start_Lon': -73.99348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-08 06:04:00', 'Trip_Pickup_DateTime': '2009-06-08 05:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749913, 'End_Lon': -73.992212, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752522, 'Start_Lon': -73.987723, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-04 14:01:00', 'Trip_Pickup_DateTime': '2009-06-04 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732323, 'End_Lon': -74.003458, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743587, 'Start_Lon': -73.996047, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-03 13:26:00', 'Trip_Pickup_DateTime': '2009-06-03 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-07 02:03:00', 'Trip_Pickup_DateTime': '2009-06-07 01:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73398, 'End_Lon': -73.999105, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739253, 'Start_Lon': -73.99916, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-06 14:14:00', 'Trip_Pickup_DateTime': '2009-06-06 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724662, 'End_Lon': -74.001885, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744498, 'Start_Lon': -73.975995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-04 07:50:00', 'Trip_Pickup_DateTime': '2009-06-04 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799405, 'End_Lon': -73.932997, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75463, 'Start_Lon': -73.965807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-07 01:05:00', 'Trip_Pickup_DateTime': '2009-06-07 00:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763912, 'End_Lon': -73.97134, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763912, 'Start_Lon': -73.97134, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-04 08:38:00', 'Trip_Pickup_DateTime': '2009-06-04 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747958, 'End_Lon': -73.992747, 'Fare_Amt': 15.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79721, 'Start_Lon': -73.970013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-06 14:17:00', 'Trip_Pickup_DateTime': '2009-06-06 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67539, 'End_Lon': -73.959868, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748297, 'Start_Lon': -73.988198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.31, 'Trip_Dropoff_DateTime': '2009-06-07 07:10:00', 'Trip_Pickup_DateTime': '2009-06-07 06:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.627023, 'End_Lon': -74.01459, 'Fare_Amt': 32.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740018, 'Start_Lon': -73.994947, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 36.25, 'Trip_Distance': 10.66, 'Trip_Dropoff_DateTime': '2009-06-03 16:01:00', 'Trip_Pickup_DateTime': '2009-06-03 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750863, 'End_Lon': -73.987962, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75551, 'Start_Lon': -73.97079, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-02 18:11:00', 'Trip_Pickup_DateTime': '2009-06-02 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765685, 'End_Lon': -73.976495, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796698, 'Start_Lon': -73.970487, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-07 13:25:00', 'Trip_Pickup_DateTime': '2009-06-07 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75219, 'End_Lon': -73.983593, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745712, 'Start_Lon': -73.984383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-03 18:24:00', 'Trip_Pickup_DateTime': '2009-06-03 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742567, 'End_Lon': -73.9897, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748228, 'Start_Lon': -74.00329, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-08 09:13:00', 'Trip_Pickup_DateTime': '2009-06-08 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775527, 'End_Lon': -73.956452, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754618, 'Start_Lon': -73.987533, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-02 20:21:00', 'Trip_Pickup_DateTime': '2009-06-02 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773665, 'End_Lon': -73.961698, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759315, 'Start_Lon': -73.957055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-05 12:22:00', 'Trip_Pickup_DateTime': '2009-06-05 12:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772572, 'End_Lon': -73.965983, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752782, 'Start_Lon': -73.973378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-05 16:25:00', 'Trip_Pickup_DateTime': '2009-06-05 16:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758448, 'End_Lon': -73.96945, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796418, 'Start_Lon': -73.970467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-24 08:47:00', 'Trip_Pickup_DateTime': '2009-06-24 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763887, 'End_Lon': -73.9759, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74491, 'Start_Lon': -73.932112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-24 06:00:00', 'Trip_Pickup_DateTime': '2009-06-24 05:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.633368, 'End_Lon': -73.933233, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738678, 'Start_Lon': -74.003357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.6, 'Trip_Distance': 9.8, 'Trip_Dropoff_DateTime': '2009-06-04 23:13:00', 'Trip_Pickup_DateTime': '2009-06-04 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7395, 'End_Lon': -73.984858, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747695, 'Start_Lon': -73.978505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-28 16:40:00', 'Trip_Pickup_DateTime': '2009-06-28 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705068, 'End_Lon': -74.016467, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734157, 'Start_Lon': -73.999615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-07 15:29:00', 'Trip_Pickup_DateTime': '2009-06-07 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752582, 'End_Lon': -73.989808, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76264, 'Start_Lon': -73.994853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-08 12:17:00', 'Trip_Pickup_DateTime': '2009-06-08 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764343, 'End_Lon': -73.973623, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775445, 'Start_Lon': -73.962865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-02 17:48:00', 'Trip_Pickup_DateTime': '2009-06-02 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75927, 'End_Lon': -73.97238, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77962, 'Start_Lon': -73.95758, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-03 07:46:00', 'Trip_Pickup_DateTime': '2009-06-03 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75045, 'End_Lon': -73.994678, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767932, 'Start_Lon': -73.986582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-07 14:51:00', 'Trip_Pickup_DateTime': '2009-06-07 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719062, 'End_Lon': -73.96097, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729997, 'Start_Lon': -73.957597, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-06 02:03:00', 'Trip_Pickup_DateTime': '2009-06-06 02:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773355, 'End_Lon': -73.965057, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79685, 'Start_Lon': -73.970023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-05 15:51:00', 'Trip_Pickup_DateTime': '2009-06-05 15:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789315, 'End_Lon': -73.952557, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77948, 'Start_Lon': -73.955347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-05 06:58:00', 'Trip_Pickup_DateTime': '2009-06-05 06:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739594, 'End_Lon': -73.999138, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.734366, 'Start_Lon': -74.006567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-19 22:56:52', 'Trip_Pickup_DateTime': '2009-06-19 22:50:47', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.73412, 'End_Lon': -73.98027, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763671, 'Start_Lon': -73.981235, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-20 14:22:58', 'Trip_Pickup_DateTime': '2009-06-20 14:06:11', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.776813, 'End_Lon': -73.988873, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77377, 'Start_Lon': -73.98146, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-04 20:27:00', 'Trip_Pickup_DateTime': '2009-06-04 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748247, 'End_Lon': -74.001733, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724953, 'Start_Lon': -73.995487, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-06 17:34:00', 'Trip_Pickup_DateTime': '2009-06-06 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745323, 'End_Lon': -73.990557, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764348, 'Start_Lon': -73.955355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-07 19:59:00', 'Trip_Pickup_DateTime': '2009-06-07 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727643, 'End_Lon': -74.007213, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745838, 'Start_Lon': -73.998013, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-08 09:51:00', 'Trip_Pickup_DateTime': '2009-06-08 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773575, 'End_Lon': -73.945962, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79669, 'Start_Lon': -73.970417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-02 19:40:00', 'Trip_Pickup_DateTime': '2009-06-02 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752867, 'End_Lon': -73.985652, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720355, 'Start_Lon': -73.989713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-02 09:12:00', 'Trip_Pickup_DateTime': '2009-06-02 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731428, 'End_Lon': -73.990977, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739463, 'Start_Lon': -73.999047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-02 22:02:00', 'Trip_Pickup_DateTime': '2009-06-02 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715307, 'End_Lon': -74.002602, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756537, 'Start_Lon': -73.986215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-03 15:53:00', 'Trip_Pickup_DateTime': '2009-06-03 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749965, 'End_Lon': -73.97821, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750267, 'Start_Lon': -73.991218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-25 10:23:00', 'Trip_Pickup_DateTime': '2009-06-25 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740675, 'End_Lon': -74.005207, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738097, 'Start_Lon': -73.985807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-27 21:24:00', 'Trip_Pickup_DateTime': '2009-06-27 21:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75224, 'End_Lon': -73.966062, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734535, 'Start_Lon': -73.99618, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-04 09:08:00', 'Trip_Pickup_DateTime': '2009-06-04 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769658, 'End_Lon': -73.980843, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74338, 'Start_Lon': -73.917995, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 4.04, 'Trip_Dropoff_DateTime': '2009-06-08 05:49:00', 'Trip_Pickup_DateTime': '2009-06-08 05:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748623, 'End_Lon': -74.00211, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778935, 'Start_Lon': -73.985095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-06 18:12:00', 'Trip_Pickup_DateTime': '2009-06-06 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770958, 'End_Lon': -73.950895, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78441, 'Start_Lon': -73.947362, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-03 06:32:00', 'Trip_Pickup_DateTime': '2009-06-03 06:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747477, 'End_Lon': -73.981633, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759818, 'Start_Lon': -73.98518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-05 23:11:00', 'Trip_Pickup_DateTime': '2009-06-05 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756795, 'End_Lon': -73.975175, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758358, 'Start_Lon': -73.976605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-03 11:45:00', 'Trip_Pickup_DateTime': '2009-06-03 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723435, 'End_Lon': -73.985515, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763633, 'Start_Lon': -73.975903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-04 18:45:00', 'Trip_Pickup_DateTime': '2009-06-04 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761723, 'End_Lon': -73.990168, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772235, 'Start_Lon': -73.98252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-05 18:32:00', 'Trip_Pickup_DateTime': '2009-06-05 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74952, 'End_Lon': -73.991952, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762333, 'Start_Lon': -73.982222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-06 13:30:00', 'Trip_Pickup_DateTime': '2009-06-06 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760413, 'End_Lon': -73.976365, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705242, 'Start_Lon': -74.00768, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 5.84, 'Trip_Dropoff_DateTime': '2009-06-25 06:37:00', 'Trip_Pickup_DateTime': '2009-06-25 06:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762843, 'End_Lon': -73.967725, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772165, 'Start_Lon': -73.952887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-06 13:37:00', 'Trip_Pickup_DateTime': '2009-06-06 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726615, 'End_Lon': -73.986607, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644638, 'Start_Lon': -73.782048, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.39, 'Trip_Dropoff_DateTime': '2009-06-02 17:57:00', 'Trip_Pickup_DateTime': '2009-06-02 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768515, 'End_Lon': -73.925182, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71746, 'Start_Lon': -73.991192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 9.4, 'Trip_Dropoff_DateTime': '2009-06-18 23:20:00', 'Trip_Pickup_DateTime': '2009-06-18 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74474, 'End_Lon': -73.980813, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753402, 'Start_Lon': -73.97088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-02 08:36:00', 'Trip_Pickup_DateTime': '2009-06-02 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.668087, 'End_Lon': -73.987283, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.67267, 'Start_Lon': -73.993568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-06 23:06:00', 'Trip_Pickup_DateTime': '2009-06-06 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748803, 'End_Lon': -73.985212, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777045, 'Start_Lon': -73.959655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-07 17:25:00', 'Trip_Pickup_DateTime': '2009-06-07 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790985, 'End_Lon': -73.94367, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792003, 'Start_Lon': -73.971782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-02 11:32:00', 'Trip_Pickup_DateTime': '2009-06-02 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774123, 'End_Lon': -73.964832, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748567, 'Start_Lon': -73.974002, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-06 14:26:00', 'Trip_Pickup_DateTime': '2009-06-06 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753367, 'End_Lon': -73.937697, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790458, 'Start_Lon': -73.947672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.56, 'Trip_Dropoff_DateTime': '2009-06-16 19:55:00', 'Trip_Pickup_DateTime': '2009-06-16 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763307, 'End_Lon': -73.983827, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76253, 'Start_Lon': -73.974042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-04 23:42:00', 'Trip_Pickup_DateTime': '2009-06-04 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756817, 'End_Lon': -73.990018, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756032, 'Start_Lon': -73.989807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-08 06:31:00', 'Trip_Pickup_DateTime': '2009-06-08 06:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767297, 'End_Lon': -73.95479, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762118, 'Start_Lon': -73.965965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-22 17:15:00', 'Trip_Pickup_DateTime': '2009-06-22 17:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765693, 'End_Lon': -73.980175, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769962, 'Start_Lon': -73.991562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-08 09:00:00', 'Trip_Pickup_DateTime': '2009-06-08 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75601, 'End_Lon': -73.988533, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760625, 'Start_Lon': -73.99777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-26 23:13:00', 'Trip_Pickup_DateTime': '2009-06-26 23:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747597, 'End_Lon': -74.003952, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77885, 'Start_Lon': -73.962492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-26 20:25:00', 'Trip_Pickup_DateTime': '2009-06-26 20:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705208, 'End_Lon': -74.017297, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758725, 'Start_Lon': -73.985757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.21, 'Trip_Dropoff_DateTime': '2009-06-05 22:01:00', 'Trip_Pickup_DateTime': '2009-06-05 21:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788432, 'End_Lon': -73.9706, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768087, 'Start_Lon': -73.98349, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-24 14:38:00', 'Trip_Pickup_DateTime': '2009-06-24 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769908, 'End_Lon': -73.962575, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775695, 'Start_Lon': -73.944408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-02 13:02:00', 'Trip_Pickup_DateTime': '2009-06-02 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76456, 'End_Lon': -73.979435, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716215, 'Start_Lon': -74.007508, 'Tip_Amt': 4.07, 'Tolls_Amt': 0.0, 'Total_Amt': 20.37, 'Trip_Distance': 3.88, 'Trip_Dropoff_DateTime': '2009-06-26 19:00:00', 'Trip_Pickup_DateTime': '2009-06-26 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766225, 'End_Lon': -73.994392, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771682, 'Start_Lon': -73.95923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-26 20:08:00', 'Trip_Pickup_DateTime': '2009-06-26 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753438, 'End_Lon': -73.985013, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755523, 'Start_Lon': -73.99079, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-08 16:41:00', 'Trip_Pickup_DateTime': '2009-06-08 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753882, 'End_Lon': -73.96601, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752947, 'Start_Lon': -73.979283, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-26 16:41:00', 'Trip_Pickup_DateTime': '2009-06-26 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.64536, 'End_Lon': -73.776305, 'Fare_Amt': 29.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769095, 'Start_Lon': -73.862827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.3, 'Trip_Distance': 12.91, 'Trip_Dropoff_DateTime': '2009-06-03 19:16:00', 'Trip_Pickup_DateTime': '2009-06-03 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744508, 'End_Lon': -73.931505, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764313, 'Start_Lon': -73.955322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-26 15:34:00', 'Trip_Pickup_DateTime': '2009-06-26 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76414, 'End_Lon': -73.981845, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.657835, 'Start_Lon': -73.794803, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-07 00:04:00', 'Trip_Pickup_DateTime': '2009-06-06 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76415, 'End_Lon': -73.983125, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776395, 'Start_Lon': -73.981972, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-03 13:05:00', 'Trip_Pickup_DateTime': '2009-06-03 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74804, 'End_Lon': -73.996393, 'Fare_Amt': 12.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752093, 'Start_Lon': -73.944037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-07 23:58:00', 'Trip_Pickup_DateTime': '2009-06-07 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728742, 'End_Lon': -73.98764, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744263, 'Start_Lon': -73.976283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-24 18:33:00', 'Trip_Pickup_DateTime': '2009-06-24 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78611, 'End_Lon': -73.969212, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713838, 'Start_Lon': -74.008862, 'Tip_Amt': 3.86, 'Tolls_Amt': 0.0, 'Total_Amt': 23.16, 'Trip_Distance': 6.5, 'Trip_Dropoff_DateTime': '2009-06-29 10:58:00', 'Trip_Pickup_DateTime': '2009-06-29 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763285, 'End_Lon': -73.988492, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770542, 'Start_Lon': -73.95391, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-24 22:25:00', 'Trip_Pickup_DateTime': '2009-06-24 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774128, 'End_Lon': -73.948999, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.744247, 'Start_Lon': -73.981151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-23 22:42:36', 'Trip_Pickup_DateTime': '2009-06-23 22:30:37', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.77549, 'End_Lon': -73.98236, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810868, 'Start_Lon': -73.962993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-04 21:59:00', 'Trip_Pickup_DateTime': '2009-06-04 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.638812, 'End_Lon': -73.785892, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723717, 'Start_Lon': -74.003312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 17.67, 'Trip_Dropoff_DateTime': '2009-06-02 17:08:00', 'Trip_Pickup_DateTime': '2009-06-02 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761168, 'End_Lon': -73.974555, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768892, 'Start_Lon': -73.958302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-24 11:05:00', 'Trip_Pickup_DateTime': '2009-06-24 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782612, 'End_Lon': -73.951077, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756582, 'Start_Lon': -73.985173, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-05 16:13:00', 'Trip_Pickup_DateTime': '2009-06-05 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738727, 'End_Lon': -73.989993, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70993, 'Start_Lon': -74.016632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-03 12:00:00', 'Trip_Pickup_DateTime': '2009-06-03 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77355, 'End_Lon': -73.964065, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72536, 'Start_Lon': -73.996943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-07 16:22:00', 'Trip_Pickup_DateTime': '2009-06-07 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705417, 'End_Lon': -74.007193, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721368, 'Start_Lon': -73.983325, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-05 09:48:00', 'Trip_Pickup_DateTime': '2009-06-05 09:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72516, 'End_Lon': -73.983255, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766115, 'Start_Lon': -73.987058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-25 01:43:00', 'Trip_Pickup_DateTime': '2009-06-25 01:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736395, 'End_Lon': -73.98854, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738992, 'Start_Lon': -73.998533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-05 21:10:00', 'Trip_Pickup_DateTime': '2009-06-05 21:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69513, 'End_Lon': -74.177435, 'Fare_Amt': 59.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760285, 'Start_Lon': -73.984915, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.0, 'Total_Amt': 67.9, 'Trip_Distance': 17.65, 'Trip_Dropoff_DateTime': '2009-06-24 11:10:00', 'Trip_Pickup_DateTime': '2009-06-24 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81056, 'End_Lon': -73.958278, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764892, 'Start_Lon': -73.958103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-03 19:30:00', 'Trip_Pickup_DateTime': '2009-06-03 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78381, 'End_Lon': -73.983338, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781797, 'Start_Lon': -73.98077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-05 17:09:00', 'Trip_Pickup_DateTime': '2009-06-05 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705852, 'End_Lon': -74.00716, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709948, 'Start_Lon': -73.962542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-05 23:01:00', 'Trip_Pickup_DateTime': '2009-06-05 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778297, 'End_Lon': -73.945433, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734062, 'Start_Lon': -73.980543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-06 08:46:00', 'Trip_Pickup_DateTime': '2009-06-06 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783752, 'End_Lon': -73.980273, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736227, 'Start_Lon': -73.997585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-03 20:15:00', 'Trip_Pickup_DateTime': '2009-06-03 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73678, 'End_Lon': -73.988953, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724108, 'Start_Lon': -74.001478, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-27 16:27:00', 'Trip_Pickup_DateTime': '2009-06-27 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726943, 'End_Lon': -73.986493, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763222, 'Start_Lon': -73.96088, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-04 19:49:00', 'Trip_Pickup_DateTime': '2009-06-04 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751015, 'End_Lon': -73.990993, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755143, 'Start_Lon': -73.977733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-26 15:27:00', 'Trip_Pickup_DateTime': '2009-06-26 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751015, 'End_Lon': -73.9865, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762342, 'Start_Lon': -73.994123, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-04 14:25:00', 'Trip_Pickup_DateTime': '2009-06-04 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743268, 'End_Lon': -73.998363, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760915, 'Start_Lon': -73.984307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-03 07:52:00', 'Trip_Pickup_DateTime': '2009-06-03 07:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769878, 'End_Lon': -73.951592, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769878, 'Start_Lon': -73.951592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-07 08:31:00', 'Trip_Pickup_DateTime': '2009-06-07 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.819458, 'End_Lon': -74.01106, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799892, 'Start_Lon': -74.00192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-06 23:38:00', 'Trip_Pickup_DateTime': '2009-06-06 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76786, 'End_Lon': -73.964163, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778283, 'Start_Lon': -73.95664, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-06 14:05:00', 'Trip_Pickup_DateTime': '2009-06-06 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772337, 'End_Lon': -73.982332, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79267, 'Start_Lon': -73.973425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-04 18:06:00', 'Trip_Pickup_DateTime': '2009-06-04 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782653, 'End_Lon': -73.978207, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765888, 'Start_Lon': -73.955423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-02 16:52:00', 'Trip_Pickup_DateTime': '2009-06-02 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767277, 'End_Lon': -73.96648, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78329, 'Start_Lon': -73.956825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-03 12:19:00', 'Trip_Pickup_DateTime': '2009-06-03 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755428, 'End_Lon': -73.979318, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770762, 'Start_Lon': -73.991112, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-04 07:16:00', 'Trip_Pickup_DateTime': '2009-06-04 07:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749098, 'End_Lon': -73.99189, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762143, 'Start_Lon': -73.983707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-02 14:47:00', 'Trip_Pickup_DateTime': '2009-06-02 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804635, 'End_Lon': -73.966207, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762907, 'Start_Lon': -73.967705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.82, 'Trip_Dropoff_DateTime': '2009-06-05 19:10:00', 'Trip_Pickup_DateTime': '2009-06-05 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769112, 'End_Lon': -73.965185, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778402, 'Start_Lon': -73.980985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-03 09:43:00', 'Trip_Pickup_DateTime': '2009-06-03 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783283, 'End_Lon': -73.950817, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722385, 'Start_Lon': -74.003708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.81, 'Trip_Dropoff_DateTime': '2009-06-04 23:58:00', 'Trip_Pickup_DateTime': '2009-06-04 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749553, 'End_Lon': -73.972208, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747937, 'Start_Lon': -73.985565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-07 02:31:00', 'Trip_Pickup_DateTime': '2009-06-07 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739188, 'End_Lon': -73.995127, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737358, 'Start_Lon': -73.989467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-02 15:35:00', 'Trip_Pickup_DateTime': '2009-06-02 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727015, 'End_Lon': -73.991838, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721233, 'Start_Lon': -73.998627, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-03 14:36:00', 'Trip_Pickup_DateTime': '2009-06-03 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758437, 'End_Lon': -73.971822, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763365, 'Start_Lon': -73.977877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-02 14:51:00', 'Trip_Pickup_DateTime': '2009-06-02 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784475, 'End_Lon': -73.979738, 'Fare_Amt': 3.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790138, 'Start_Lon': -73.97506, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-06 16:11:00', 'Trip_Pickup_DateTime': '2009-06-06 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767395, 'End_Lon': -73.954893, 'Fare_Amt': 6.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762032, 'Start_Lon': -73.97352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-05 08:00:00', 'Trip_Pickup_DateTime': '2009-06-05 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735405, 'End_Lon': -74.008898, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747723, 'Start_Lon': -74.000312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-05 18:44:00', 'Trip_Pickup_DateTime': '2009-06-05 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746118, 'End_Lon': -73.914207, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766085, 'Start_Lon': -73.990817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.95, 'Trip_Dropoff_DateTime': '2009-06-06 13:20:00', 'Trip_Pickup_DateTime': '2009-06-06 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723977, 'End_Lon': -74.008122, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724715, 'Start_Lon': -73.998673, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-03 19:47:00', 'Trip_Pickup_DateTime': '2009-06-03 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786942, 'End_Lon': -73.979162, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76751, 'Start_Lon': -73.982715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-18 23:09:00', 'Trip_Pickup_DateTime': '2009-06-18 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757147, 'End_Lon': -73.97185, 'Fare_Amt': 20.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757665, 'Start_Lon': -73.971973, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.15, 'Trip_Distance': 8.8, 'Trip_Dropoff_DateTime': '2009-06-18 22:01:00', 'Trip_Pickup_DateTime': '2009-06-18 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73758, 'End_Lon': -73.988562, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747877, 'Start_Lon': -73.98726, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-02 20:41:00', 'Trip_Pickup_DateTime': '2009-06-02 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76753, 'End_Lon': -73.955582, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741998, 'Start_Lon': -73.980897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-06 17:15:00', 'Trip_Pickup_DateTime': '2009-06-06 17:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756223, 'End_Lon': -73.989965, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728517, 'Start_Lon': -74.002738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-18 22:58:00', 'Trip_Pickup_DateTime': '2009-06-18 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72136, 'End_Lon': -73.995283, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762452, 'Start_Lon': -73.983218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-06 23:07:00', 'Trip_Pickup_DateTime': '2009-06-06 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724953, 'End_Lon': -74.00765, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717292, 'Start_Lon': -74.009282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-02 14:14:00', 'Trip_Pickup_DateTime': '2009-06-02 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757628, 'End_Lon': -73.92236, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761298, 'Start_Lon': -73.966372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-04 02:07:00', 'Trip_Pickup_DateTime': '2009-06-04 01:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768447, 'End_Lon': -73.982477, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744765, 'Start_Lon': -74.00652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-26 04:44:00', 'Trip_Pickup_DateTime': '2009-06-26 04:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764488, 'End_Lon': -73.955557, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772182, 'Start_Lon': -73.952203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-05 09:55:00', 'Trip_Pickup_DateTime': '2009-06-05 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758658, 'End_Lon': -73.977002, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775873, 'Start_Lon': -73.961317, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-04 17:01:00', 'Trip_Pickup_DateTime': '2009-06-04 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757328, 'End_Lon': -73.966858, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782373, 'Start_Lon': -73.948677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-02 08:39:00', 'Trip_Pickup_DateTime': '2009-06-02 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765127, 'End_Lon': -73.9814, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784542, 'Start_Lon': -73.98088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-28 08:15:00', 'Trip_Pickup_DateTime': '2009-06-28 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788942, 'End_Lon': -73.966648, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779527, 'Start_Lon': -73.98801, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-08 10:57:00', 'Trip_Pickup_DateTime': '2009-06-08 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742652, 'End_Lon': -73.9775, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77632, 'Start_Lon': -73.952835, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-06 12:58:00', 'Trip_Pickup_DateTime': '2009-06-06 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762792, 'End_Lon': -73.959782, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751645, 'Start_Lon': -73.97893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-05 17:43:00', 'Trip_Pickup_DateTime': '2009-06-05 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785407, 'End_Lon': -73.96922, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754635, 'Start_Lon': -73.983403, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-03 10:15:00', 'Trip_Pickup_DateTime': '2009-06-03 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768947, 'End_Lon': -73.992362, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780448, 'Start_Lon': -73.976412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-25 22:28:00', 'Trip_Pickup_DateTime': '2009-06-25 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76751, 'End_Lon': -73.91868, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729243, 'Start_Lon': -73.978395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.3, 'Trip_Dropoff_DateTime': '2009-06-07 23:59:00', 'Trip_Pickup_DateTime': '2009-06-07 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760062, 'End_Lon': -73.986753, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743508, 'Start_Lon': -73.998993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-03 19:08:00', 'Trip_Pickup_DateTime': '2009-06-03 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70822, 'End_Lon': -73.954912, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719087, 'Start_Lon': -73.990533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-05 02:54:00', 'Trip_Pickup_DateTime': '2009-06-05 02:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78115, 'End_Lon': -73.959438, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752007, 'Start_Lon': -73.974985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-26 00:04:00', 'Trip_Pickup_DateTime': '2009-06-25 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70539, 'End_Lon': -73.933695, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765667, 'Start_Lon': -73.92644, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 5.57, 'Trip_Dropoff_DateTime': '2009-06-07 00:06:00', 'Trip_Pickup_DateTime': '2009-06-06 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.803082, 'End_Lon': -73.956615, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797152, 'Start_Lon': -73.969802, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-06 03:49:00', 'Trip_Pickup_DateTime': '2009-06-06 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73981, 'End_Lon': -74.002803, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769763, 'Start_Lon': -73.951627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.33, 'Trip_Dropoff_DateTime': '2009-06-03 22:29:00', 'Trip_Pickup_DateTime': '2009-06-03 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749672, 'End_Lon': -73.99166, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727773, 'Start_Lon': -73.990988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-02 15:39:00', 'Trip_Pickup_DateTime': '2009-06-02 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749938, 'End_Lon': -73.993447, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760665, 'Start_Lon': -73.985722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-26 12:45:00', 'Trip_Pickup_DateTime': '2009-06-26 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770402, 'End_Lon': -73.968028, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756943, 'Start_Lon': -73.967322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-25 19:14:00', 'Trip_Pickup_DateTime': '2009-06-25 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.594298, 'End_Lon': -73.98586, 'Fare_Amt': 36.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724955, 'Start_Lon': -73.98433, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.05, 'Trip_Distance': 16.46, 'Trip_Dropoff_DateTime': '2009-06-02 07:43:00', 'Trip_Pickup_DateTime': '2009-06-02 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727582, 'End_Lon': -74.001263, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71369, 'Start_Lon': -74.013953, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-03 11:00:00', 'Trip_Pickup_DateTime': '2009-06-03 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759103, 'End_Lon': -73.992167, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76426, 'Start_Lon': -73.988358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-02 12:08:00', 'Trip_Pickup_DateTime': '2009-06-02 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770682, 'End_Lon': -73.865272, 'Fare_Amt': 30.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711187, 'Start_Lon': -74.004025, 'Tip_Amt': 6.18, 'Tolls_Amt': 0.0, 'Total_Amt': 37.08, 'Trip_Distance': 12.28, 'Trip_Dropoff_DateTime': '2009-06-02 14:00:00', 'Trip_Pickup_DateTime': '2009-06-02 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733, 'End_Lon': -74.007123, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742285, 'Start_Lon': -73.977757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-05 21:51:00', 'Trip_Pickup_DateTime': '2009-06-05 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727455, 'End_Lon': -74.012362, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713653, 'Start_Lon': -74.014908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-08 12:07:00', 'Trip_Pickup_DateTime': '2009-06-08 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765015, 'End_Lon': -73.974717, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752957, 'Start_Lon': -73.978722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-02 10:51:00', 'Trip_Pickup_DateTime': '2009-06-02 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.881237, 'End_Lon': -73.841752, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76565, 'Start_Lon': -73.964, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.4, 'Trip_Distance': 14.54, 'Trip_Dropoff_DateTime': '2009-06-05 00:20:00', 'Trip_Pickup_DateTime': '2009-06-04 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763672, 'End_Lon': -73.909827, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759363, 'Start_Lon': -73.937067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-02 05:22:00', 'Trip_Pickup_DateTime': '2009-06-02 05:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76652, 'End_Lon': -73.952768, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.795847, 'Start_Lon': -73.972903, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 3.94, 'Trip_Dropoff_DateTime': '2009-06-24 08:49:00', 'Trip_Pickup_DateTime': '2009-06-24 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780977, 'End_Lon': -73.972578, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770785, 'Start_Lon': -73.968388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-07 13:06:00', 'Trip_Pickup_DateTime': '2009-06-07 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732922, 'End_Lon': -73.987513, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777277, 'Start_Lon': -73.977803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-02 19:49:00', 'Trip_Pickup_DateTime': '2009-06-02 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729012, 'End_Lon': -74.044228, 'Fare_Amt': 46.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728432, 'Start_Lon': -74.045028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 46.6, 'Trip_Distance': 21.15, 'Trip_Dropoff_DateTime': '2009-06-02 02:06:00', 'Trip_Pickup_DateTime': '2009-06-02 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-03 02:22:00', 'Trip_Pickup_DateTime': '2009-06-03 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715398, 'End_Lon': -73.96342, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710993, 'Start_Lon': -73.950862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-25 17:51:00', 'Trip_Pickup_DateTime': '2009-06-25 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723095, 'End_Lon': -73.989308, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7512, 'Start_Lon': -73.9717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-06 00:12:00', 'Trip_Pickup_DateTime': '2009-06-06 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 41.069102, 'End_Lon': -73.548183, 'Fare_Amt': 170.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 41.069102, 'Start_Lon': -73.548183, 'Tip_Amt': 20.0, 'Tolls_Amt': 0.0, 'Total_Amt': 190.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-02 14:16:00', 'Trip_Pickup_DateTime': '2009-06-02 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693117, 'End_Lon': -73.96939, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.694377, 'Start_Lon': -73.992397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-05 23:08:00', 'Trip_Pickup_DateTime': '2009-06-05 23:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741767, 'End_Lon': -73.986235, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769842, 'Start_Lon': -73.964965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-06 19:08:00', 'Trip_Pickup_DateTime': '2009-06-06 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764152, 'End_Lon': -73.954182, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75747, 'Start_Lon': -73.966312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-08 09:34:00', 'Trip_Pickup_DateTime': '2009-06-08 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742485, 'End_Lon': -73.982262, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729493, 'Start_Lon': -73.97811, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-06 08:02:00', 'Trip_Pickup_DateTime': '2009-06-06 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766602, 'End_Lon': -73.962798, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769738, 'Start_Lon': -73.969035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-23 19:06:00', 'Trip_Pickup_DateTime': '2009-06-23 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746285, 'End_Lon': -74.0056, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773947, 'Start_Lon': -73.874542, 'Tip_Amt': 6.42, 'Tolls_Amt': 4.15, 'Total_Amt': 36.27, 'Trip_Distance': 10.05, 'Trip_Dropoff_DateTime': '2009-06-03 13:19:00', 'Trip_Pickup_DateTime': '2009-06-03 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 6 with 1000 records\n",
            "[{'End_Lat': 40.765793, 'End_Lon': -73.978255, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721385, 'Start_Lon': -74.000033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.85, 'Trip_Dropoff_DateTime': '2009-06-08 15:59:00', 'Trip_Pickup_DateTime': '2009-06-08 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745177, 'End_Lon': -73.994827, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748835, 'Start_Lon': -73.977327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-05 13:35:00', 'Trip_Pickup_DateTime': '2009-06-05 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766573, 'End_Lon': -73.978343, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74983, 'Start_Lon': -73.991542, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-23 18:00:00', 'Trip_Pickup_DateTime': '2009-06-23 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740137, 'End_Lon': -74.007915, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773388, 'Start_Lon': -73.988953, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-06 01:37:00', 'Trip_Pickup_DateTime': '2009-06-06 01:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745395, 'End_Lon': -73.984663, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760557, 'Start_Lon': -74.002798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-05 15:44:00', 'Trip_Pickup_DateTime': '2009-06-05 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.66638, 'End_Lon': -73.985803, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702415, 'Start_Lon': -73.98766, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.4, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-06 01:27:00', 'Trip_Pickup_DateTime': '2009-06-06 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754333, 'End_Lon': -73.973992, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77126, 'Start_Lon': -73.950458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-04 07:17:00', 'Trip_Pickup_DateTime': '2009-06-04 07:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7424, 'End_Lon': -73.993622, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76816, 'Start_Lon': -73.986238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-23 17:59:00', 'Trip_Pickup_DateTime': '2009-06-23 17:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731067, 'End_Lon': -73.988967, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734097, 'Start_Lon': -73.988943, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-06 21:15:00', 'Trip_Pickup_DateTime': '2009-06-06 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727117, 'End_Lon': -73.991583, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75425, 'Start_Lon': -73.972655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-23 22:41:00', 'Trip_Pickup_DateTime': '2009-06-23 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728665, 'End_Lon': -74.006837, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749122, 'Start_Lon': -73.977803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-03 15:05:00', 'Trip_Pickup_DateTime': '2009-06-03 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725892, 'End_Lon': -73.941872, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7481, 'Start_Lon': -73.947305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-02 18:52:00', 'Trip_Pickup_DateTime': '2009-06-02 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762713, 'End_Lon': -74.000007, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740057, 'Start_Lon': -73.997867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-06 05:16:00', 'Trip_Pickup_DateTime': '2009-06-06 05:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745945, 'End_Lon': -74.001702, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764498, 'Start_Lon': -73.977033, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-05 15:34:00', 'Trip_Pickup_DateTime': '2009-06-05 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.669927, 'End_Lon': -73.92444, 'Fare_Amt': 34.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780205, 'Start_Lon': -73.980125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.6, 'Trip_Distance': 12.48, 'Trip_Dropoff_DateTime': '2009-06-04 00:49:00', 'Trip_Pickup_DateTime': '2009-06-04 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800568, 'End_Lon': -73.967932, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795218, 'Start_Lon': -73.970958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-02 23:36:00', 'Trip_Pickup_DateTime': '2009-06-02 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722653, 'End_Lon': -73.983058, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734602, 'Start_Lon': -73.99079, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-06 19:57:00', 'Trip_Pickup_DateTime': '2009-06-06 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74207, 'End_Lon': -73.991085, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764385, 'Start_Lon': -73.961638, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-07 11:52:00', 'Trip_Pickup_DateTime': '2009-06-07 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74988, 'End_Lon': -73.991797, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780977, 'Start_Lon': -73.972628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-04 16:03:00', 'Trip_Pickup_DateTime': '2009-06-04 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756977, 'End_Lon': -73.977635, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75211, 'Start_Lon': -73.989625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-08 10:04:00', 'Trip_Pickup_DateTime': '2009-06-08 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732927, 'End_Lon': -73.974773, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746235, 'Start_Lon': -73.987642, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-03 22:50:00', 'Trip_Pickup_DateTime': '2009-06-03 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779797, 'End_Lon': -73.96166, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768237, 'Start_Lon': -73.982432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-26 12:21:00', 'Trip_Pickup_DateTime': '2009-06-26 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.821705, 'End_Lon': -73.954973, 'Fare_Amt': 12.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7674, 'Start_Lon': -73.968937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.91, 'Trip_Dropoff_DateTime': '2009-06-06 20:58:00', 'Trip_Pickup_DateTime': '2009-06-06 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77024, 'End_Lon': -73.958238, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757187, 'Start_Lon': -73.975985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-02 22:09:00', 'Trip_Pickup_DateTime': '2009-06-02 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722245, 'End_Lon': -73.99699, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763093, 'Start_Lon': -73.976572, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-08 00:01:00', 'Trip_Pickup_DateTime': '2009-06-07 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762843, 'End_Lon': -74.011113, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757972, 'Start_Lon': -74.004467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-04 13:23:00', 'Trip_Pickup_DateTime': '2009-06-04 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773825, 'End_Lon': -73.870605, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730993, 'Start_Lon': -73.982875, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 32.1, 'Trip_Distance': 9.41, 'Trip_Dropoff_DateTime': '2009-06-08 07:45:00', 'Trip_Pickup_DateTime': '2009-06-08 07:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76771, 'End_Lon': -73.962067, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77314, 'Start_Lon': -73.885312, 'Tip_Amt': 4.58, 'Tolls_Amt': 0.0, 'Total_Amt': 27.48, 'Trip_Distance': 8.71, 'Trip_Dropoff_DateTime': '2009-06-07 20:02:00', 'Trip_Pickup_DateTime': '2009-06-07 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780055, 'End_Lon': -73.984365, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78655, 'Start_Lon': -73.972338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-06 09:48:00', 'Trip_Pickup_DateTime': '2009-06-06 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77958, 'End_Lon': -73.962383, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756688, 'Start_Lon': -73.968938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-04 14:23:00', 'Trip_Pickup_DateTime': '2009-06-04 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752242, 'End_Lon': -73.93547, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776583, 'Start_Lon': -73.952787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-04 22:22:00', 'Trip_Pickup_DateTime': '2009-06-04 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765193, 'End_Lon': -73.97777, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728655, 'Start_Lon': -73.992932, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-27 03:10:00', 'Trip_Pickup_DateTime': '2009-06-27 02:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759238, 'End_Lon': -73.983247, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752972, 'Start_Lon': -73.974095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-27 01:29:00', 'Trip_Pickup_DateTime': '2009-06-27 01:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752877, 'End_Lon': -73.97891, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749705, 'Start_Lon': -73.993427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-08 07:37:00', 'Trip_Pickup_DateTime': '2009-06-08 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767973, 'End_Lon': -73.968003, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778145, 'Start_Lon': -73.956463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-02 11:15:00', 'Trip_Pickup_DateTime': '2009-06-02 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800953, 'End_Lon': -73.944218, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.813032, 'Start_Lon': -73.937503, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-05 00:41:00', 'Trip_Pickup_DateTime': '2009-06-05 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728268, 'End_Lon': -73.981827, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720967, 'Start_Lon': -73.986867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-04 04:26:00', 'Trip_Pickup_DateTime': '2009-06-04 04:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756617, 'End_Lon': -73.973053, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773667, 'Start_Lon': -73.870965, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-25 12:57:00', 'Trip_Pickup_DateTime': '2009-06-25 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788003, 'End_Lon': -73.969787, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735253, 'Start_Lon': -73.991763, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-06 22:29:00', 'Trip_Pickup_DateTime': '2009-06-06 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734012, 'End_Lon': -74.00167, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751518, 'Start_Lon': -74.007878, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-27 23:48:00', 'Trip_Pickup_DateTime': '2009-06-27 23:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754055, 'End_Lon': -73.973215, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735967, 'Start_Lon': -74.005947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-05 23:57:00', 'Trip_Pickup_DateTime': '2009-06-05 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7702, 'End_Lon': -73.99484, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787617, 'Start_Lon': -73.975142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-25 14:09:00', 'Trip_Pickup_DateTime': '2009-06-25 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80513, 'End_Lon': -73.938927, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768918, 'Start_Lon': -73.862692, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 21.05, 'Trip_Distance': 6.86, 'Trip_Dropoff_DateTime': '2009-06-02 11:26:00', 'Trip_Pickup_DateTime': '2009-06-02 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757253, 'End_Lon': -73.978177, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751925, 'Start_Lon': -73.985505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-03 15:05:00', 'Trip_Pickup_DateTime': '2009-06-03 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758313, 'End_Lon': -73.978643, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782335, 'Start_Lon': -73.95772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-05 18:12:00', 'Trip_Pickup_DateTime': '2009-06-05 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767192, 'End_Lon': -73.954877, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758823, 'Start_Lon': -73.96249, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-03 19:19:00', 'Trip_Pickup_DateTime': '2009-06-03 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753717, 'End_Lon': -73.9694, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760123, 'Start_Lon': -73.96154, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-08 08:22:00', 'Trip_Pickup_DateTime': '2009-06-08 08:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729428, 'End_Lon': -74.00242, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745288, 'Start_Lon': -73.986717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-06 20:48:00', 'Trip_Pickup_DateTime': '2009-06-06 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778715, 'End_Lon': -73.98779, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771132, 'Start_Lon': -73.965478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-05 15:02:00', 'Trip_Pickup_DateTime': '2009-06-05 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778795, 'End_Lon': -73.955247, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760717, 'Start_Lon': -73.96109, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-06 14:45:00', 'Trip_Pickup_DateTime': '2009-06-06 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767515, 'End_Lon': -73.955945, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760105, 'Start_Lon': -73.99685, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-27 01:59:00', 'Trip_Pickup_DateTime': '2009-06-27 01:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785298, 'End_Lon': -73.983548, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780302, 'Start_Lon': -73.949742, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-06 19:11:00', 'Trip_Pickup_DateTime': '2009-06-06 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763152, 'End_Lon': -73.981925, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769087, 'Start_Lon': -73.988992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-02 12:18:00', 'Trip_Pickup_DateTime': '2009-06-02 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76082, 'End_Lon': -73.996727, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76857, 'Start_Lon': -73.98879, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-03 12:47:00', 'Trip_Pickup_DateTime': '2009-06-03 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757893, 'End_Lon': -73.99292, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766877, 'Start_Lon': -73.983098, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-02 20:18:00', 'Trip_Pickup_DateTime': '2009-06-02 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790333, 'End_Lon': -73.945477, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761245, 'Start_Lon': -73.983952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-18 23:24:00', 'Trip_Pickup_DateTime': '2009-06-18 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750192, 'End_Lon': -73.97856, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759442, 'Start_Lon': -73.979782, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-04 15:20:00', 'Trip_Pickup_DateTime': '2009-06-04 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797522, 'End_Lon': -73.966602, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.77145, 'Start_Lon': -73.979388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-20 12:49:08', 'Trip_Pickup_DateTime': '2009-06-20 12:39:39', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.781347, 'End_Lon': -73.951727, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77286, 'Start_Lon': -73.958125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-12 13:24:00', 'Trip_Pickup_DateTime': '2009-06-12 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752573, 'End_Lon': -73.968403, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774853, 'Start_Lon': -73.97708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-07 23:56:00', 'Trip_Pickup_DateTime': '2009-06-07 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785913, 'End_Lon': -73.95698, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7624, 'Start_Lon': -73.966065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-06 10:00:00', 'Trip_Pickup_DateTime': '2009-06-06 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707398, 'End_Lon': -74.001172, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710287, 'Start_Lon': -73.956947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-06 02:25:00', 'Trip_Pickup_DateTime': '2009-06-06 02:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762338, 'End_Lon': -73.99598, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749442, 'Start_Lon': -73.99548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-08 14:47:00', 'Trip_Pickup_DateTime': '2009-06-08 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.12, 'Trip_Dropoff_DateTime': '2009-06-06 19:03:00', 'Trip_Pickup_DateTime': '2009-06-06 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714247, 'End_Lon': -73.874338, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731948, 'Start_Lon': -73.871423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-02 03:21:00', 'Trip_Pickup_DateTime': '2009-06-02 03:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730503, 'End_Lon': -74.009197, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750255, 'Start_Lon': -73.984707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-16 20:13:00', 'Trip_Pickup_DateTime': '2009-06-16 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75566, 'End_Lon': -73.991337, 'Fare_Amt': 11.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72873, 'Start_Lon': -73.975635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-18 23:41:00', 'Trip_Pickup_DateTime': '2009-06-18 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.798608, 'End_Lon': -73.96692, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78007, 'Start_Lon': -73.956207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-06 16:47:00', 'Trip_Pickup_DateTime': '2009-06-06 16:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734968, 'End_Lon': -73.994465, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726783, 'Start_Lon': -73.994032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-04 18:04:00', 'Trip_Pickup_DateTime': '2009-06-04 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.816455, 'End_Lon': -73.952652, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807327, 'Start_Lon': -73.964482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-07 03:27:00', 'Trip_Pickup_DateTime': '2009-06-07 03:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737233, 'End_Lon': -73.992755, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755287, 'Start_Lon': -73.982532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-07 11:40:00', 'Trip_Pickup_DateTime': '2009-06-07 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745598, 'End_Lon': -74.001848, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765463, 'Start_Lon': -73.96782, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-07 15:48:00', 'Trip_Pickup_DateTime': '2009-06-07 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794223, 'End_Lon': -73.974, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762485, 'Start_Lon': -74.000353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-07 21:19:00', 'Trip_Pickup_DateTime': '2009-06-07 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765918, 'End_Lon': -73.930945, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73867, 'Start_Lon': -73.983363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 5.29, 'Trip_Dropoff_DateTime': '2009-06-08 01:55:00', 'Trip_Pickup_DateTime': '2009-06-08 01:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.692065, 'End_Lon': -73.959777, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72952, 'Start_Lon': -73.989865, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-06 03:59:00', 'Trip_Pickup_DateTime': '2009-06-06 03:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768375, 'End_Lon': -73.982218, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749842, 'Start_Lon': -73.97858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-26 11:34:00', 'Trip_Pickup_DateTime': '2009-06-26 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777643, 'End_Lon': -73.961698, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762498, 'Start_Lon': -73.993342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-02 14:30:00', 'Trip_Pickup_DateTime': '2009-06-02 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769787, 'End_Lon': -73.966603, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775642, 'Start_Lon': -73.95844, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-26 18:57:00', 'Trip_Pickup_DateTime': '2009-06-26 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717603, 'End_Lon': -74.015958, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740215, 'Start_Lon': -74.005858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-05 18:26:00', 'Trip_Pickup_DateTime': '2009-06-05 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761338, 'End_Lon': -73.981803, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729912, 'Start_Lon': -74.002092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-19 00:09:00', 'Trip_Pickup_DateTime': '2009-06-19 00:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716348, 'End_Lon': -74.014955, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726098, 'Start_Lon': -73.983637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-27 23:37:00', 'Trip_Pickup_DateTime': '2009-06-27 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713095, 'End_Lon': -74.010523, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708608, 'Start_Lon': -74.008563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-26 17:17:00', 'Trip_Pickup_DateTime': '2009-06-26 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67595, 'End_Lon': -73.966395, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75034, 'Start_Lon': -73.971755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 8.0, 'Trip_Dropoff_DateTime': '2009-06-16 20:26:00', 'Trip_Pickup_DateTime': '2009-06-16 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.691058, 'End_Lon': -73.989477, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704538, 'Start_Lon': -74.011723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-26 16:24:00', 'Trip_Pickup_DateTime': '2009-06-26 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737862, 'End_Lon': -73.990338, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704962, 'Start_Lon': -74.008553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-06 15:24:00', 'Trip_Pickup_DateTime': '2009-06-06 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771578, 'End_Lon': -73.982657, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777638, 'Start_Lon': -73.979557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-04 15:39:00', 'Trip_Pickup_DateTime': '2009-06-04 15:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743043, 'End_Lon': -73.983778, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.773276, 'Start_Lon': -73.962124, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-24 12:22:03', 'Trip_Pickup_DateTime': '2009-06-24 12:03:40', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.763517, 'End_Lon': -73.97378, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775717, 'Start_Lon': -73.958322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-05 23:07:00', 'Trip_Pickup_DateTime': '2009-06-05 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76835, 'End_Lon': -73.981938, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764672, 'Start_Lon': -73.981542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-25 11:49:00', 'Trip_Pickup_DateTime': '2009-06-25 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705553, 'End_Lon': -74.007848, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7276, 'Start_Lon': -74.00107, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-07 03:18:00', 'Trip_Pickup_DateTime': '2009-06-07 03:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760675, 'End_Lon': -73.990157, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755993, 'Start_Lon': -73.971782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-04 13:01:00', 'Trip_Pickup_DateTime': '2009-06-04 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755458, 'End_Lon': -73.975582, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774478, 'Start_Lon': -73.954038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-08 07:23:00', 'Trip_Pickup_DateTime': '2009-06-08 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768078, 'End_Lon': -73.861392, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784373, 'Start_Lon': -73.947157, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.65, 'Trip_Distance': 9.17, 'Trip_Dropoff_DateTime': '2009-06-03 18:51:00', 'Trip_Pickup_DateTime': '2009-06-03 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764718, 'End_Lon': -73.983183, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752257, 'Start_Lon': -73.993157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-05 02:17:00', 'Trip_Pickup_DateTime': '2009-06-05 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806372, 'End_Lon': -73.96118, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76938, 'Start_Lon': -73.961077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-26 16:24:00', 'Trip_Pickup_DateTime': '2009-06-26 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748557, 'End_Lon': -73.976077, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72566, 'Start_Lon': -73.997103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-26 15:44:00', 'Trip_Pickup_DateTime': '2009-06-26 15:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-06 18:27:00', 'Trip_Pickup_DateTime': '2009-06-06 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74658, 'End_Lon': -73.981803, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752118, 'Start_Lon': -73.977967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-03 09:22:00', 'Trip_Pickup_DateTime': '2009-06-03 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783205, 'End_Lon': -73.974627, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780992, 'Start_Lon': -73.961235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-07 20:32:00', 'Trip_Pickup_DateTime': '2009-06-07 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768823, 'End_Lon': -73.988868, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75706, 'Start_Lon': -73.993608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-03 10:41:00', 'Trip_Pickup_DateTime': '2009-06-03 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.652158, 'End_Lon': -74.006738, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.689918, 'Start_Lon': -73.963985, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.55, 'Trip_Dropoff_DateTime': '2009-06-05 08:20:00', 'Trip_Pickup_DateTime': '2009-06-05 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762047, 'End_Lon': -73.978855, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747322, 'Start_Lon': -73.9858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-28 05:28:00', 'Trip_Pickup_DateTime': '2009-06-28 05:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765758, 'End_Lon': -73.979952, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769868, 'Start_Lon': -73.961058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-26 08:58:00', 'Trip_Pickup_DateTime': '2009-06-26 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778983, 'End_Lon': -73.944825, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7782, 'Start_Lon': -73.954497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-03 05:46:00', 'Trip_Pickup_DateTime': '2009-06-03 05:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77465, 'End_Lon': -73.97818, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763115, 'Start_Lon': -73.988675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-06 00:37:00', 'Trip_Pickup_DateTime': '2009-06-06 00:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757437, 'End_Lon': -73.98918, 'Fare_Amt': 30.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769062, 'Start_Lon': -73.862802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.5, 'Trip_Distance': 12.61, 'Trip_Dropoff_DateTime': '2009-06-07 10:19:00', 'Trip_Pickup_DateTime': '2009-06-07 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.696198, 'End_Lon': -73.849508, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721323, 'Start_Lon': -73.84422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-03 02:13:00', 'Trip_Pickup_DateTime': '2009-06-03 02:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709452, 'End_Lon': -74.006048, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720577, 'Start_Lon': -74.010032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-08 16:22:00', 'Trip_Pickup_DateTime': '2009-06-08 16:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75952, 'End_Lon': -73.972018, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72283, 'Start_Lon': -74.002078, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.4, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-02 15:53:00', 'Trip_Pickup_DateTime': '2009-06-02 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733318, 'End_Lon': -73.975722, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74008, 'Start_Lon': -73.985768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-26 18:39:00', 'Trip_Pickup_DateTime': '2009-06-26 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741612, 'End_Lon': -73.98575, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798858, 'Start_Lon': -73.936442, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 17.15, 'Trip_Distance': 5.13, 'Trip_Dropoff_DateTime': '2009-06-05 21:03:00', 'Trip_Pickup_DateTime': '2009-06-05 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764847, 'End_Lon': -73.938358, 'Fare_Amt': 17.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7534, 'Start_Lon': -73.996603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-26 06:22:00', 'Trip_Pickup_DateTime': '2009-06-26 05:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760095, 'End_Lon': -73.965057, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7896, 'Start_Lon': -73.975527, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-02 15:05:00', 'Trip_Pickup_DateTime': '2009-06-02 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77263, 'End_Lon': -73.946485, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78297, 'Start_Lon': -73.978405, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 11.85, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-04 15:47:00', 'Trip_Pickup_DateTime': '2009-06-04 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693032, 'End_Lon': -73.994173, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734735, 'Start_Lon': -73.988752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.99, 'Trip_Dropoff_DateTime': '2009-06-04 00:26:00', 'Trip_Pickup_DateTime': '2009-06-04 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749975, 'End_Lon': -73.987955, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738585, 'Start_Lon': -73.985408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-02 10:27:00', 'Trip_Pickup_DateTime': '2009-06-02 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.646913, 'End_Lon': -73.78999, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760288, 'Start_Lon': -73.987138, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.51, 'Trip_Dropoff_DateTime': '2009-06-26 08:54:00', 'Trip_Pickup_DateTime': '2009-06-26 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756257, 'End_Lon': -73.97273, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759885, 'Start_Lon': -73.980925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-04 10:10:00', 'Trip_Pickup_DateTime': '2009-06-04 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741597, 'End_Lon': -73.98963, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782625, 'Start_Lon': -73.971337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-08 12:46:00', 'Trip_Pickup_DateTime': '2009-06-08 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762425, 'End_Lon': -73.983358, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773368, 'Start_Lon': -73.966342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-05 17:37:00', 'Trip_Pickup_DateTime': '2009-06-05 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762577, 'End_Lon': -73.98202, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718452, 'Start_Lon': -73.99882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-04 23:40:00', 'Trip_Pickup_DateTime': '2009-06-04 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75014, 'End_Lon': -73.994978, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745915, 'Start_Lon': -73.998037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-28 10:22:00', 'Trip_Pickup_DateTime': '2009-06-28 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743572, 'End_Lon': -73.978612, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74862, 'Start_Lon': -73.97297, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-02 12:46:00', 'Trip_Pickup_DateTime': '2009-06-02 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770248, 'End_Lon': -73.954207, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79073, 'Start_Lon': -73.96542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-03 12:08:00', 'Trip_Pickup_DateTime': '2009-06-03 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754483, 'End_Lon': -73.976147, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776893, 'Start_Lon': -73.94953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-03 06:56:00', 'Trip_Pickup_DateTime': '2009-06-03 06:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742612, 'End_Lon': -73.992937, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725558, 'Start_Lon': -74.001095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-03 19:37:00', 'Trip_Pickup_DateTime': '2009-06-03 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771923, 'End_Lon': -73.965403, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768743, 'Start_Lon': -73.982103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-27 15:37:00', 'Trip_Pickup_DateTime': '2009-06-27 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766998, 'End_Lon': -73.98774, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744362, 'Start_Lon': -73.911587, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-05 08:25:00', 'Trip_Pickup_DateTime': '2009-06-05 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756845, 'End_Lon': -73.990015, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739148, 'Start_Lon': -74.002933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-05 10:17:00', 'Trip_Pickup_DateTime': '2009-06-05 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707777, 'End_Lon': -73.99886, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.682318, 'Start_Lon': -73.998133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-05 14:26:00', 'Trip_Pickup_DateTime': '2009-06-05 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7562, 'End_Lon': -73.974513, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722768, 'Start_Lon': -73.996913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-06 17:25:00', 'Trip_Pickup_DateTime': '2009-06-06 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758982, 'End_Lon': -73.962407, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74173, 'Start_Lon': -73.974565, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-02 18:18:00', 'Trip_Pickup_DateTime': '2009-06-02 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744182, 'End_Lon': -73.991937, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72511, 'Start_Lon': -73.99498, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-06 20:50:00', 'Trip_Pickup_DateTime': '2009-06-06 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748392, 'End_Lon': -73.984195, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76094, 'Start_Lon': -73.983075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-05 15:41:00', 'Trip_Pickup_DateTime': '2009-06-05 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741245, 'End_Lon': -73.980868, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757257, 'Start_Lon': -73.966712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-27 18:53:00', 'Trip_Pickup_DateTime': '2009-06-27 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747868, 'End_Lon': -73.990372, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776287, 'Start_Lon': -73.965608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-05 05:45:00', 'Trip_Pickup_DateTime': '2009-06-05 05:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740708, 'End_Lon': -73.988907, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74116, 'Start_Lon': -73.998142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-04 06:21:00', 'Trip_Pickup_DateTime': '2009-06-04 06:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759108, 'End_Lon': -73.984807, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773758, 'Start_Lon': -73.981663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-06 22:11:00', 'Trip_Pickup_DateTime': '2009-06-06 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742457, 'End_Lon': -73.980113, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72082, 'Start_Lon': -73.98677, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-28 00:28:00', 'Trip_Pickup_DateTime': '2009-06-28 00:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752668, 'End_Lon': -73.974822, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766318, 'Start_Lon': -73.95164, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-26 10:32:00', 'Trip_Pickup_DateTime': '2009-06-26 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760142, 'End_Lon': -73.962098, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74755, 'Start_Lon': -73.976713, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-04 22:49:00', 'Trip_Pickup_DateTime': '2009-06-04 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77544, 'End_Lon': -73.962485, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784183, 'Start_Lon': -73.956588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-04 12:32:00', 'Trip_Pickup_DateTime': '2009-06-04 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774417, 'End_Lon': -73.873028, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735103, 'Start_Lon': -73.989018, 'Tip_Amt': 8.13, 'Tolls_Amt': 4.15, 'Total_Amt': 39.38, 'Trip_Distance': 9.8, 'Trip_Dropoff_DateTime': '2009-06-03 18:52:00', 'Trip_Pickup_DateTime': '2009-06-03 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.671527, 'End_Lon': -73.982407, 'Fare_Amt': 34.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646702, 'Start_Lon': -73.789632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.5, 'Trip_Distance': 13.34, 'Trip_Dropoff_DateTime': '2009-06-07 13:22:00', 'Trip_Pickup_DateTime': '2009-06-07 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759698, 'End_Lon': -73.974873, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75741, 'Start_Lon': -74.00078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.82, 'Trip_Dropoff_DateTime': '2009-06-26 01:52:00', 'Trip_Pickup_DateTime': '2009-06-26 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785562, 'End_Lon': -73.981937, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759142, 'Start_Lon': -73.974463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-04 10:42:00', 'Trip_Pickup_DateTime': '2009-06-04 10:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793363, 'End_Lon': -73.972608, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723713, 'Start_Lon': -73.988065, 'Tip_Amt': 4.05, 'Tolls_Amt': 0.0, 'Total_Amt': 20.25, 'Trip_Distance': 6.19, 'Trip_Dropoff_DateTime': '2009-06-04 03:46:00', 'Trip_Pickup_DateTime': '2009-06-04 03:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741303, 'End_Lon': -73.984005, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742118, 'Start_Lon': -73.983105, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-05 17:17:00', 'Trip_Pickup_DateTime': '2009-06-05 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782362, 'End_Lon': -73.98094, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767665, 'Start_Lon': -73.967597, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-05 17:20:00', 'Trip_Pickup_DateTime': '2009-06-05 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764763, 'End_Lon': -73.98163, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774695, 'Start_Lon': -73.988022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-04 09:03:00', 'Trip_Pickup_DateTime': '2009-06-04 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734497, 'End_Lon': -74.002222, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754365, 'Start_Lon': -73.988132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-04 19:39:00', 'Trip_Pickup_DateTime': '2009-06-04 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738467, 'End_Lon': -73.991157, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748915, 'Start_Lon': -73.989385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-05 20:13:00', 'Trip_Pickup_DateTime': '2009-06-05 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726747, 'End_Lon': -74.005738, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731932, 'Start_Lon': -73.982183, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-05 20:55:00', 'Trip_Pickup_DateTime': '2009-06-05 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74269, 'End_Lon': -73.987002, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75253, 'Start_Lon': -73.981843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-02 21:06:00', 'Trip_Pickup_DateTime': '2009-06-02 21:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737415, 'End_Lon': -73.99056, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733722, 'Start_Lon': -73.989787, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-02 12:27:00', 'Trip_Pickup_DateTime': '2009-06-02 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804728, 'End_Lon': -73.962515, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788255, 'Start_Lon': -73.974528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-07 22:30:00', 'Trip_Pickup_DateTime': '2009-06-07 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727923, 'End_Lon': -73.987917, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756143, 'Start_Lon': -73.981508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-03 22:44:00', 'Trip_Pickup_DateTime': '2009-06-03 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773067, 'End_Lon': -73.982372, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76481, 'Start_Lon': -73.98417, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-27 16:09:00', 'Trip_Pickup_DateTime': '2009-06-27 16:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75355, 'End_Lon': -73.977622, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767897, 'Start_Lon': -73.981087, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-09 12:47:00', 'Trip_Pickup_DateTime': '2009-06-09 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75692, 'End_Lon': -73.973353, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771317, 'Start_Lon': -73.963845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-01 19:52:00', 'Trip_Pickup_DateTime': '2009-06-01 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.66595, 'End_Lon': -73.990053, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.676942, 'Start_Lon': -73.97222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-12 18:20:00', 'Trip_Pickup_DateTime': '2009-06-12 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764132, 'End_Lon': -73.975033, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740597, 'Start_Lon': -74.005715, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-01 21:39:00', 'Trip_Pickup_DateTime': '2009-06-01 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74991, 'End_Lon': -73.97551, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734718, 'Start_Lon': -73.999877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-01 22:18:00', 'Trip_Pickup_DateTime': '2009-06-01 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762988, 'End_Lon': -73.981557, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755022, 'Start_Lon': -73.973662, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-01 15:40:00', 'Trip_Pickup_DateTime': '2009-06-01 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773115, 'End_Lon': -73.958567, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773862, 'Start_Lon': -73.871992, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.85, 'Trip_Distance': 8.46, 'Trip_Dropoff_DateTime': '2009-06-26 17:04:00', 'Trip_Pickup_DateTime': '2009-06-26 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777023, 'End_Lon': -73.952027, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766828, 'Start_Lon': -73.956658, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-01 21:30:00', 'Trip_Pickup_DateTime': '2009-06-01 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775455, 'End_Lon': -73.953997, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772687, 'Start_Lon': -73.964758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-01 20:33:00', 'Trip_Pickup_DateTime': '2009-06-01 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777138, 'End_Lon': -73.955173, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783762, 'Start_Lon': -73.9798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-01 19:17:00', 'Trip_Pickup_DateTime': '2009-06-01 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773218, 'End_Lon': -73.96024, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776342, 'Start_Lon': -73.971478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-01 21:05:00', 'Trip_Pickup_DateTime': '2009-06-01 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-09 11:51:00', 'Trip_Pickup_DateTime': '2009-06-09 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710762, 'End_Lon': -74.016032, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770725, 'Start_Lon': -73.982012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 5.24, 'Trip_Dropoff_DateTime': '2009-06-27 09:20:00', 'Trip_Pickup_DateTime': '2009-06-27 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772373, 'End_Lon': -73.982583, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773185, 'Start_Lon': -73.978255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-01 19:37:00', 'Trip_Pickup_DateTime': '2009-06-01 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759028, 'End_Lon': -73.984412, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728727, 'Start_Lon': -73.984441, 'Tip_Amt': 1.47, 'Tolls_Amt': 0.0, 'Total_Amt': 10.77, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-26 05:05:52', 'Trip_Pickup_DateTime': '2009-06-26 04:55:09', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.766413, 'End_Lon': -73.967342, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735707, 'Start_Lon': -73.979537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-09 12:32:00', 'Trip_Pickup_DateTime': '2009-06-09 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762327, 'End_Lon': -73.976363, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767798, 'Start_Lon': -73.983292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-27 11:03:00', 'Trip_Pickup_DateTime': '2009-06-27 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706685, 'End_Lon': -74.005563, 'Fare_Amt': 19.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77868, 'Start_Lon': -73.958172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.7, 'Trip_Distance': 7.46, 'Trip_Dropoff_DateTime': '2009-06-26 08:00:00', 'Trip_Pickup_DateTime': '2009-06-26 07:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773957, 'End_Lon': -73.984495, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794033, 'Start_Lon': -73.974078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-09 11:43:00', 'Trip_Pickup_DateTime': '2009-06-09 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765238, 'End_Lon': -73.981068, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751578, 'Start_Lon': -73.990193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-09 11:43:00', 'Trip_Pickup_DateTime': '2009-06-09 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72692, 'End_Lon': -73.980168, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742013, 'Start_Lon': -73.99016, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-01 20:55:00', 'Trip_Pickup_DateTime': '2009-06-01 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730742, 'End_Lon': -73.992365, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743145, 'Start_Lon': -73.974093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-01 19:14:00', 'Trip_Pickup_DateTime': '2009-06-01 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783255, 'End_Lon': -73.950872, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753675, 'Start_Lon': -73.988835, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-01 16:16:00', 'Trip_Pickup_DateTime': '2009-06-01 15:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750078, 'End_Lon': -73.99132, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762758, 'Start_Lon': -73.982383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-29 08:52:00', 'Trip_Pickup_DateTime': '2009-06-29 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749893, 'End_Lon': -73.995038, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763477, 'Start_Lon': -73.968568, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-12 16:45:00', 'Trip_Pickup_DateTime': '2009-06-12 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717115, 'End_Lon': -74.003803, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711053, 'Start_Lon': -74.010678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-02 09:22:00', 'Trip_Pickup_DateTime': '2009-06-02 09:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766738, 'End_Lon': -73.972588, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769238, 'Start_Lon': -73.988577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-01 16:15:00', 'Trip_Pickup_DateTime': '2009-06-01 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756865, 'End_Lon': -74.001103, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751237, 'Start_Lon': -73.990862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-27 15:37:00', 'Trip_Pickup_DateTime': '2009-06-27 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74224, 'End_Lon': -73.993365, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736773, 'Start_Lon': -73.993118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-27 11:45:00', 'Trip_Pickup_DateTime': '2009-06-27 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744547, 'End_Lon': -73.979988, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737618, 'Start_Lon': -74.00186, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-09 11:22:00', 'Trip_Pickup_DateTime': '2009-06-09 11:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762187, 'End_Lon': -73.969667, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765265, 'Start_Lon': -73.953127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-01 16:09:00', 'Trip_Pickup_DateTime': '2009-06-01 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762027, 'End_Lon': -73.968867, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755592, 'Start_Lon': -73.97572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-12 16:11:00', 'Trip_Pickup_DateTime': '2009-06-12 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763642, 'End_Lon': -73.985342, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771622, 'Start_Lon': -73.95065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-03 20:12:00', 'Trip_Pickup_DateTime': '2009-06-03 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757255, 'End_Lon': -73.974275, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748853, 'Start_Lon': -73.988618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-12 17:08:00', 'Trip_Pickup_DateTime': '2009-06-12 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749888, 'End_Lon': -73.97558, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761233, 'Start_Lon': -73.968728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-01 14:11:00', 'Trip_Pickup_DateTime': '2009-06-01 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747735, 'End_Lon': -73.994567, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.812977, 'Start_Lon': -73.956577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.53, 'Trip_Dropoff_DateTime': '2009-06-27 01:44:00', 'Trip_Pickup_DateTime': '2009-06-27 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782853, 'End_Lon': -73.953207, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771203, 'Start_Lon': -73.979573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-09 09:56:00', 'Trip_Pickup_DateTime': '2009-06-09 09:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743008, 'End_Lon': -73.996355, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74979, 'Start_Lon': -73.99214, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-01 15:58:00', 'Trip_Pickup_DateTime': '2009-06-01 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762432, 'End_Lon': -73.965638, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774225, 'Start_Lon': -73.874498, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 33.45, 'Trip_Distance': 12.35, 'Trip_Dropoff_DateTime': '2009-06-01 15:25:00', 'Trip_Pickup_DateTime': '2009-06-01 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785107, 'End_Lon': -73.978475, 'Fare_Amt': 10.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765292, 'Start_Lon': -73.955332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-09 10:05:00', 'Trip_Pickup_DateTime': '2009-06-09 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755088, 'End_Lon': -73.973705, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7552, 'Start_Lon': -73.983832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-09 10:29:00', 'Trip_Pickup_DateTime': '2009-06-09 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77811, 'End_Lon': -73.958807, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77512, 'Start_Lon': -73.945097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-01 16:05:00', 'Trip_Pickup_DateTime': '2009-06-01 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78795, 'End_Lon': -73.953727, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776272, 'Start_Lon': -73.957908, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-09 09:10:00', 'Trip_Pickup_DateTime': '2009-06-09 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766432, 'End_Lon': -73.952667, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779292, 'Start_Lon': -73.944673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-01 15:41:00', 'Trip_Pickup_DateTime': '2009-06-01 15:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.675707, 'End_Lon': -73.999138, 'Fare_Amt': 22.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754732, 'Start_Lon': -73.965543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 9.44, 'Trip_Dropoff_DateTime': '2009-06-26 21:07:00', 'Trip_Pickup_DateTime': '2009-06-26 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740795, 'End_Lon': -73.995567, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72707, 'Start_Lon': -73.98574, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-09 10:34:00', 'Trip_Pickup_DateTime': '2009-06-09 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749047, 'End_Lon': -73.9833, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7502, 'Start_Lon': -73.994578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-12 15:37:00', 'Trip_Pickup_DateTime': '2009-06-12 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779193, 'End_Lon': -73.980987, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766875, 'Start_Lon': -73.962603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-01 15:36:00', 'Trip_Pickup_DateTime': '2009-06-01 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759858, 'End_Lon': -73.97051, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762515, 'Start_Lon': -73.976795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-09 08:44:00', 'Trip_Pickup_DateTime': '2009-06-09 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792988, 'End_Lon': -73.967905, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71138, 'Start_Lon': -74.01549, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 22.0, 'Trip_Distance': 7.0, 'Trip_Dropoff_DateTime': '2009-06-01 12:51:00', 'Trip_Pickup_DateTime': '2009-06-01 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747548, 'End_Lon': -73.98447, 'Fare_Amt': 10.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765363, 'Start_Lon': -73.975542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-09 09:17:00', 'Trip_Pickup_DateTime': '2009-06-09 08:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762575, 'End_Lon': -73.975638, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759122, 'Start_Lon': -73.988747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-29 09:38:00', 'Trip_Pickup_DateTime': '2009-06-29 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768253, 'End_Lon': -73.86162, 'Fare_Amt': 28.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716202, 'Start_Lon': -74.004663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.1, 'Trip_Distance': 12.22, 'Trip_Dropoff_DateTime': '2009-06-09 10:18:00', 'Trip_Pickup_DateTime': '2009-06-09 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784875, 'End_Lon': -73.980723, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772955, 'Start_Lon': -73.958217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-09 08:38:00', 'Trip_Pickup_DateTime': '2009-06-09 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771522, 'End_Lon': -73.958773, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781835, 'Start_Lon': -73.94907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-03 19:13:00', 'Trip_Pickup_DateTime': '2009-06-03 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796185, 'End_Lon': -73.965155, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804905, 'Start_Lon': -73.966048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-12 15:41:00', 'Trip_Pickup_DateTime': '2009-06-12 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76465, 'End_Lon': -73.966465, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78127, 'Start_Lon': -73.983328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-09 08:41:00', 'Trip_Pickup_DateTime': '2009-06-09 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757602, 'End_Lon': -74.000767, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752855, 'Start_Lon': -73.996955, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-09 10:06:00', 'Trip_Pickup_DateTime': '2009-06-09 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738507, 'End_Lon': -73.988118, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751267, 'Start_Lon': -73.99056, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-09 09:12:00', 'Trip_Pickup_DateTime': '2009-06-09 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725832, 'End_Lon': -73.98975, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739922, 'Start_Lon': -73.990438, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-27 02:12:00', 'Trip_Pickup_DateTime': '2009-06-27 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761923, 'End_Lon': -73.993905, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758765, 'Start_Lon': -73.989327, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-09 08:21:00', 'Trip_Pickup_DateTime': '2009-06-09 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760835, 'End_Lon': -73.97863, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776352, 'Start_Lon': -73.976155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-09 07:36:00', 'Trip_Pickup_DateTime': '2009-06-09 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75137, 'End_Lon': -73.980718, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.684572, 'Start_Lon': -73.978455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 7.67, 'Trip_Dropoff_DateTime': '2009-06-12 12:13:00', 'Trip_Pickup_DateTime': '2009-06-12 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770412, 'End_Lon': -73.975675, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64862, 'Start_Lon': -73.7833, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 22.01, 'Trip_Dropoff_DateTime': '2009-06-12 12:51:00', 'Trip_Pickup_DateTime': '2009-06-12 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77494, 'End_Lon': -73.98218, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763802, 'Start_Lon': -73.975942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-05 21:02:00', 'Trip_Pickup_DateTime': '2009-06-05 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749453, 'End_Lon': -73.984122, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781913, 'Start_Lon': -73.981498, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-09 09:02:00', 'Trip_Pickup_DateTime': '2009-06-09 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77849, 'End_Lon': -73.9541, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75456, 'Start_Lon': -73.976168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-12 14:23:00', 'Trip_Pickup_DateTime': '2009-06-12 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771803, 'End_Lon': -73.947055, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.808742, 'Start_Lon': -73.944907, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-08 23:27:00', 'Trip_Pickup_DateTime': '2009-06-08 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784567, 'End_Lon': -73.969945, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790892, 'Start_Lon': -73.97435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-12 10:45:00', 'Trip_Pickup_DateTime': '2009-06-12 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737232, 'End_Lon': -73.99657, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743182, 'Start_Lon': -73.916777, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.4, 'Trip_Distance': 5.82, 'Trip_Dropoff_DateTime': '2009-06-26 22:28:00', 'Trip_Pickup_DateTime': '2009-06-26 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735795, 'End_Lon': -73.997888, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729683, 'Start_Lon': -73.993312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-12 11:59:00', 'Trip_Pickup_DateTime': '2009-06-12 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799825, 'End_Lon': -73.932498, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784127, 'Start_Lon': -73.947002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-03 20:40:00', 'Trip_Pickup_DateTime': '2009-06-03 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765012, 'End_Lon': -73.973838, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738788, 'Start_Lon': -74.00334, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-12 12:29:00', 'Trip_Pickup_DateTime': '2009-06-12 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76448, 'End_Lon': -73.989857, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786502, 'Start_Lon': -73.97822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-12 12:46:00', 'Trip_Pickup_DateTime': '2009-06-12 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724255, 'End_Lon': -73.928868, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750032, 'Start_Lon': -73.954743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-09 06:32:00', 'Trip_Pickup_DateTime': '2009-06-09 06:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737002, 'End_Lon': -74.005517, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764883, 'Start_Lon': -73.980532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-03 18:37:00', 'Trip_Pickup_DateTime': '2009-06-03 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751738, 'End_Lon': -73.977938, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733763, 'Start_Lon': -73.99534, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-09 01:36:00', 'Trip_Pickup_DateTime': '2009-06-09 01:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750788, 'End_Lon': -73.975475, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737248, 'Start_Lon': -74.00647, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-12 10:48:00', 'Trip_Pickup_DateTime': '2009-06-12 10:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762218, 'End_Lon': -73.926313, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761278, 'Start_Lon': -73.965075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-03 22:50:00', 'Trip_Pickup_DateTime': '2009-06-03 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.643237, 'End_Lon': -73.789955, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736727, 'Start_Lon': -74.005665, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 18.38, 'Trip_Dropoff_DateTime': '2009-06-12 11:18:00', 'Trip_Pickup_DateTime': '2009-06-12 10:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796117, 'End_Lon': -73.93777, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79126, 'Start_Lon': -73.97272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-09 04:30:00', 'Trip_Pickup_DateTime': '2009-06-09 04:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791658, 'End_Lon': -73.974388, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781078, 'Start_Lon': -73.98112, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-26 16:37:00', 'Trip_Pickup_DateTime': '2009-06-26 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726688, 'End_Lon': -73.98158, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751485, 'Start_Lon': -74.005053, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-04 12:53:00', 'Trip_Pickup_DateTime': '2009-06-04 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73983, 'End_Lon': -74.005032, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74505, 'Start_Lon': -73.986218, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-26 20:22:00', 'Trip_Pickup_DateTime': '2009-06-26 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710787, 'End_Lon': -74.009945, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77503, 'Start_Lon': -73.982063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 5.91, 'Trip_Dropoff_DateTime': '2009-06-04 14:17:00', 'Trip_Pickup_DateTime': '2009-06-04 13:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774772, 'End_Lon': -73.961118, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74695, 'Start_Lon': -73.981167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-03 06:26:00', 'Trip_Pickup_DateTime': '2009-06-03 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753963, 'End_Lon': -73.988443, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762368, 'Start_Lon': -73.974692, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-08 13:29:00', 'Trip_Pickup_DateTime': '2009-06-08 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763278, 'End_Lon': -73.98493, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773038, 'Start_Lon': -73.954827, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-09 07:31:00', 'Trip_Pickup_DateTime': '2009-06-09 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744942, 'End_Lon': -73.995305, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756835, 'Start_Lon': -73.994065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-06 07:56:00', 'Trip_Pickup_DateTime': '2009-06-06 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758163, 'End_Lon': -73.986145, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726253, 'Start_Lon': -74.007433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-12 10:08:00', 'Trip_Pickup_DateTime': '2009-06-12 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766027, 'End_Lon': -73.977563, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76346, 'Start_Lon': -73.972605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-26 12:27:00', 'Trip_Pickup_DateTime': '2009-06-26 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785528, 'End_Lon': -73.972017, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748943, 'Start_Lon': -73.992375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-07 21:22:00', 'Trip_Pickup_DateTime': '2009-06-07 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749943, 'End_Lon': -74.00254, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756262, 'Start_Lon': -73.967407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-19 00:52:00', 'Trip_Pickup_DateTime': '2009-06-19 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759885, 'End_Lon': -73.992273, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751842, 'Start_Lon': -73.987252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-08 22:49:00', 'Trip_Pickup_DateTime': '2009-06-08 22:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713962, 'End_Lon': -73.99275, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750618, 'Start_Lon': -73.974392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-05 14:34:00', 'Trip_Pickup_DateTime': '2009-06-05 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731027, 'End_Lon': -73.993302, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785523, 'Start_Lon': -73.979093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.51, 'Trip_Dropoff_DateTime': '2009-06-28 21:09:00', 'Trip_Pickup_DateTime': '2009-06-28 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735517, 'End_Lon': -74.006653, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766152, 'Start_Lon': -73.994197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-05 12:43:00', 'Trip_Pickup_DateTime': '2009-06-05 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762725, 'End_Lon': -73.970278, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739823, 'Start_Lon': -74.00249, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-07 03:07:00', 'Trip_Pickup_DateTime': '2009-06-07 02:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731542, 'End_Lon': -74.000057, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730018, 'Start_Lon': -73.999718, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-12 09:45:00', 'Trip_Pickup_DateTime': '2009-06-12 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75162, 'End_Lon': -73.990123, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776542, 'Start_Lon': -73.952967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-13 11:13:00', 'Trip_Pickup_DateTime': '2009-06-13 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76802, 'End_Lon': -73.953322, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75344, 'Start_Lon': -73.97821, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-28 17:14:00', 'Trip_Pickup_DateTime': '2009-06-28 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810593, 'End_Lon': -73.958165, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73666, 'Start_Lon': -73.997387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.14, 'Trip_Dropoff_DateTime': '2009-06-28 21:56:00', 'Trip_Pickup_DateTime': '2009-06-28 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763992, 'End_Lon': -73.988123, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752202, 'Start_Lon': -73.98585, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-09 20:32:00', 'Trip_Pickup_DateTime': '2009-06-09 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78942, 'End_Lon': -73.949422, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794602, 'Start_Lon': -73.94861, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-09 20:29:00', 'Trip_Pickup_DateTime': '2009-06-09 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779827, 'End_Lon': -73.980852, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714652, 'Start_Lon': -73.99105, 'Tip_Amt': 3.4, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 5.78, 'Trip_Dropoff_DateTime': '2009-06-13 02:13:00', 'Trip_Pickup_DateTime': '2009-06-13 01:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774663, 'End_Lon': -73.947698, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731712, 'Start_Lon': -74.000972, 'Tip_Amt': 3.16, 'Tolls_Amt': 0.0, 'Total_Amt': 18.96, 'Trip_Distance': 5.21, 'Trip_Dropoff_DateTime': '2009-06-13 02:31:00', 'Trip_Pickup_DateTime': '2009-06-13 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733623, 'End_Lon': -73.98624, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74247, 'Start_Lon': -73.9464, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-13 03:23:00', 'Trip_Pickup_DateTime': '2009-06-13 03:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756718, 'End_Lon': -73.973253, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773702, 'Start_Lon': -73.97784, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-13 08:36:00', 'Trip_Pickup_DateTime': '2009-06-13 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.643922, 'End_Lon': -73.78296, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.643925, 'Start_Lon': -73.782962, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-13 05:33:00', 'Trip_Pickup_DateTime': '2009-06-13 05:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735123, 'End_Lon': -73.98003, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745985, 'Start_Lon': -73.986275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-09 19:07:00', 'Trip_Pickup_DateTime': '2009-06-09 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805578, 'End_Lon': -73.940863, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733148, 'Start_Lon': -74.006562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.71, 'Trip_Dropoff_DateTime': '2009-06-13 04:19:00', 'Trip_Pickup_DateTime': '2009-06-13 04:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743082, 'End_Lon': -73.904222, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756302, 'Start_Lon': -73.961473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.13, 'Trip_Dropoff_DateTime': '2009-06-09 22:40:00', 'Trip_Pickup_DateTime': '2009-06-09 22:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780125, 'End_Lon': -73.977333, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78506, 'Start_Lon': -73.946635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-09 20:33:00', 'Trip_Pickup_DateTime': '2009-06-09 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71953, 'End_Lon': -73.987682, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.712168, 'Start_Lon': -73.940803, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-13 03:02:00', 'Trip_Pickup_DateTime': '2009-06-13 02:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802338, 'End_Lon': -73.964163, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80145, 'Start_Lon': -73.945905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-09 21:00:00', 'Trip_Pickup_DateTime': '2009-06-09 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76844, 'End_Lon': -73.984892, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766473, 'Start_Lon': -73.969377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-09 17:54:00', 'Trip_Pickup_DateTime': '2009-06-09 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76944, 'End_Lon': -73.992807, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76953, 'Start_Lon': -73.966815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-26 15:27:00', 'Trip_Pickup_DateTime': '2009-06-26 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802027, 'End_Lon': -73.969488, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770307, 'Start_Lon': -73.987712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-09 19:03:00', 'Trip_Pickup_DateTime': '2009-06-09 18:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772783, 'End_Lon': -73.952288, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744757, 'Start_Lon': -73.987165, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-09 18:52:00', 'Trip_Pickup_DateTime': '2009-06-09 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73089, 'End_Lon': -73.978238, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734617, 'Start_Lon': -73.994663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-09 17:56:00', 'Trip_Pickup_DateTime': '2009-06-09 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724345, 'End_Lon': -73.997365, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749048, 'Start_Lon': -73.991618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-27 21:07:00', 'Trip_Pickup_DateTime': '2009-06-27 20:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763922, 'End_Lon': -73.980327, 'Fare_Amt': 26.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769627, 'Start_Lon': -73.863053, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.55, 'Trip_Distance': 11.37, 'Trip_Dropoff_DateTime': '2009-06-16 20:53:00', 'Trip_Pickup_DateTime': '2009-06-16 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7143, 'End_Lon': -73.946778, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707893, 'Start_Lon': -74.005558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.92, 'Trip_Dropoff_DateTime': '2009-06-13 01:02:00', 'Trip_Pickup_DateTime': '2009-06-13 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773173, 'End_Lon': -73.954465, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723847, 'Start_Lon': -74.003168, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 6.33, 'Trip_Dropoff_DateTime': '2009-06-12 23:53:00', 'Trip_Pickup_DateTime': '2009-06-12 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704337, 'End_Lon': -74.009175, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737338, 'Start_Lon': -73.992513, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-01 20:11:00', 'Trip_Pickup_DateTime': '2009-06-01 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71974, 'End_Lon': -73.982678, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734837, 'Start_Lon': -73.980002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-27 20:23:00', 'Trip_Pickup_DateTime': '2009-06-27 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725032, 'End_Lon': -74.002867, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75501, 'Start_Lon': -73.992313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-09 19:47:00', 'Trip_Pickup_DateTime': '2009-06-09 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75601, 'End_Lon': -73.964543, 'Fare_Amt': 30.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774035, 'Start_Lon': -73.874457, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 34.65, 'Trip_Distance': 10.06, 'Trip_Dropoff_DateTime': '2009-06-26 16:12:00', 'Trip_Pickup_DateTime': '2009-06-26 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744738, 'End_Lon': -73.975615, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721257, 'Start_Lon': -73.987868, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-12 23:11:00', 'Trip_Pickup_DateTime': '2009-06-12 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75238, 'End_Lon': -73.978143, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749755, 'Start_Lon': -73.993442, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-09 19:43:00', 'Trip_Pickup_DateTime': '2009-06-09 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719648, 'End_Lon': -73.986853, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717642, 'Start_Lon': -73.957942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-12 23:55:00', 'Trip_Pickup_DateTime': '2009-06-12 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734617, 'End_Lon': -73.990617, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755007, 'Start_Lon': -73.972145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-27 22:14:00', 'Trip_Pickup_DateTime': '2009-06-27 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739703, 'End_Lon': -74.002043, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781278, 'Start_Lon': -73.949167, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 5.92, 'Trip_Dropoff_DateTime': '2009-06-28 11:16:00', 'Trip_Pickup_DateTime': '2009-06-28 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790135, 'End_Lon': -73.941197, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782823, 'Start_Lon': -73.94805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-12 23:05:00', 'Trip_Pickup_DateTime': '2009-06-12 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734053, 'End_Lon': -73.998637, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726877, 'Start_Lon': -73.985898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-12 22:36:00', 'Trip_Pickup_DateTime': '2009-06-12 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784382, 'End_Lon': -73.977372, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753752, 'Start_Lon': -73.992817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-09 18:45:00', 'Trip_Pickup_DateTime': '2009-06-09 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76304, 'End_Lon': -73.982052, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734415, 'Start_Lon': -73.999713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-27 17:25:00', 'Trip_Pickup_DateTime': '2009-06-27 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7659, 'End_Lon': -73.968573, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76191, 'Start_Lon': -73.960685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-28 15:54:00', 'Trip_Pickup_DateTime': '2009-06-28 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.878895, 'End_Lon': -73.914963, 'Fare_Amt': 32.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725208, 'Start_Lon': -73.99228, 'Tip_Amt': 6.52, 'Tolls_Amt': 1.9, 'Total_Amt': 41.02, 'Trip_Distance': 13.2, 'Trip_Dropoff_DateTime': '2009-06-12 22:17:00', 'Trip_Pickup_DateTime': '2009-06-12 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740825, 'End_Lon': -74.007618, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744045, 'Start_Lon': -74.006728, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-19 00:25:00', 'Trip_Pickup_DateTime': '2009-06-19 00:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747853, 'End_Lon': -74.00393, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725935, 'Start_Lon': -74.000952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-13 00:56:00', 'Trip_Pickup_DateTime': '2009-06-13 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74331, 'End_Lon': -73.980252, 'Fare_Amt': 5.7, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75544, 'Start_Lon': -73.975662, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-09 19:05:00', 'Trip_Pickup_DateTime': '2009-06-09 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749905, 'End_Lon': -73.995847, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796157, 'Start_Lon': -73.972915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.76, 'Trip_Dropoff_DateTime': '2009-06-28 10:47:00', 'Trip_Pickup_DateTime': '2009-06-28 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775043, 'End_Lon': -73.952808, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77312, 'Start_Lon': -73.964583, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-09 16:45:00', 'Trip_Pickup_DateTime': '2009-06-09 16:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762157, 'End_Lon': -73.969858, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64476, 'Start_Lon': -73.786418, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.12, 'Trip_Dropoff_DateTime': '2009-06-09 15:45:00', 'Trip_Pickup_DateTime': '2009-06-09 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773903, 'End_Lon': -73.95313, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731375, 'Start_Lon': -74.00209, 'Tip_Amt': 1.65, 'Tolls_Amt': 0.0, 'Total_Amt': 17.45, 'Trip_Distance': 4.57, 'Trip_Dropoff_DateTime': '2009-06-12 22:29:00', 'Trip_Pickup_DateTime': '2009-06-12 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739167, 'End_Lon': -73.97682, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758548, 'Start_Lon': -73.966203, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-09 09:02:00', 'Trip_Pickup_DateTime': '2009-06-09 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761833, 'End_Lon': -73.98529, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75314, 'Start_Lon': -73.972635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-16 21:14:00', 'Trip_Pickup_DateTime': '2009-06-16 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.58459, 'End_Lon': -73.696267, 'Fare_Amt': 89.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70499, 'Start_Lon': -74.00814, 'Tip_Amt': 10.0, 'Tolls_Amt': 9.0, 'Total_Amt': 109.2, 'Trip_Distance': 32.92, 'Trip_Dropoff_DateTime': '2009-06-19 00:58:00', 'Trip_Pickup_DateTime': '2009-06-18 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790892, 'End_Lon': -73.97443, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781008, 'Start_Lon': -73.981222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-12 20:27:00', 'Trip_Pickup_DateTime': '2009-06-12 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72002, 'End_Lon': -74.00873, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73501, 'Start_Lon': -74.006062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-09 14:51:00', 'Trip_Pickup_DateTime': '2009-06-09 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742904, 'End_Lon': -73.985433, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.762859, 'Start_Lon': -73.971954, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-14 01:39:25', 'Trip_Pickup_DateTime': '2009-06-14 01:30:07', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.753015, 'End_Lon': -73.970732, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762028, 'Start_Lon': -73.979195, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-09 14:10:00', 'Trip_Pickup_DateTime': '2009-06-09 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758095, 'End_Lon': -73.992405, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75082, 'Start_Lon': -73.991065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-09 14:49:00', 'Trip_Pickup_DateTime': '2009-06-09 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79326, 'End_Lon': -73.937373, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804343, 'Start_Lon': -73.966417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-12 21:58:00', 'Trip_Pickup_DateTime': '2009-06-12 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787453, 'End_Lon': -73.954448, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759817, 'Start_Lon': -73.995385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-09 15:32:00', 'Trip_Pickup_DateTime': '2009-06-09 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-04 21:19:00', 'Trip_Pickup_DateTime': '2009-06-04 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.803972, 'End_Lon': -73.95491, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764215, 'Start_Lon': -73.979718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-19 00:52:00', 'Trip_Pickup_DateTime': '2009-06-19 00:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788475, 'End_Lon': -73.976705, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722653, 'Start_Lon': -73.98723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.92, 'Trip_Dropoff_DateTime': '2009-06-12 21:56:00', 'Trip_Pickup_DateTime': '2009-06-12 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730808, 'End_Lon': -73.990975, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.697825, 'Start_Lon': -73.985207, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-19 01:12:00', 'Trip_Pickup_DateTime': '2009-06-19 01:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746317, 'End_Lon': -73.981752, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731318, 'Start_Lon': -73.994242, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-12 21:11:00', 'Trip_Pickup_DateTime': '2009-06-12 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756832, 'End_Lon': -73.990412, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779345, 'Start_Lon': -73.962143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-12 19:56:00', 'Trip_Pickup_DateTime': '2009-06-12 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768513, 'End_Lon': -73.861883, 'Fare_Amt': 22.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74916, 'Start_Lon': -73.978332, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.65, 'Trip_Distance': 9.32, 'Trip_Dropoff_DateTime': '2009-06-09 15:07:00', 'Trip_Pickup_DateTime': '2009-06-09 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737777, 'End_Lon': -73.982735, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77362, 'Start_Lon': -73.8708, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.95, 'Trip_Distance': 8.97, 'Trip_Dropoff_DateTime': '2009-06-12 20:30:00', 'Trip_Pickup_DateTime': '2009-06-12 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750825, 'End_Lon': -73.99244, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750123, 'Start_Lon': -73.979652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-09 15:21:00', 'Trip_Pickup_DateTime': '2009-06-09 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729907, 'End_Lon': -73.983753, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.710395, 'Start_Lon': -74.000785, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-09 15:31:00', 'Trip_Pickup_DateTime': '2009-06-09 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718485, 'End_Lon': -73.995193, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727528, 'Start_Lon': -74.007238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-01 22:03:00', 'Trip_Pickup_DateTime': '2009-06-01 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718665, 'End_Lon': -73.981533, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73135, 'Start_Lon': -73.982448, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-12 21:33:00', 'Trip_Pickup_DateTime': '2009-06-12 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742665, 'End_Lon': -73.995858, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74307, 'Start_Lon': -73.974177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-12 20:06:00', 'Trip_Pickup_DateTime': '2009-06-12 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809272, 'End_Lon': -73.941158, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798612, 'Start_Lon': -73.961285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-01 13:31:00', 'Trip_Pickup_DateTime': '2009-06-01 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760635, 'End_Lon': -73.990955, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765762, 'Start_Lon': -73.99088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-12 19:29:00', 'Trip_Pickup_DateTime': '2009-06-12 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728685, 'End_Lon': -74.008023, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734438, 'Start_Lon': -73.980137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-01 14:28:00', 'Trip_Pickup_DateTime': '2009-06-01 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762803, 'End_Lon': -73.976375, 'Fare_Amt': 27.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773998, 'Start_Lon': -73.874448, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 32.3, 'Trip_Distance': 9.67, 'Trip_Dropoff_DateTime': '2009-06-09 15:13:00', 'Trip_Pickup_DateTime': '2009-06-09 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7328, 'End_Lon': -73.985868, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738875, 'Start_Lon': -74.000353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-12 19:05:00', 'Trip_Pickup_DateTime': '2009-06-12 18:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796797, 'End_Lon': -73.962743, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.846075, 'Start_Lon': -73.938742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.88, 'Trip_Dropoff_DateTime': '2009-06-12 19:43:00', 'Trip_Pickup_DateTime': '2009-06-12 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740222, 'End_Lon': -74.005635, 'Fare_Amt': 7.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72152, 'Start_Lon': -74.00527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-12 19:44:00', 'Trip_Pickup_DateTime': '2009-06-12 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78394, 'End_Lon': -73.956552, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763503, 'Start_Lon': -73.965378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-01 18:38:00', 'Trip_Pickup_DateTime': '2009-06-01 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766335, 'End_Lon': -73.982523, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761982, 'Start_Lon': -73.963568, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-01 14:38:00', 'Trip_Pickup_DateTime': '2009-06-01 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772182, 'End_Lon': -73.95446, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77618, 'Start_Lon': -73.979707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-27 21:44:00', 'Trip_Pickup_DateTime': '2009-06-27 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751555, 'End_Lon': -73.978192, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737633, 'Start_Lon': -73.988408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-01 17:49:00', 'Trip_Pickup_DateTime': '2009-06-01 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77194, 'End_Lon': -73.979122, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764132, 'Start_Lon': -73.954377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-12 19:19:00', 'Trip_Pickup_DateTime': '2009-06-12 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800167, 'End_Lon': -73.967807, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762202, 'Start_Lon': -73.978912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-27 20:11:00', 'Trip_Pickup_DateTime': '2009-06-27 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71114, 'End_Lon': -74.015022, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751128, 'Start_Lon': -73.97611, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.63, 'Trip_Dropoff_DateTime': '2009-06-09 13:00:00', 'Trip_Pickup_DateTime': '2009-06-09 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752642, 'End_Lon': -73.978335, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756862, 'Start_Lon': -73.98432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-09 13:30:00', 'Trip_Pickup_DateTime': '2009-06-09 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759957, 'End_Lon': -73.991413, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774517, 'Start_Lon': -73.982273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-12 18:53:00', 'Trip_Pickup_DateTime': '2009-06-12 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774437, 'End_Lon': -73.953653, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762475, 'Start_Lon': -73.960083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-12 18:54:00', 'Trip_Pickup_DateTime': '2009-06-12 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730227, 'End_Lon': -73.986355, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80196, 'Start_Lon': -73.957143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.02, 'Trip_Dropoff_DateTime': '2009-06-01 22:23:00', 'Trip_Pickup_DateTime': '2009-06-01 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.701065, 'End_Lon': -74.073335, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.694078, 'Start_Lon': -74.08482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-27 23:04:00', 'Trip_Pickup_DateTime': '2009-06-27 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753227, 'End_Lon': -73.979287, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754662, 'Start_Lon': -73.991517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-12 13:14:00', 'Trip_Pickup_DateTime': '2009-06-12 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793298, 'End_Lon': -73.971027, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776243, 'Start_Lon': -73.982528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-27 15:46:00', 'Trip_Pickup_DateTime': '2009-06-27 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774282, 'End_Lon': -73.87138, 'Fare_Amt': 24.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764383, 'Start_Lon': -73.978243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.9, 'Trip_Distance': 9.55, 'Trip_Dropoff_DateTime': '2009-06-09 12:30:00', 'Trip_Pickup_DateTime': '2009-06-09 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764523, 'End_Lon': -73.998645, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783092, 'Start_Lon': -73.978682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-09 11:36:00', 'Trip_Pickup_DateTime': '2009-06-09 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781215, 'End_Lon': -73.952125, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757645, 'Start_Lon': -73.970063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-01 18:29:00', 'Trip_Pickup_DateTime': '2009-06-01 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750712, 'End_Lon': -73.971552, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780332, 'Start_Lon': -73.959223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-24 11:04:00', 'Trip_Pickup_DateTime': '2009-06-24 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739173, 'End_Lon': -73.979905, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743693, 'Start_Lon': -73.976473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-09 12:13:00', 'Trip_Pickup_DateTime': '2009-06-09 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797893, 'End_Lon': -73.968505, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786188, 'Start_Lon': -73.95143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-05 17:17:00', 'Trip_Pickup_DateTime': '2009-06-05 17:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.822028, 'End_Lon': -73.947747, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.805035, 'Start_Lon': -73.936895, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-01 18:54:00', 'Trip_Pickup_DateTime': '2009-06-01 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739168, 'End_Lon': -74.006397, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797758, 'Start_Lon': -73.969432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.67, 'Trip_Dropoff_DateTime': '2009-06-06 23:19:00', 'Trip_Pickup_DateTime': '2009-06-06 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757975, 'End_Lon': -73.992043, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78313, 'Start_Lon': -73.974485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-01 16:33:00', 'Trip_Pickup_DateTime': '2009-06-01 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763782, 'End_Lon': -73.9731, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750178, 'Start_Lon': -73.991817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-27 11:32:00', 'Trip_Pickup_DateTime': '2009-06-27 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801472, 'End_Lon': -73.961312, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.817775, 'Start_Lon': -73.960117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-17 21:48:00', 'Trip_Pickup_DateTime': '2009-06-17 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711443, 'End_Lon': -74.015427, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705278, 'Start_Lon': -74.008078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-12 07:01:00', 'Trip_Pickup_DateTime': '2009-06-12 06:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741195, 'End_Lon': -73.991683, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757062, 'Start_Lon': -73.982425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-12 22:21:00', 'Trip_Pickup_DateTime': '2009-06-12 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733613, 'End_Lon': -73.999682, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729803, 'Start_Lon': -74.003935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-17 19:37:00', 'Trip_Pickup_DateTime': '2009-06-17 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775298, 'End_Lon': -73.962487, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.669465, 'Start_Lon': -73.800892, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 55.0, 'Trip_Distance': 15.65, 'Trip_Dropoff_DateTime': '2009-06-19 01:35:00', 'Trip_Pickup_DateTime': '2009-06-19 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759448, 'End_Lon': -73.989597, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719993, 'Start_Lon': -73.996998, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-20 03:08:00', 'Trip_Pickup_DateTime': '2009-06-20 02:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744768, 'End_Lon': -73.97879, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744768, 'Start_Lon': -73.97879, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-17 16:27:00', 'Trip_Pickup_DateTime': '2009-06-17 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729318, 'End_Lon': -73.989327, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74221, 'Start_Lon': -73.99063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-17 18:39:00', 'Trip_Pickup_DateTime': '2009-06-17 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753665, 'End_Lon': -73.984843, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715298, 'Start_Lon': -74.009357, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-17 21:08:00', 'Trip_Pickup_DateTime': '2009-06-17 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771773, 'End_Lon': -73.951487, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762675, 'Start_Lon': -73.978602, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-17 18:04:00', 'Trip_Pickup_DateTime': '2009-06-17 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739467, 'End_Lon': -74.006182, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772578, 'Start_Lon': -73.977317, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-17 20:54:00', 'Trip_Pickup_DateTime': '2009-06-17 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742722, 'End_Lon': -73.985842, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715885, 'Start_Lon': -74.006735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-16 22:25:00', 'Trip_Pickup_DateTime': '2009-06-16 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805632, 'End_Lon': -73.965473, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756637, 'Start_Lon': -73.991848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-05 21:45:00', 'Trip_Pickup_DateTime': '2009-06-05 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76857, 'End_Lon': -73.861962, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759847, 'Start_Lon': -73.978398, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.65, 'Trip_Distance': 11.36, 'Trip_Dropoff_DateTime': '2009-06-12 06:43:00', 'Trip_Pickup_DateTime': '2009-06-12 06:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775507, 'End_Lon': -73.954055, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75573, 'Start_Lon': -73.976802, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-17 18:37:00', 'Trip_Pickup_DateTime': '2009-06-17 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757772, 'End_Lon': -73.968105, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757938, 'Start_Lon': -73.969353, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-17 19:26:00', 'Trip_Pickup_DateTime': '2009-06-17 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78549, 'End_Lon': -73.948983, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778112, 'Start_Lon': -73.954508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-08 20:03:00', 'Trip_Pickup_DateTime': '2009-06-08 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805603, 'End_Lon': -73.947262, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768497, 'Start_Lon': -73.863223, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 22.85, 'Trip_Distance': 7.39, 'Trip_Dropoff_DateTime': '2009-06-16 19:13:00', 'Trip_Pickup_DateTime': '2009-06-16 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736043, 'End_Lon': -73.991038, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779407, 'Start_Lon': -73.981838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.9, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-17 18:54:00', 'Trip_Pickup_DateTime': '2009-06-17 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752597, 'End_Lon': -73.972598, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779402, 'Start_Lon': -73.94472, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-05 09:10:00', 'Trip_Pickup_DateTime': '2009-06-05 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799948, 'End_Lon': -73.950757, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790837, 'Start_Lon': -73.964547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-12 06:28:00', 'Trip_Pickup_DateTime': '2009-06-12 06:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762013, 'End_Lon': -73.974623, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783242, 'Start_Lon': -73.97089, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-12 06:08:00', 'Trip_Pickup_DateTime': '2009-06-12 06:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779287, 'End_Lon': -73.962185, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763658, 'Start_Lon': -73.977515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-05 09:53:00', 'Trip_Pickup_DateTime': '2009-06-05 09:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76443, 'End_Lon': -73.968602, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.645367, 'Start_Lon': -73.776707, 'Tip_Amt': 11.11, 'Tolls_Amt': 4.15, 'Total_Amt': 60.26, 'Trip_Distance': 17.43, 'Trip_Dropoff_DateTime': '2009-06-13 11:00:00', 'Trip_Pickup_DateTime': '2009-06-13 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794557, 'End_Lon': -73.939932, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755688, 'Start_Lon': -73.969247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-19 01:32:00', 'Trip_Pickup_DateTime': '2009-06-19 01:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783278, 'End_Lon': -73.959158, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745385, 'Start_Lon': -73.986773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-10 10:31:00', 'Trip_Pickup_DateTime': '2009-06-10 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765088, 'End_Lon': -73.93178, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754078, 'Start_Lon': -73.942243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-10 10:57:00', 'Trip_Pickup_DateTime': '2009-06-10 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752402, 'End_Lon': -73.989725, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770475, 'Start_Lon': -73.987598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-13 18:13:00', 'Trip_Pickup_DateTime': '2009-06-13 18:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.675412, 'End_Lon': -73.966927, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74779, 'Start_Lon': -74.004255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.28, 'Trip_Dropoff_DateTime': '2009-06-19 03:09:00', 'Trip_Pickup_DateTime': '2009-06-19 02:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70461, 'End_Lon': -74.014625, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715512, 'Start_Lon': -74.014652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-10 10:07:00', 'Trip_Pickup_DateTime': '2009-06-10 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763073, 'End_Lon': -73.973693, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746682, 'Start_Lon': -73.97955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-10 09:06:00', 'Trip_Pickup_DateTime': '2009-06-10 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765473, 'End_Lon': -73.90933, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765497, 'Start_Lon': -73.932293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-13 17:18:00', 'Trip_Pickup_DateTime': '2009-06-13 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.579187, 'End_Lon': -73.954915, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647307, 'Start_Lon': -73.789558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.3, 'Trip_Distance': 14.96, 'Trip_Dropoff_DateTime': '2009-06-13 17:02:00', 'Trip_Pickup_DateTime': '2009-06-13 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76936, 'End_Lon': -73.960897, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782338, 'Start_Lon': -73.948472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-16 22:03:00', 'Trip_Pickup_DateTime': '2009-06-16 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714475, 'End_Lon': -73.98581, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70778, 'Start_Lon': -74.013738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-19 02:54:00', 'Trip_Pickup_DateTime': '2009-06-19 02:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763227, 'End_Lon': -73.978683, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74224, 'Start_Lon': -73.988955, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-13 15:47:00', 'Trip_Pickup_DateTime': '2009-06-13 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719182, 'End_Lon': -74.010153, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70679, 'Start_Lon': -74.006615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-07 20:07:00', 'Trip_Pickup_DateTime': '2009-06-07 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743755, 'End_Lon': -73.973353, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738648, 'Start_Lon': -73.99957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-19 02:58:00', 'Trip_Pickup_DateTime': '2009-06-19 02:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762792, 'End_Lon': -73.993135, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754278, 'Start_Lon': -73.968655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-10 09:32:00', 'Trip_Pickup_DateTime': '2009-06-10 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717032, 'End_Lon': -74.004258, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730195, 'Start_Lon': -73.989727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-13 00:15:00', 'Trip_Pickup_DateTime': '2009-06-13 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760063, 'End_Lon': -73.974132, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742762, 'Start_Lon': -73.992883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-13 12:20:00', 'Trip_Pickup_DateTime': '2009-06-13 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756843, 'End_Lon': -73.921128, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761247, 'Start_Lon': -73.935467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-10 03:15:00', 'Trip_Pickup_DateTime': '2009-06-10 03:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769212, 'End_Lon': -73.988482, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754452, 'Start_Lon': -73.999348, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-09 21:40:00', 'Trip_Pickup_DateTime': '2009-06-09 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744645, 'End_Lon': -73.975775, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756825, 'Start_Lon': -73.963045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-13 14:59:00', 'Trip_Pickup_DateTime': '2009-06-13 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779432, 'End_Lon': -73.944522, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76865, 'Start_Lon': -73.967788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-13 15:12:00', 'Trip_Pickup_DateTime': '2009-06-13 15:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77839, 'End_Lon': -73.978047, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78211, 'Start_Lon': -73.975558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.28, 'Trip_Dropoff_DateTime': '2009-06-13 15:13:00', 'Trip_Pickup_DateTime': '2009-06-13 15:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753682, 'End_Lon': -73.972465, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733282, 'Start_Lon': -73.987035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-01 15:01:00', 'Trip_Pickup_DateTime': '2009-06-01 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695957, 'End_Lon': -73.992565, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761362, 'Start_Lon': -73.986352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.56, 'Trip_Dropoff_DateTime': '2009-06-19 01:51:00', 'Trip_Pickup_DateTime': '2009-06-19 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760333, 'End_Lon': -73.969293, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762537, 'Start_Lon': -73.968473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-13 13:24:00', 'Trip_Pickup_DateTime': '2009-06-13 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756087, 'End_Lon': -73.961897, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76609, 'Start_Lon': -73.96542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-13 13:25:00', 'Trip_Pickup_DateTime': '2009-06-13 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711845, 'End_Lon': -73.986708, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722085, 'Start_Lon': -73.983262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-02 00:03:00', 'Trip_Pickup_DateTime': '2009-06-01 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73021, 'End_Lon': -74.006427, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745818, 'Start_Lon': -73.994418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-10 08:34:00', 'Trip_Pickup_DateTime': '2009-06-10 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7452, 'End_Lon': -74.00565, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736492, 'Start_Lon': -73.985145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-13 13:55:00', 'Trip_Pickup_DateTime': '2009-06-13 13:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735477, 'End_Lon': -73.984568, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747328, 'Start_Lon': -73.981118, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-10 08:30:00', 'Trip_Pickup_DateTime': '2009-06-10 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773453, 'End_Lon': -73.977827, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725643, 'Start_Lon': -73.900797, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 59.15, 'Trip_Distance': 6.99, 'Trip_Dropoff_DateTime': '2009-06-13 17:19:00', 'Trip_Pickup_DateTime': '2009-06-13 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723667, 'End_Lon': -74.011315, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713772, 'Start_Lon': -74.008948, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-13 15:12:00', 'Trip_Pickup_DateTime': '2009-06-13 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.8014, 'End_Lon': -73.971052, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.824345, 'Start_Lon': -73.952153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-13 14:53:00', 'Trip_Pickup_DateTime': '2009-06-13 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767815, 'End_Lon': -73.962143, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763825, 'Start_Lon': -73.972883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-13 14:06:00', 'Trip_Pickup_DateTime': '2009-06-13 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67245, 'End_Lon': -73.978953, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730155, 'Start_Lon': -74.00026, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.76, 'Trip_Dropoff_DateTime': '2009-06-28 22:28:00', 'Trip_Pickup_DateTime': '2009-06-28 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761032, 'End_Lon': -73.968869, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.778687, 'Start_Lon': -73.955908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-13 21:02:20', 'Trip_Pickup_DateTime': '2009-06-13 20:58:23', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.748035, 'End_Lon': -73.987245, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761685, 'Start_Lon': -73.95754, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-19 01:45:00', 'Trip_Pickup_DateTime': '2009-06-19 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-13 01:20:00', 'Trip_Pickup_DateTime': '2009-06-13 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75693, 'End_Lon': -73.98363, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748505, 'Start_Lon': -73.984442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-13 13:39:00', 'Trip_Pickup_DateTime': '2009-06-13 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785835, 'End_Lon': -73.950713, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781167, 'Start_Lon': -73.946148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-10 07:21:00', 'Trip_Pickup_DateTime': '2009-06-10 07:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727167, 'End_Lon': -73.992585, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738277, 'Start_Lon': -73.999865, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-10 00:17:00', 'Trip_Pickup_DateTime': '2009-06-10 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749662, 'End_Lon': -73.993147, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729677, 'Start_Lon': -73.986943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-13 08:44:00', 'Trip_Pickup_DateTime': '2009-06-13 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767677, 'End_Lon': -73.992965, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752275, 'Start_Lon': -73.993677, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.15, 'Trip_Dropoff_DateTime': '2009-06-01 12:44:00', 'Trip_Pickup_DateTime': '2009-06-01 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719062, 'End_Lon': -73.975358, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70442, 'Start_Lon': -74.013705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-29 10:34:00', 'Trip_Pickup_DateTime': '2009-06-29 10:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75709, 'End_Lon': -73.971783, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745265, 'Start_Lon': -73.978588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-10 08:14:00', 'Trip_Pickup_DateTime': '2009-06-10 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744182, 'End_Lon': -73.98777, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71371, 'Start_Lon': -74.008932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-09 18:58:00', 'Trip_Pickup_DateTime': '2009-06-09 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.88889, 'End_Lon': -73.893302, 'Fare_Amt': 28.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7469, 'Start_Lon': -73.971368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.5, 'Trip_Distance': 12.32, 'Trip_Dropoff_DateTime': '2009-06-13 12:33:00', 'Trip_Pickup_DateTime': '2009-06-13 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763932, 'End_Lon': -73.984118, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760657, 'Start_Lon': -73.960995, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-13 12:54:00', 'Trip_Pickup_DateTime': '2009-06-13 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756087, 'End_Lon': -73.997585, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749387, 'Start_Lon': -74.004598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-13 12:26:00', 'Trip_Pickup_DateTime': '2009-06-13 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773197, 'End_Lon': -73.964435, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749168, 'Start_Lon': -74.003825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-13 12:40:00', 'Trip_Pickup_DateTime': '2009-06-13 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749288, 'End_Lon': -73.991765, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732203, 'Start_Lon': -73.987928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-13 10:53:00', 'Trip_Pickup_DateTime': '2009-06-13 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795683, 'End_Lon': -73.97213, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799662, 'Start_Lon': -73.968232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-13 13:24:00', 'Trip_Pickup_DateTime': '2009-06-13 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75771, 'End_Lon': -73.907517, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756512, 'Start_Lon': -73.983198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.93, 'Trip_Dropoff_DateTime': '2009-06-10 00:36:00', 'Trip_Pickup_DateTime': '2009-06-10 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768395, 'End_Lon': -73.958715, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746343, 'Start_Lon': -74.001192, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 3.67, 'Trip_Dropoff_DateTime': '2009-06-13 13:02:00', 'Trip_Pickup_DateTime': '2009-06-13 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776898, 'End_Lon': -73.95862, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751347, 'Start_Lon': -73.994022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-10 00:32:00', 'Trip_Pickup_DateTime': '2009-06-10 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742842, 'End_Lon': -74.004035, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742842, 'Start_Lon': -74.004035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-06 00:46:00', 'Trip_Pickup_DateTime': '2009-06-06 00:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781785, 'End_Lon': -73.956702, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783993, 'Start_Lon': -73.973918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-09 21:58:00', 'Trip_Pickup_DateTime': '2009-06-09 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762868, 'End_Lon': -73.98197, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773608, 'Start_Lon': -73.870963, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.35, 'Trip_Distance': 9.48, 'Trip_Dropoff_DateTime': '2009-06-12 23:29:00', 'Trip_Pickup_DateTime': '2009-06-12 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738108, 'End_Lon': -73.986692, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785438, 'Start_Lon': -73.955478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-12 14:28:00', 'Trip_Pickup_DateTime': '2009-06-12 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739428, 'End_Lon': -73.999108, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746563, 'Start_Lon': -73.993862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-01 18:50:00', 'Trip_Pickup_DateTime': '2009-06-01 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763765, 'End_Lon': -73.95592, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730035, 'Start_Lon': -73.989527, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-09 18:23:00', 'Trip_Pickup_DateTime': '2009-06-09 18:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75071, 'End_Lon': -73.978732, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804038, 'Start_Lon': -73.93768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-13 10:05:00', 'Trip_Pickup_DateTime': '2009-06-13 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756235, 'End_Lon': -73.964445, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76826, 'Start_Lon': -73.98136, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-09 21:20:00', 'Trip_Pickup_DateTime': '2009-06-09 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762185, 'End_Lon': -73.949917, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764275, 'Start_Lon': -73.923102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-28 23:48:00', 'Trip_Pickup_DateTime': '2009-06-28 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749707, 'End_Lon': -73.979538, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729085, 'Start_Lon': -74.000813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-13 04:00:00', 'Trip_Pickup_DateTime': '2009-06-13 03:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.698407, 'End_Lon': -73.932, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723402, 'Start_Lon': -73.988848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-13 05:54:00', 'Trip_Pickup_DateTime': '2009-06-13 05:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720072, 'End_Lon': -74.009935, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710043, 'Start_Lon': -74.0114, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-09 21:24:00', 'Trip_Pickup_DateTime': '2009-06-09 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767762, 'End_Lon': -73.955782, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783773, 'Start_Lon': -73.9547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-28 22:10:00', 'Trip_Pickup_DateTime': '2009-06-28 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73539, 'End_Lon': -73.988378, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726975, 'Start_Lon': -73.99137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-13 01:28:00', 'Trip_Pickup_DateTime': '2009-06-13 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750098, 'End_Lon': -74.002448, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752043, 'Start_Lon': -73.976515, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-29 00:17:00', 'Trip_Pickup_DateTime': '2009-06-29 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73669, 'End_Lon': -73.997093, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755815, 'Start_Lon': -73.990745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-28 00:02:00', 'Trip_Pickup_DateTime': '2009-06-27 23:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740948, 'End_Lon': -73.978617, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744475, 'Start_Lon': -73.987173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-28 22:37:00', 'Trip_Pickup_DateTime': '2009-06-28 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708738, 'End_Lon': -74.011608, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737955, 'Start_Lon': -74.000107, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-09 21:53:00', 'Trip_Pickup_DateTime': '2009-06-09 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784625, 'End_Lon': -73.975562, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768923, 'Start_Lon': -73.982032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-09 18:19:00', 'Trip_Pickup_DateTime': '2009-06-09 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780332, 'End_Lon': -73.981505, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76254, 'Start_Lon': -73.982547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-28 19:42:00', 'Trip_Pickup_DateTime': '2009-06-28 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789395, 'End_Lon': -73.941673, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778848, 'Start_Lon': -73.954203, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-09 21:13:00', 'Trip_Pickup_DateTime': '2009-06-09 21:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744645, 'End_Lon': -73.991702, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750922, 'Start_Lon': -73.980753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-09 21:09:00', 'Trip_Pickup_DateTime': '2009-06-09 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73445, 'End_Lon': -73.993735, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733562, 'Start_Lon': -73.999615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-16 14:15:00', 'Trip_Pickup_DateTime': '2009-06-16 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7726, 'End_Lon': -73.958555, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763797, 'Start_Lon': -73.97626, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-16 12:10:00', 'Trip_Pickup_DateTime': '2009-06-16 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74787, 'End_Lon': -73.988555, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739885, 'Start_Lon': -73.982073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-19 02:40:00', 'Trip_Pickup_DateTime': '2009-06-19 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.645152, 'End_Lon': -73.776382, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776167, 'Start_Lon': -73.979678, 'Tip_Amt': 11.25, 'Tolls_Amt': 4.15, 'Total_Amt': 60.4, 'Trip_Distance': 21.39, 'Trip_Dropoff_DateTime': '2009-06-18 17:57:00', 'Trip_Pickup_DateTime': '2009-06-18 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769713, 'End_Lon': -73.96847, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785598, 'Start_Lon': -73.98029, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-16 15:06:00', 'Trip_Pickup_DateTime': '2009-06-16 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678747, 'End_Lon': -73.997567, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755038, 'Start_Lon': -73.968415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 7.49, 'Trip_Dropoff_DateTime': '2009-06-07 19:55:00', 'Trip_Pickup_DateTime': '2009-06-07 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758702, 'End_Lon': -73.986303, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762577, 'Start_Lon': -73.97897, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 16:18:00', 'Trip_Pickup_DateTime': '2009-06-18 15:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715817, 'End_Lon': -74.003498, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713867, 'Start_Lon': -73.992887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-19 02:41:00', 'Trip_Pickup_DateTime': '2009-06-19 02:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763953, 'End_Lon': -73.975037, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766673, 'Start_Lon': -73.99007, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-17 16:26:00', 'Trip_Pickup_DateTime': '2009-06-17 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770382, 'End_Lon': -73.864777, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755807, 'Start_Lon': -73.973442, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.05, 'Trip_Distance': 9.97, 'Trip_Dropoff_DateTime': '2009-06-18 12:47:00', 'Trip_Pickup_DateTime': '2009-06-18 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759952, 'End_Lon': -73.978482, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774895, 'Start_Lon': -73.961007, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-18 15:04:00', 'Trip_Pickup_DateTime': '2009-06-18 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644725, 'End_Lon': -73.77768, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72555, 'Start_Lon': -74.00381, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.66, 'Trip_Dropoff_DateTime': '2009-06-18 13:40:00', 'Trip_Pickup_DateTime': '2009-06-18 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752745, 'End_Lon': -73.985708, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751743, 'Start_Lon': -73.991312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-18 13:21:00', 'Trip_Pickup_DateTime': '2009-06-18 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725305, 'End_Lon': -73.978083, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724837, 'Start_Lon': -73.994482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-18 11:51:00', 'Trip_Pickup_DateTime': '2009-06-18 11:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724645, 'End_Lon': -73.998315, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739028, 'Start_Lon': -73.999335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-05 23:19:00', 'Trip_Pickup_DateTime': '2009-06-05 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724512, 'End_Lon': -73.994478, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721263, 'Start_Lon': -73.991272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-17 16:06:00', 'Trip_Pickup_DateTime': '2009-06-17 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729407, 'End_Lon': -73.989608, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715867, 'Start_Lon': -74.007295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-18 14:04:00', 'Trip_Pickup_DateTime': '2009-06-18 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743165, 'End_Lon': -74.00745, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741333, 'Start_Lon': -73.9834, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-18 12:37:00', 'Trip_Pickup_DateTime': '2009-06-18 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777672, 'End_Lon': -73.954743, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768862, 'Start_Lon': -73.961378, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-16 10:06:00', 'Trip_Pickup_DateTime': '2009-06-16 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76414, 'End_Lon': -73.971017, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758667, 'Start_Lon': -73.964975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-18 12:39:00', 'Trip_Pickup_DateTime': '2009-06-18 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724577, 'End_Lon': -73.993482, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74485, 'Start_Lon': -73.975655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-18 10:33:00', 'Trip_Pickup_DateTime': '2009-06-18 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754765, 'End_Lon': -73.981292, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773123, 'Start_Lon': -73.950062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-16 10:22:00', 'Trip_Pickup_DateTime': '2009-06-16 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76243, 'End_Lon': -73.970082, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75561, 'Start_Lon': -73.974828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-16 08:03:00', 'Trip_Pickup_DateTime': '2009-06-16 08:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772105, 'End_Lon': -73.962937, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774035, 'Start_Lon': -73.964093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-18 14:50:00', 'Trip_Pickup_DateTime': '2009-06-18 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758425, 'End_Lon': -73.979295, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756808, 'Start_Lon': -73.989752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-18 10:11:00', 'Trip_Pickup_DateTime': '2009-06-18 10:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755578, 'End_Lon': -73.970392, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742527, 'Start_Lon': -73.9917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-18 13:00:00', 'Trip_Pickup_DateTime': '2009-06-18 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76972, 'End_Lon': -73.982263, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78095, 'Start_Lon': -73.954505, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 9.75, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-16 08:45:00', 'Trip_Pickup_DateTime': '2009-06-16 08:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76114, 'End_Lon': -73.973212, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752367, 'Start_Lon': -73.982525, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-18 12:09:00', 'Trip_Pickup_DateTime': '2009-06-18 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7366, 'End_Lon': -73.993377, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747702, 'Start_Lon': -73.985368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-18 11:08:00', 'Trip_Pickup_DateTime': '2009-06-18 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743057, 'End_Lon': -73.98714, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735035, 'Start_Lon': -73.998648, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-16 10:55:00', 'Trip_Pickup_DateTime': '2009-06-16 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725662, 'End_Lon': -74.003964, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.737197, 'Start_Lon': -74.000631, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-18 06:23:11', 'Trip_Pickup_DateTime': '2009-06-18 06:21:18', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.742192, 'End_Lon': -73.9864, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73046, 'Start_Lon': -73.986588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-16 06:53:00', 'Trip_Pickup_DateTime': '2009-06-16 06:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76428, 'End_Lon': -73.973885, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765713, 'Start_Lon': -73.972037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-08 03:08:00', 'Trip_Pickup_DateTime': '2009-06-08 03:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757543, 'End_Lon': -73.970627, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760777, 'Start_Lon': -73.968722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-18 11:59:00', 'Trip_Pickup_DateTime': '2009-06-18 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716562, 'End_Lon': -74.002242, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737293, 'Start_Lon': -73.990438, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-18 12:02:00', 'Trip_Pickup_DateTime': '2009-06-18 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77915, 'End_Lon': -73.955798, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804638, 'Start_Lon': -73.939467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-16 08:34:00', 'Trip_Pickup_DateTime': '2009-06-16 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757242, 'End_Lon': -73.978022, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74321, 'Start_Lon': -73.917157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-16 07:15:00', 'Trip_Pickup_DateTime': '2009-06-16 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740675, 'End_Lon': -74.001943, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732242, 'Start_Lon': -73.995985, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 10:21:00', 'Trip_Pickup_DateTime': '2009-06-18 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745938, 'End_Lon': -73.986507, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739487, 'Start_Lon': -73.984663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-18 08:58:00', 'Trip_Pickup_DateTime': '2009-06-18 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73727, 'End_Lon': -73.979658, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761035, 'Start_Lon': -73.98182, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-15 19:57:00', 'Trip_Pickup_DateTime': '2009-06-15 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7464, 'End_Lon': -73.971918, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755877, 'Start_Lon': -73.99095, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-18 09:42:00', 'Trip_Pickup_DateTime': '2009-06-18 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739043, 'End_Lon': -73.985678, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751363, 'Start_Lon': -73.990468, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-18 09:09:00', 'Trip_Pickup_DateTime': '2009-06-18 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75117, 'End_Lon': -73.982397, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753318, 'Start_Lon': -73.966653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-16 00:26:00', 'Trip_Pickup_DateTime': '2009-06-16 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778948, 'End_Lon': -73.978317, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765712, 'Start_Lon': -73.976033, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-04 17:57:00', 'Trip_Pickup_DateTime': '2009-06-04 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.84442, 'End_Lon': -73.93782, 'Fare_Amt': 18.2, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.84442, 'Start_Lon': -73.93782, 'Tip_Amt': 3.64, 'Tolls_Amt': 0.0, 'Total_Amt': 21.84, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-16 01:49:00', 'Trip_Pickup_DateTime': '2009-06-16 01:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71933, 'End_Lon': -73.990815, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744255, 'Start_Lon': -73.990582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-02 20:55:00', 'Trip_Pickup_DateTime': '2009-06-02 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733313, 'End_Lon': -73.996785, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748862, 'Start_Lon': -73.978095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-05 10:36:00', 'Trip_Pickup_DateTime': '2009-06-05 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762342, 'End_Lon': -73.986583, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749452, 'Start_Lon': -73.986475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-16 02:21:00', 'Trip_Pickup_DateTime': '2009-06-16 02:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759703, 'End_Lon': -73.962173, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724232, 'Start_Lon': -73.979082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-05 00:42:00', 'Trip_Pickup_DateTime': '2009-06-05 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720008, 'End_Lon': -74.010215, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77067, 'Start_Lon': -73.982062, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-18 09:02:00', 'Trip_Pickup_DateTime': '2009-06-18 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787778, 'End_Lon': -73.953718, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784368, 'Start_Lon': -73.947072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-16 06:23:00', 'Trip_Pickup_DateTime': '2009-06-16 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778132, 'End_Lon': -73.981985, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76531, 'Start_Lon': -73.977493, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-16 19:20:00', 'Trip_Pickup_DateTime': '2009-06-16 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755787, 'End_Lon': -73.982223, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749317, 'Start_Lon': -73.975665, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-18 08:29:00', 'Trip_Pickup_DateTime': '2009-06-18 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742492, 'End_Lon': -73.878472, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721917, 'Start_Lon': -73.986507, 'Tip_Amt': 4.65, 'Tolls_Amt': 0.0, 'Total_Amt': 23.25, 'Trip_Distance': 7.16, 'Trip_Dropoff_DateTime': '2009-06-16 01:53:00', 'Trip_Pickup_DateTime': '2009-06-16 01:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750393, 'End_Lon': -73.994675, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751855, 'Start_Lon': -73.999987, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-18 09:54:00', 'Trip_Pickup_DateTime': '2009-06-18 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791452, 'End_Lon': -73.952297, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763392, 'Start_Lon': -73.963128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-13 08:30:00', 'Trip_Pickup_DateTime': '2009-06-13 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772752, 'End_Lon': -73.94624, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764963, 'Start_Lon': -73.96421, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-18 07:50:00', 'Trip_Pickup_DateTime': '2009-06-18 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74987, 'End_Lon': -73.991383, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762925, 'Start_Lon': -73.981995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-15 23:36:00', 'Trip_Pickup_DateTime': '2009-06-15 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719697, 'End_Lon': -73.998118, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753337, 'Start_Lon': -73.996212, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-03 21:01:00', 'Trip_Pickup_DateTime': '2009-06-03 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75665, 'End_Lon': -73.965488, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.72179, 'Start_Lon': -74.008271, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.5, 'Trip_Dropoff_DateTime': '2009-06-06 16:53:51', 'Trip_Pickup_DateTime': '2009-06-06 16:36:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.746308, 'End_Lon': -74.0008, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737835, 'Start_Lon': -73.996377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-15 23:32:00', 'Trip_Pickup_DateTime': '2009-06-15 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759165, 'End_Lon': -73.971575, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77822, 'Start_Lon': -73.951683, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-16 21:45:00', 'Trip_Pickup_DateTime': '2009-06-16 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74599, 'End_Lon': -73.899145, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77705, 'Start_Lon': -73.979002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.98, 'Trip_Dropoff_DateTime': '2009-06-13 01:04:00', 'Trip_Pickup_DateTime': '2009-06-13 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75628, 'End_Lon': -73.975315, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750973, 'Start_Lon': -73.994123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-18 06:22:00', 'Trip_Pickup_DateTime': '2009-06-18 06:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734483, 'End_Lon': -74.002368, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742065, 'Start_Lon': -73.997213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-06 19:32:00', 'Trip_Pickup_DateTime': '2009-06-06 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740685, 'End_Lon': -73.982717, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761462, 'Start_Lon': -73.988452, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-16 00:10:00', 'Trip_Pickup_DateTime': '2009-06-16 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762992, 'End_Lon': -73.981937, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74211, 'Start_Lon': -74.004497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-15 21:36:00', 'Trip_Pickup_DateTime': '2009-06-15 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773022, 'End_Lon': -73.950378, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761187, 'Start_Lon': -73.966013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-15 21:31:00', 'Trip_Pickup_DateTime': '2009-06-15 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762418, 'End_Lon': -73.96596, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772718, 'Start_Lon': -73.955707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-15 22:04:00', 'Trip_Pickup_DateTime': '2009-06-15 22:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76598, 'End_Lon': -73.965513, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769607, 'Start_Lon': -73.960412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-15 19:48:00', 'Trip_Pickup_DateTime': '2009-06-15 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739502, 'End_Lon': -73.920365, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745368, 'Start_Lon': -73.903522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-18 05:44:00', 'Trip_Pickup_DateTime': '2009-06-18 05:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758497, 'End_Lon': -74.004292, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762622, 'Start_Lon': -73.959853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-15 22:34:00', 'Trip_Pickup_DateTime': '2009-06-15 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714307, 'End_Lon': -73.961413, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725805, 'Start_Lon': -74.007353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-15 22:33:00', 'Trip_Pickup_DateTime': '2009-06-15 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741632, 'End_Lon': -73.989442, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767153, 'Start_Lon': -73.981388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-17 16:28:00', 'Trip_Pickup_DateTime': '2009-06-17 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778462, 'End_Lon': -73.949185, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785455, 'Start_Lon': -73.957517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-15 20:26:00', 'Trip_Pickup_DateTime': '2009-06-15 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.712375, 'End_Lon': -74.006365, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756, 'Start_Lon': -73.97968, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.13, 'Trip_Dropoff_DateTime': '2009-06-16 21:32:00', 'Trip_Pickup_DateTime': '2009-06-16 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754577, 'End_Lon': -73.97337, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773835, 'Start_Lon': -73.87208, 'Tip_Amt': 5.0, 'Tolls_Amt': 5.0, 'Total_Amt': 38.5, 'Trip_Distance': 10.28, 'Trip_Dropoff_DateTime': '2009-06-02 12:59:00', 'Trip_Pickup_DateTime': '2009-06-02 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73706, 'End_Lon': -73.981418, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751212, 'Start_Lon': -73.971222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-15 21:34:00', 'Trip_Pickup_DateTime': '2009-06-15 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760652, 'End_Lon': -73.983673, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756012, 'Start_Lon': -73.990463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 07:09:00', 'Trip_Pickup_DateTime': '2009-06-18 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730322, 'End_Lon': -74.004603, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741392, 'Start_Lon': -73.997588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-18 01:33:00', 'Trip_Pickup_DateTime': '2009-06-18 01:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722498, 'End_Lon': -73.99602, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738593, 'Start_Lon': -74.005667, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-18 02:49:00', 'Trip_Pickup_DateTime': '2009-06-18 02:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733958, 'End_Lon': -73.990678, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725558, 'Start_Lon': -73.983823, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-17 22:00:00', 'Trip_Pickup_DateTime': '2009-06-17 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767283, 'End_Lon': -73.982383, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722603, 'Start_Lon': -73.983038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-18 01:03:00', 'Trip_Pickup_DateTime': '2009-06-18 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743492, 'End_Lon': -73.991588, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755298, 'Start_Lon': -73.985795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-15 21:35:00', 'Trip_Pickup_DateTime': '2009-06-15 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79505, 'End_Lon': -73.971773, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765972, 'Start_Lon': -73.963178, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-17 21:50:00', 'Trip_Pickup_DateTime': '2009-06-17 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746812, 'End_Lon': -73.997347, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741005, 'Start_Lon': -73.99407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-17 21:35:00', 'Trip_Pickup_DateTime': '2009-06-17 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77542, 'End_Lon': -73.980258, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75892, 'Start_Lon': -73.978598, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-15 20:06:00', 'Trip_Pickup_DateTime': '2009-06-15 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740195, 'End_Lon': -74.003613, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764537, 'Start_Lon': -73.96136, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-15 20:32:00', 'Trip_Pickup_DateTime': '2009-06-15 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739355, 'End_Lon': -73.998898, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744435, 'Start_Lon': -73.996832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-18 00:01:00', 'Trip_Pickup_DateTime': '2009-06-17 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74468, 'End_Lon': -73.956692, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749778, 'Start_Lon': -73.991467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.07, 'Trip_Dropoff_DateTime': '2009-06-17 22:33:00', 'Trip_Pickup_DateTime': '2009-06-17 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.636973, 'End_Lon': -73.959768, 'Fare_Amt': 34.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646823, 'Start_Lon': -73.790208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.9, 'Trip_Distance': 15.29, 'Trip_Dropoff_DateTime': '2009-06-05 20:11:00', 'Trip_Pickup_DateTime': '2009-06-05 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730802, 'End_Lon': -73.982837, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719088, 'Start_Lon': -73.990365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-18 01:36:00', 'Trip_Pickup_DateTime': '2009-06-18 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775718, 'End_Lon': -73.982213, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.807498, 'Start_Lon': -73.964463, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-15 19:54:00', 'Trip_Pickup_DateTime': '2009-06-15 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723403, 'End_Lon': -73.991253, 'Fare_Amt': 8.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745653, 'Start_Lon': -73.999328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-17 14:39:00', 'Trip_Pickup_DateTime': '2009-06-17 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76845, 'End_Lon': -73.982248, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756032, 'Start_Lon': -73.983175, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-15 19:34:00', 'Trip_Pickup_DateTime': '2009-06-15 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779908, 'End_Lon': -73.950282, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7485, 'Start_Lon': -73.988507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-17 22:06:00', 'Trip_Pickup_DateTime': '2009-06-17 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748278, 'End_Lon': -73.978093, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733377, 'Start_Lon': -73.987053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-17 20:39:00', 'Trip_Pickup_DateTime': '2009-06-17 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751137, 'End_Lon': -73.99043, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75156, 'Start_Lon': -73.970833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-17 19:11:00', 'Trip_Pickup_DateTime': '2009-06-17 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740895, 'End_Lon': -73.982028, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764177, 'Start_Lon': -73.973332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-17 19:05:00', 'Trip_Pickup_DateTime': '2009-06-17 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759663, 'End_Lon': -73.991505, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739912, 'Start_Lon': -73.989422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-16 22:17:00', 'Trip_Pickup_DateTime': '2009-06-16 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74822, 'End_Lon': -74.005345, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739927, 'Start_Lon': -73.986462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-17 18:56:00', 'Trip_Pickup_DateTime': '2009-06-17 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763428, 'End_Lon': -73.994622, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.745789, 'Start_Lon': -73.998067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-13 00:14:58', 'Trip_Pickup_DateTime': '2009-06-13 00:09:03', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.749797, 'End_Lon': -73.991389, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'No Charge', 'Rate_Code': None, 'Start_Lat': 40.72005, 'Start_Lon': -73.999276, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-14 14:31:01', 'Trip_Pickup_DateTime': '2009-06-14 14:15:06', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.722272, 'End_Lon': -73.987263, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736922, 'Start_Lon': -73.981863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-06 23:54:00', 'Trip_Pickup_DateTime': '2009-06-06 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.631367, 'End_Lon': -73.981243, 'Fare_Amt': 31.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757475, 'Start_Lon': -73.981525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.8, 'Trip_Distance': 13.05, 'Trip_Dropoff_DateTime': '2009-06-17 01:05:00', 'Trip_Pickup_DateTime': '2009-06-17 00:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754862, 'End_Lon': -73.9756, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768543, 'Start_Lon': -73.95569, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-19 07:49:00', 'Trip_Pickup_DateTime': '2009-06-19 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753302, 'End_Lon': -73.971055, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772652, 'Start_Lon': -73.981475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-17 00:24:00', 'Trip_Pickup_DateTime': '2009-06-17 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.887513, 'End_Lon': -73.90593, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757057, 'Start_Lon': -73.990037, 'Tip_Amt': 5.16, 'Tolls_Amt': 2.75, 'Total_Amt': 33.71, 'Trip_Distance': 11.11, 'Trip_Dropoff_DateTime': '2009-06-17 00:59:00', 'Trip_Pickup_DateTime': '2009-06-17 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720493, 'End_Lon': -73.999968, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724097, 'Start_Lon': -74.003218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-19 10:12:00', 'Trip_Pickup_DateTime': '2009-06-19 10:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693858, 'End_Lon': -73.992575, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686175, 'Start_Lon': -73.996328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-19 07:13:00', 'Trip_Pickup_DateTime': '2009-06-19 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779397, 'End_Lon': -73.955182, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738773, 'Start_Lon': -73.977077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-16 23:37:00', 'Trip_Pickup_DateTime': '2009-06-16 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759473, 'End_Lon': -73.98458, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737993, 'Start_Lon': -73.996608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-17 07:24:00', 'Trip_Pickup_DateTime': '2009-06-17 07:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725043, 'End_Lon': -73.992203, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723002, 'Start_Lon': -74.003205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-04 20:16:00', 'Trip_Pickup_DateTime': '2009-06-04 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 14.61, 'Trip_Dropoff_DateTime': '2009-06-19 06:24:00', 'Trip_Pickup_DateTime': '2009-06-19 06:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74141, 'End_Lon': -73.979167, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75049, 'Start_Lon': -73.991362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-03 06:45:00', 'Trip_Pickup_DateTime': '2009-06-03 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710047, 'End_Lon': -74.009713, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7463, 'Start_Lon': -74.000837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-19 04:51:00', 'Trip_Pickup_DateTime': '2009-06-19 04:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744455, 'End_Lon': -73.986377, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747315, 'Start_Lon': -73.997137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-16 21:10:00', 'Trip_Pickup_DateTime': '2009-06-16 21:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739978, 'End_Lon': -73.992583, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739312, 'Start_Lon': -74.000512, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 19.48, 'Trip_Dropoff_DateTime': '2009-06-05 17:58:00', 'Trip_Pickup_DateTime': '2009-06-05 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.816207, 'End_Lon': -73.957903, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798978, 'Start_Lon': -73.968475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-05 20:27:00', 'Trip_Pickup_DateTime': '2009-06-05 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731197, 'End_Lon': -73.999495, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736425, 'Start_Lon': -73.993262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-16 20:05:00', 'Trip_Pickup_DateTime': '2009-06-16 20:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725165, 'End_Lon': -73.852047, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72444, 'Start_Lon': -73.858397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-03 22:46:00', 'Trip_Pickup_DateTime': '2009-06-03 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736662, 'End_Lon': -73.989062, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731097, 'Start_Lon': -73.9883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-19 01:13:00', 'Trip_Pickup_DateTime': '2009-06-19 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733082, 'End_Lon': -74.005927, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73174, 'Start_Lon': -73.99639, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-02 17:01:00', 'Trip_Pickup_DateTime': '2009-06-02 16:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.850808, 'End_Lon': -73.916728, 'Fare_Amt': 24.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747993, 'Start_Lon': -74.004758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 10.08, 'Trip_Dropoff_DateTime': '2009-06-19 01:45:00', 'Trip_Pickup_DateTime': '2009-06-19 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742673, 'End_Lon': -74.003715, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741697, 'Start_Lon': -73.997277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-16 20:45:00', 'Trip_Pickup_DateTime': '2009-06-16 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775035, 'End_Lon': -73.959085, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778418, 'Start_Lon': -73.985273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-19 05:53:00', 'Trip_Pickup_DateTime': '2009-06-19 05:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.695272, 'End_Lon': -74.177487, 'Fare_Amt': 78.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.69527, 'Start_Lon': -74.177483, 'Tip_Amt': 19.5, 'Tolls_Amt': 0.0, 'Total_Amt': 97.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-19 05:28:00', 'Trip_Pickup_DateTime': '2009-06-19 05:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.699555, 'End_Lon': -73.922785, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719815, 'Start_Lon': -73.98768, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-19 03:22:00', 'Trip_Pickup_DateTime': '2009-06-19 03:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752957, 'End_Lon': -74.015872, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754898, 'Start_Lon': -74.018432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-18 23:11:00', 'Trip_Pickup_DateTime': '2009-06-18 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.712653, 'End_Lon': -73.989557, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720403, 'Start_Lon': -73.989107, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-16 21:18:00', 'Trip_Pickup_DateTime': '2009-06-16 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750705, 'End_Lon': -73.972203, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78432, 'Start_Lon': -73.952002, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-16 22:21:00', 'Trip_Pickup_DateTime': '2009-06-16 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758993, 'End_Lon': -73.972367, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731883, 'Start_Lon': -73.994992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-16 21:48:00', 'Trip_Pickup_DateTime': '2009-06-16 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762703, 'End_Lon': -73.967773, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718037, 'Start_Lon': -73.957668, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-19 02:56:00', 'Trip_Pickup_DateTime': '2009-06-19 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726063, 'End_Lon': -73.99487, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.726063, 'Start_Lon': -73.99487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-22 11:02:29', 'Trip_Pickup_DateTime': '2009-06-22 11:02:24', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.736893, 'End_Lon': -73.995668, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751807, 'Start_Lon': -73.985992, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-23 20:16:00', 'Trip_Pickup_DateTime': '2009-06-23 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730928, 'End_Lon': -73.953783, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716745, 'Start_Lon': -73.94478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-18 22:24:00', 'Trip_Pickup_DateTime': '2009-06-18 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765483, 'End_Lon': -73.962297, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783863, 'Start_Lon': -73.952448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-02 18:22:00', 'Trip_Pickup_DateTime': '2009-06-02 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73479, 'End_Lon': -73.98615, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762525, 'Start_Lon': -73.968133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-16 20:25:00', 'Trip_Pickup_DateTime': '2009-06-16 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7727, 'End_Lon': -73.982117, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761015, 'Start_Lon': -73.987173, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-16 20:21:00', 'Trip_Pickup_DateTime': '2009-06-16 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735317, 'End_Lon': -73.998048, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729977, 'Start_Lon': -73.980623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-16 19:19:00', 'Trip_Pickup_DateTime': '2009-06-16 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742643, 'End_Lon': -73.992915, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719862, 'Start_Lon': -73.987467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-16 19:09:00', 'Trip_Pickup_DateTime': '2009-06-16 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75548, 'End_Lon': -73.979502, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774635, 'Start_Lon': -73.980832, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-18 19:19:00', 'Trip_Pickup_DateTime': '2009-06-18 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784477, 'End_Lon': -73.953918, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759868, 'Start_Lon': -73.973658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-04 20:20:00', 'Trip_Pickup_DateTime': '2009-06-04 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.810685, 'End_Lon': -73.943253, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785123, 'Start_Lon': -73.973013, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-18 21:47:00', 'Trip_Pickup_DateTime': '2009-06-18 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727678, 'End_Lon': -73.999237, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73177, 'Start_Lon': -74.000963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-18 22:35:00', 'Trip_Pickup_DateTime': '2009-06-18 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760485, 'End_Lon': -73.958302, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737512, 'Start_Lon': -74.00565, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-18 21:01:00', 'Trip_Pickup_DateTime': '2009-06-18 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.693463, 'End_Lon': -73.988573, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747125, 'Start_Lon': -73.979137, 'Tip_Amt': 2.85, 'Tolls_Amt': 0.0, 'Total_Amt': 18.15, 'Trip_Distance': 5.99, 'Trip_Dropoff_DateTime': '2009-06-04 09:13:00', 'Trip_Pickup_DateTime': '2009-06-04 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709538, 'End_Lon': -74.014895, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749983, 'Start_Lon': -73.99351, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-16 19:15:00', 'Trip_Pickup_DateTime': '2009-06-16 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77215, 'End_Lon': -73.979507, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757927, 'Start_Lon': -74.000767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-16 15:39:00', 'Trip_Pickup_DateTime': '2009-06-16 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728538, 'End_Lon': -74.00536, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718538, 'Start_Lon': -73.999552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-16 16:37:00', 'Trip_Pickup_DateTime': '2009-06-16 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765937, 'End_Lon': -73.955045, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787137, 'Start_Lon': -73.956205, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-18 19:42:00', 'Trip_Pickup_DateTime': '2009-06-18 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78775, 'End_Lon': -73.971145, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771203, 'Start_Lon': -73.9871, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-16 10:49:00', 'Trip_Pickup_DateTime': '2009-06-16 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730863, 'End_Lon': -73.986162, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755592, 'Start_Lon': -73.985917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-16 18:44:00', 'Trip_Pickup_DateTime': '2009-06-16 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.818535, 'End_Lon': -73.959888, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.785212, 'Start_Lon': -73.98229, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-06 14:45:23', 'Trip_Pickup_DateTime': '2009-06-06 14:41:17', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.735963, 'End_Lon': -74.00062, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724852, 'Start_Lon': -73.987102, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-18 22:07:00', 'Trip_Pickup_DateTime': '2009-06-18 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799535, 'End_Lon': -73.953753, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771262, 'Start_Lon': -73.95977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-18 20:00:00', 'Trip_Pickup_DateTime': '2009-06-18 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77619, 'End_Lon': -73.981518, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771733, 'Start_Lon': -73.959323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-16 16:31:00', 'Trip_Pickup_DateTime': '2009-06-16 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736017, 'End_Lon': -73.97904, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739215, 'Start_Lon': -73.989633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-18 21:19:00', 'Trip_Pickup_DateTime': '2009-06-18 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733492, 'End_Lon': -73.997498, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736968, 'Start_Lon': -73.989993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-18 20:32:00', 'Trip_Pickup_DateTime': '2009-06-18 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778597, 'End_Lon': -73.953733, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768563, 'Start_Lon': -73.952518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-18 12:13:00', 'Trip_Pickup_DateTime': '2009-06-18 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773637, 'End_Lon': -73.966315, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782127, 'Start_Lon': -73.9719, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-16 17:30:00', 'Trip_Pickup_DateTime': '2009-06-16 17:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760452, 'End_Lon': -73.991075, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770917, 'Start_Lon': -73.983522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-18 20:07:00', 'Trip_Pickup_DateTime': '2009-06-18 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718682, 'End_Lon': -74.009833, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763508, 'Start_Lon': -73.975182, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 19.5, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-18 20:17:00', 'Trip_Pickup_DateTime': '2009-06-18 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805998, 'End_Lon': -73.965427, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.815738, 'Start_Lon': -73.958453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-18 21:07:00', 'Trip_Pickup_DateTime': '2009-06-18 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743868, 'End_Lon': -73.995238, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733775, 'Start_Lon': -73.980853, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-18 20:45:00', 'Trip_Pickup_DateTime': '2009-06-18 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739647, 'End_Lon': -73.986653, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772997, 'Start_Lon': -73.885255, 'Tip_Amt': 4.78, 'Tolls_Amt': 4.15, 'Total_Amt': 32.83, 'Trip_Distance': 8.42, 'Trip_Dropoff_DateTime': '2009-06-18 19:09:00', 'Trip_Pickup_DateTime': '2009-06-18 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755958, 'End_Lon': -73.990723, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720652, 'Start_Lon': -73.99774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-16 14:58:00', 'Trip_Pickup_DateTime': '2009-06-16 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752788, 'End_Lon': -73.986387, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758857, 'Start_Lon': -73.976718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 10:35:00', 'Trip_Pickup_DateTime': '2009-06-18 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7325, 'End_Lon': -73.999135, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7584, 'Start_Lon': -73.9773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-16 17:53:00', 'Trip_Pickup_DateTime': '2009-06-16 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710143, 'End_Lon': -73.996427, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.66089, 'Start_Lon': -73.791562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 14.42, 'Trip_Dropoff_DateTime': '2009-06-19 07:41:00', 'Trip_Pickup_DateTime': '2009-06-19 06:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.690358, 'End_Lon': -73.959698, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717833, 'Start_Lon': -74.000055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-18 19:54:00', 'Trip_Pickup_DateTime': '2009-06-18 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7271, 'End_Lon': -74.005285, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762162, 'Start_Lon': -73.979183, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-18 19:00:00', 'Trip_Pickup_DateTime': '2009-06-18 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749705, 'End_Lon': -73.972448, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746302, 'Start_Lon': -73.915713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-19 07:51:00', 'Trip_Pickup_DateTime': '2009-06-19 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777457, 'End_Lon': -73.97517, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7741, 'Start_Lon': -73.874595, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 32.95, 'Trip_Distance': 9.92, 'Trip_Dropoff_DateTime': '2009-06-18 21:12:00', 'Trip_Pickup_DateTime': '2009-06-18 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758627, 'End_Lon': -73.962627, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742337, 'Start_Lon': -73.991803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-18 19:49:00', 'Trip_Pickup_DateTime': '2009-06-18 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693965, 'End_Lon': -73.967015, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644823, 'Start_Lon': -73.781765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 12.61, 'Trip_Dropoff_DateTime': '2009-06-16 23:55:00', 'Trip_Pickup_DateTime': '2009-06-16 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751685, 'End_Lon': -73.99356, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76237, 'Start_Lon': -73.978968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 17:41:00', 'Trip_Pickup_DateTime': '2009-06-18 17:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730092, 'End_Lon': -74.003322, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739838, 'Start_Lon': -74.005562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-18 19:27:00', 'Trip_Pickup_DateTime': '2009-06-18 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783823, 'End_Lon': -73.950323, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776483, 'Start_Lon': -73.955617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-18 17:30:00', 'Trip_Pickup_DateTime': '2009-06-18 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748968, 'End_Lon': -74.006832, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760518, 'Start_Lon': -73.966072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-16 10:44:00', 'Trip_Pickup_DateTime': '2009-06-16 10:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771835, 'End_Lon': -73.99076, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742028, 'Start_Lon': -73.99715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-16 12:24:00', 'Trip_Pickup_DateTime': '2009-06-16 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740342, 'End_Lon': -73.983807, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755508, 'Start_Lon': -73.987358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-03 13:13:00', 'Trip_Pickup_DateTime': '2009-06-03 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718053, 'End_Lon': -74.014815, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771388, 'Start_Lon': -73.982228, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-23 22:24:00', 'Trip_Pickup_DateTime': '2009-06-23 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.830117, 'End_Lon': -73.947917, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735752, 'Start_Lon': -73.989442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 8.6, 'Trip_Dropoff_DateTime': '2009-06-16 23:31:00', 'Trip_Pickup_DateTime': '2009-06-16 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744362, 'End_Lon': -73.991482, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740028, 'Start_Lon': -73.995525, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-16 14:35:00', 'Trip_Pickup_DateTime': '2009-06-16 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710012, 'End_Lon': -74.004912, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756595, 'Start_Lon': -73.963952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 5.71, 'Trip_Dropoff_DateTime': '2009-06-18 16:46:00', 'Trip_Pickup_DateTime': '2009-06-18 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.826007, 'End_Lon': -73.912878, 'Fare_Amt': 17.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.82503, 'Start_Lon': -73.913375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-18 16:10:00', 'Trip_Pickup_DateTime': '2009-06-18 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739718, 'End_Lon': -73.995235, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71854, 'Start_Lon': -74.000512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-16 12:25:00', 'Trip_Pickup_DateTime': '2009-06-16 12:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740513, 'End_Lon': -73.975995, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740513, 'Start_Lon': -73.975995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-16 13:14:00', 'Trip_Pickup_DateTime': '2009-06-16 13:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73869, 'End_Lon': -73.985338, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765065, 'Start_Lon': -73.980632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-18 18:43:00', 'Trip_Pickup_DateTime': '2009-06-18 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726343, 'End_Lon': -74.002472, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743497, 'Start_Lon': -73.99606, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-16 13:13:00', 'Trip_Pickup_DateTime': '2009-06-16 13:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767387, 'End_Lon': -73.956188, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76878, 'Start_Lon': -73.96637, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-18 15:49:00', 'Trip_Pickup_DateTime': '2009-06-18 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759297, 'End_Lon': -73.96892, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769338, 'Start_Lon': -73.95201, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-16 11:43:00', 'Trip_Pickup_DateTime': '2009-06-16 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745128, 'End_Lon': -74.005562, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745825, 'Start_Lon': -73.980922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-16 13:39:00', 'Trip_Pickup_DateTime': '2009-06-16 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774295, 'End_Lon': -73.872485, 'Fare_Amt': 26.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754148, 'Start_Lon': -73.988485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.5, 'Trip_Distance': 11.45, 'Trip_Dropoff_DateTime': '2009-06-16 13:43:00', 'Trip_Pickup_DateTime': '2009-06-16 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760453, 'End_Lon': -73.91662, 'Fare_Amt': 27.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742863, 'Start_Lon': -73.902217, 'Tip_Amt': 6.92, 'Tolls_Amt': 5.0, 'Total_Amt': 39.62, 'Trip_Distance': 11.53, 'Trip_Dropoff_DateTime': '2009-06-16 14:20:00', 'Trip_Pickup_DateTime': '2009-06-16 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77669, 'End_Lon': -73.948762, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790742, 'Start_Lon': -73.953675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-18 15:49:00', 'Trip_Pickup_DateTime': '2009-06-18 15:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709827, 'End_Lon': -74.098978, 'Fare_Amt': 48.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.65903, 'Start_Lon': -73.794707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 48.1, 'Trip_Distance': 19.37, 'Trip_Dropoff_DateTime': '2009-06-18 12:11:00', 'Trip_Pickup_DateTime': '2009-06-18 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787665, 'End_Lon': -73.953822, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764577, 'Start_Lon': -73.964775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-03 08:23:00', 'Trip_Pickup_DateTime': '2009-06-03 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.52461, 'End_Lon': -73.867572, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.520097, 'Start_Lon': -73.885492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.9, 'Trip_Dropoff_DateTime': '2009-06-06 22:27:00', 'Trip_Pickup_DateTime': '2009-06-06 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771588, 'End_Lon': -73.984358, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776873, 'Start_Lon': -73.9793, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-18 10:28:00', 'Trip_Pickup_DateTime': '2009-06-18 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739497, 'End_Lon': -73.978845, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743848, 'Start_Lon': -73.975925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-18 09:01:00', 'Trip_Pickup_DateTime': '2009-06-18 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785383, 'End_Lon': -73.95559, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759505, 'Start_Lon': -73.97235, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-17 15:10:00', 'Trip_Pickup_DateTime': '2009-06-17 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773425, 'End_Lon': -73.98106, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743245, 'Start_Lon': -74.007377, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-05 22:44:00', 'Trip_Pickup_DateTime': '2009-06-05 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717862, 'End_Lon': -73.996727, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725165, 'Start_Lon': -73.99639, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-20 15:15:00', 'Trip_Pickup_DateTime': '2009-06-20 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728115, 'End_Lon': -73.991115, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735892, 'Start_Lon': -73.997843, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-16 20:21:00', 'Trip_Pickup_DateTime': '2009-06-16 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767945, 'End_Lon': -73.955858, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745878, 'Start_Lon': -73.981867, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-20 17:05:00', 'Trip_Pickup_DateTime': '2009-06-20 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722413, 'End_Lon': -73.997042, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736877, 'Start_Lon': -73.99036, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-19 23:24:00', 'Trip_Pickup_DateTime': '2009-06-19 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799702, 'End_Lon': -73.971875, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777372, 'Start_Lon': -73.98272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-04 18:46:00', 'Trip_Pickup_DateTime': '2009-06-04 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765688, 'End_Lon': -73.957547, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765302, 'Start_Lon': -73.967968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-08 00:11:00', 'Trip_Pickup_DateTime': '2009-06-08 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791623, 'End_Lon': -73.972508, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798075, 'Start_Lon': -73.969483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-07 20:12:00', 'Trip_Pickup_DateTime': '2009-06-07 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74608, 'End_Lon': -73.977202, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753028, 'Start_Lon': -73.970008, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-19 22:55:00', 'Trip_Pickup_DateTime': '2009-06-19 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.815643, 'End_Lon': -73.948795, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.815643, 'Start_Lon': -73.948795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-19 22:11:00', 'Trip_Pickup_DateTime': '2009-06-19 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757898, 'End_Lon': -73.97603, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726898, 'Start_Lon': -73.980083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-24 21:51:00', 'Trip_Pickup_DateTime': '2009-06-24 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728062, 'End_Lon': -73.983098, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760577, 'Start_Lon': -73.98007, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-19 22:12:00', 'Trip_Pickup_DateTime': '2009-06-19 21:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711325, 'End_Lon': -74.01506, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75468, 'Start_Lon': -73.984083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.65, 'Trip_Dropoff_DateTime': '2009-06-24 11:48:00', 'Trip_Pickup_DateTime': '2009-06-24 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765192, 'End_Lon': -73.982385, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755287, 'Start_Lon': -73.965033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-20 01:17:00', 'Trip_Pickup_DateTime': '2009-06-20 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.824255, 'End_Lon': -73.944523, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76103, 'Start_Lon': -73.994387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.31, 'Trip_Dropoff_DateTime': '2009-06-19 22:34:00', 'Trip_Pickup_DateTime': '2009-06-19 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776235, 'End_Lon': -73.907207, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748423, 'Start_Lon': -73.976778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.86, 'Trip_Dropoff_DateTime': '2009-06-19 21:26:00', 'Trip_Pickup_DateTime': '2009-06-19 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778873, 'End_Lon': -73.973938, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784458, 'Start_Lon': -73.987503, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-19 19:30:00', 'Trip_Pickup_DateTime': '2009-06-19 19:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714295, 'End_Lon': -74.015305, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725913, 'Start_Lon': -74.007817, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-19 08:01:00', 'Trip_Pickup_DateTime': '2009-06-19 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731338, 'End_Lon': -74.003055, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761762, 'Start_Lon': -73.982665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-19 20:18:00', 'Trip_Pickup_DateTime': '2009-06-19 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755458, 'End_Lon': -73.981647, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759982, 'Start_Lon': -73.978818, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-19 07:46:00', 'Trip_Pickup_DateTime': '2009-06-19 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751522, 'End_Lon': -73.976742, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707733, 'Start_Lon': -74.011815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 5.8, 'Trip_Dropoff_DateTime': '2009-06-19 19:09:00', 'Trip_Pickup_DateTime': '2009-06-19 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750373, 'End_Lon': -73.99126, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779115, 'Start_Lon': -73.962267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-19 20:16:00', 'Trip_Pickup_DateTime': '2009-06-19 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787505, 'End_Lon': -73.978235, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785603, 'Start_Lon': -73.969112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-19 21:58:00', 'Trip_Pickup_DateTime': '2009-06-19 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752738, 'End_Lon': -74.002553, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774045, 'Start_Lon': -73.988645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-24 08:27:00', 'Trip_Pickup_DateTime': '2009-06-24 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707878, 'End_Lon': -73.999169, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740707, 'Start_Lon': -74.002347, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 5.2, 'Trip_Dropoff_DateTime': '2009-06-30 09:43:06', 'Trip_Pickup_DateTime': '2009-06-30 09:20:49', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.775678, 'End_Lon': -73.907872, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739632, 'Start_Lon': -73.98951, 'Tip_Amt': 3.72, 'Tolls_Amt': 0.0, 'Total_Amt': 22.32, 'Trip_Distance': 6.53, 'Trip_Dropoff_DateTime': '2009-06-24 00:03:00', 'Trip_Pickup_DateTime': '2009-06-23 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763135, 'End_Lon': -73.974455, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740185, 'Start_Lon': -73.986247, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-18 10:35:00', 'Trip_Pickup_DateTime': '2009-06-18 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715942, 'End_Lon': -74.01074, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756348, 'Start_Lon': -73.968405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.9, 'Trip_Distance': 7.06, 'Trip_Dropoff_DateTime': '2009-06-19 16:34:00', 'Trip_Pickup_DateTime': '2009-06-19 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79932, 'End_Lon': -73.960905, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743282, 'Start_Lon': -73.973652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 5.04, 'Trip_Dropoff_DateTime': '2009-06-19 16:46:00', 'Trip_Pickup_DateTime': '2009-06-19 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783825, 'End_Lon': -73.977765, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764963, 'Start_Lon': -73.995252, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-19 19:07:00', 'Trip_Pickup_DateTime': '2009-06-19 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77413, 'End_Lon': -73.870948, 'Fare_Amt': 34.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761683, 'Start_Lon': -73.977768, 'Tip_Amt': 6.82, 'Tolls_Amt': 4.15, 'Total_Amt': 45.07, 'Trip_Distance': 10.21, 'Trip_Dropoff_DateTime': '2009-06-19 16:18:00', 'Trip_Pickup_DateTime': '2009-06-19 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768728, 'End_Lon': -73.98485, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77229, 'Start_Lon': -73.97892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-04 13:33:00', 'Trip_Pickup_DateTime': '2009-06-04 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741887, 'End_Lon': -73.974765, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761772, 'Start_Lon': -73.963615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-19 08:02:00', 'Trip_Pickup_DateTime': '2009-06-19 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791467, 'End_Lon': -73.967915, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755657, 'Start_Lon': -73.986245, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-19 21:20:00', 'Trip_Pickup_DateTime': '2009-06-19 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681405, 'End_Lon': -73.943577, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.717772, 'Start_Lon': -74.001205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.5, 'Trip_Dropoff_DateTime': '2009-06-13 04:35:00', 'Trip_Pickup_DateTime': '2009-06-13 04:12:07', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.742037, 'End_Lon': -73.974778, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74515, 'Start_Lon': -73.980597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-19 16:26:00', 'Trip_Pickup_DateTime': '2009-06-19 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.673656, 'End_Lon': -73.981432, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.740557, 'Start_Lon': -73.986584, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.4, 'Trip_Dropoff_DateTime': '2009-06-26 22:16:08', 'Trip_Pickup_DateTime': '2009-06-26 21:56:21', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.758595, 'End_Lon': -73.974227, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751982, 'Start_Lon': -73.99359, 'Tip_Amt': 0.0, 'Tolls_Amt': 2.0, 'Total_Amt': 19.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-19 16:17:00', 'Trip_Pickup_DateTime': '2009-06-19 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736113, 'End_Lon': -73.996148, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762128, 'Start_Lon': -73.960065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-19 18:42:00', 'Trip_Pickup_DateTime': '2009-06-19 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784598, 'End_Lon': -73.953867, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777205, 'Start_Lon': -73.978427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-03 21:46:00', 'Trip_Pickup_DateTime': '2009-06-03 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749587, 'End_Lon': -73.975885, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763578, 'Start_Lon': -73.963408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-18 10:54:00', 'Trip_Pickup_DateTime': '2009-06-18 10:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750473, 'End_Lon': -73.991397, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756695, 'Start_Lon': -73.986018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-19 20:28:00', 'Trip_Pickup_DateTime': '2009-06-19 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739453, 'End_Lon': -73.983215, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769942, 'Start_Lon': -73.992403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-19 20:24:00', 'Trip_Pickup_DateTime': '2009-06-19 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758275, 'End_Lon': -73.98658, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741883, 'Start_Lon': -73.993708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-19 17:06:00', 'Trip_Pickup_DateTime': '2009-06-19 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75508, 'End_Lon': -73.971985, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759088, 'Start_Lon': -73.96604, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-19 15:28:00', 'Trip_Pickup_DateTime': '2009-06-19 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678892, 'End_Lon': -73.97379, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740128, 'Start_Lon': -73.99026, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.3, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-17 12:58:00', 'Trip_Pickup_DateTime': '2009-06-17 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751553, 'End_Lon': -73.977907, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723283, 'Start_Lon': -74.006267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-19 19:23:00', 'Trip_Pickup_DateTime': '2009-06-19 19:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744597, 'End_Lon': -73.902348, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77362, 'Start_Lon': -73.87056, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-19 16:30:00', 'Trip_Pickup_DateTime': '2009-06-19 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755645, 'End_Lon': -73.981572, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741875, 'Start_Lon': -74.001038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-17 12:20:00', 'Trip_Pickup_DateTime': '2009-06-17 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77023, 'End_Lon': -73.864627, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760053, 'Start_Lon': -73.985378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.1, 'Trip_Distance': 9.26, 'Trip_Dropoff_DateTime': '2009-06-19 16:10:00', 'Trip_Pickup_DateTime': '2009-06-19 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74763, 'End_Lon': -73.992653, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77384, 'Start_Lon': -73.870963, 'Tip_Amt': 4.98, 'Tolls_Amt': 4.15, 'Total_Amt': 34.03, 'Trip_Distance': 8.64, 'Trip_Dropoff_DateTime': '2009-06-17 10:21:00', 'Trip_Pickup_DateTime': '2009-06-17 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750802, 'End_Lon': -73.990828, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788482, 'Start_Lon': -73.970842, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-19 16:28:00', 'Trip_Pickup_DateTime': '2009-06-19 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751237, 'End_Lon': -73.980487, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761388, 'Start_Lon': -73.964202, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-19 17:22:00', 'Trip_Pickup_DateTime': '2009-06-19 17:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743557, 'End_Lon': -73.990323, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750437, 'Start_Lon': -73.987283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-17 11:00:00', 'Trip_Pickup_DateTime': '2009-06-17 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737127, 'End_Lon': -74.005325, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720533, 'Start_Lon': -73.980445, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-17 11:16:00', 'Trip_Pickup_DateTime': '2009-06-17 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752157, 'End_Lon': -73.983717, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76438, 'Start_Lon': -73.971167, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-19 13:58:00', 'Trip_Pickup_DateTime': '2009-06-19 13:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773767, 'End_Lon': -73.981467, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78916, 'Start_Lon': -73.970138, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-19 13:49:00', 'Trip_Pickup_DateTime': '2009-06-19 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76086, 'End_Lon': -73.976838, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773127, 'Start_Lon': -73.885663, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 32.65, 'Trip_Distance': 10.1, 'Trip_Dropoff_DateTime': '2009-06-19 13:50:00', 'Trip_Pickup_DateTime': '2009-06-19 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715197, 'End_Lon': -74.016063, 'Fare_Amt': 34.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769452, 'Start_Lon': -73.866008, 'Tip_Amt': 10.23, 'Tolls_Amt': 4.15, 'Total_Amt': 48.48, 'Trip_Distance': 14.13, 'Trip_Dropoff_DateTime': '2009-06-17 10:07:00', 'Trip_Pickup_DateTime': '2009-06-17 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767943, 'End_Lon': -73.861235, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765735, 'Start_Lon': -73.95434, 'Tip_Amt': 4.15, 'Tolls_Amt': 4.15, 'Total_Amt': 30.0, 'Trip_Distance': 9.27, 'Trip_Dropoff_DateTime': '2009-06-17 09:21:00', 'Trip_Pickup_DateTime': '2009-06-17 09:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768793, 'End_Lon': -73.957155, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785888, 'Start_Lon': -73.9803, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-19 13:55:00', 'Trip_Pickup_DateTime': '2009-06-19 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77312, 'End_Lon': -73.982678, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753555, 'Start_Lon': -73.999897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-17 11:20:00', 'Trip_Pickup_DateTime': '2009-06-17 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711332, 'End_Lon': -73.996392, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755888, 'Start_Lon': -73.981837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-17 10:29:00', 'Trip_Pickup_DateTime': '2009-06-17 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779352, 'End_Lon': -73.957615, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791382, 'Start_Lon': -73.974633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-19 13:49:00', 'Trip_Pickup_DateTime': '2009-06-19 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71064, 'End_Lon': -74.00074, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775837, 'Start_Lon': -73.960542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-17 08:38:00', 'Trip_Pickup_DateTime': '2009-06-17 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753022, 'End_Lon': -73.997435, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752495, 'Start_Lon': -73.975667, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-17 09:38:00', 'Trip_Pickup_DateTime': '2009-06-17 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773578, 'End_Lon': -73.955363, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784212, 'Start_Lon': -73.977382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-02 15:56:00', 'Trip_Pickup_DateTime': '2009-06-02 15:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783272, 'End_Lon': -73.95286, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72436, 'Start_Lon': -74.00448, 'Tip_Amt': 6.51, 'Tolls_Amt': 0.0, 'Total_Amt': 28.21, 'Trip_Distance': 7.55, 'Trip_Dropoff_DateTime': '2009-06-19 14:19:00', 'Trip_Pickup_DateTime': '2009-06-19 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.003053, 'End_Lon': 0.00394, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0008, 'Start_Lon': 0.000248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-19 11:11:00', 'Trip_Pickup_DateTime': '2009-06-19 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769918, 'End_Lon': -73.987485, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80572, 'Start_Lon': -73.961942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-19 13:43:00', 'Trip_Pickup_DateTime': '2009-06-19 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702012, 'End_Lon': -74.012628, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757158, 'Start_Lon': -73.969728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 5.66, 'Trip_Dropoff_DateTime': '2009-06-17 08:09:00', 'Trip_Pickup_DateTime': '2009-06-17 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763333, 'End_Lon': -73.975225, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767852, 'Start_Lon': -73.985525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-19 13:33:00', 'Trip_Pickup_DateTime': '2009-06-19 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750205, 'End_Lon': -73.97994, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746033, 'Start_Lon': -73.994325, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-19 11:10:00', 'Trip_Pickup_DateTime': '2009-06-19 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755562, 'End_Lon': -73.971193, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746375, 'Start_Lon': -73.973832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-19 11:55:00', 'Trip_Pickup_DateTime': '2009-06-19 11:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705192, 'End_Lon': -74.012225, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749888, 'Start_Lon': -73.991447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.36, 'Trip_Dropoff_DateTime': '2009-06-17 10:19:00', 'Trip_Pickup_DateTime': '2009-06-17 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753147, 'End_Lon': -73.981805, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782235, 'Start_Lon': -73.980232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-19 11:56:00', 'Trip_Pickup_DateTime': '2009-06-19 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767733, 'End_Lon': -73.986885, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759943, 'Start_Lon': -73.973982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-19 13:28:00', 'Trip_Pickup_DateTime': '2009-06-19 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733467, 'End_Lon': -73.991755, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726658, 'Start_Lon': -74.000143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-19 12:48:00', 'Trip_Pickup_DateTime': '2009-06-19 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780283, 'End_Lon': -73.955007, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77246, 'Start_Lon': -73.98207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-02 11:49:00', 'Trip_Pickup_DateTime': '2009-06-02 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73674, 'End_Lon': -73.97714, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771865, 'Start_Lon': -73.956058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-17 08:10:00', 'Trip_Pickup_DateTime': '2009-06-17 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68733, 'End_Lon': -73.992015, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738613, 'Start_Lon': -73.991818, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-16 23:26:00', 'Trip_Pickup_DateTime': '2009-06-16 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716302, 'End_Lon': -74.035992, 'Fare_Amt': 88.4, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716303, 'Start_Lon': -74.035993, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 93.4, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-03 10:48:00', 'Trip_Pickup_DateTime': '2009-06-03 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779822, 'End_Lon': -73.961635, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79019, 'Start_Lon': -73.965818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-19 10:24:00', 'Trip_Pickup_DateTime': '2009-06-19 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752167, 'End_Lon': -73.975338, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762128, 'Start_Lon': -73.97806, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-02 09:52:00', 'Trip_Pickup_DateTime': '2009-06-02 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738138, 'End_Lon': -73.977508, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726345, 'Start_Lon': -73.995745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-02 00:14:00', 'Trip_Pickup_DateTime': '2009-06-02 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743367, 'End_Lon': -73.98618, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728552, 'Start_Lon': -73.984843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-17 08:53:00', 'Trip_Pickup_DateTime': '2009-06-17 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733242, 'End_Lon': -73.9775, 'Fare_Amt': 16.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794772, 'Start_Lon': -73.970007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.42, 'Trip_Dropoff_DateTime': '2009-06-02 23:49:00', 'Trip_Pickup_DateTime': '2009-06-02 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7564, 'End_Lon': -73.97396, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734117, 'Start_Lon': -73.980545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-19 08:14:00', 'Trip_Pickup_DateTime': '2009-06-19 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714052, 'End_Lon': -73.989983, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72035, 'Start_Lon': -73.987333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-17 03:13:00', 'Trip_Pickup_DateTime': '2009-06-17 03:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720628, 'End_Lon': -73.992563, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732175, 'Start_Lon': -74.000803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-16 22:52:00', 'Trip_Pickup_DateTime': '2009-06-16 22:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73309, 'End_Lon': -74.005922, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777853, 'Start_Lon': -73.956792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.58, 'Trip_Dropoff_DateTime': '2009-06-19 07:38:00', 'Trip_Pickup_DateTime': '2009-06-19 07:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791198, 'End_Lon': -73.969568, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763125, 'Start_Lon': -73.976965, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-16 23:06:00', 'Trip_Pickup_DateTime': '2009-06-16 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766922, 'End_Lon': -73.967102, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770702, 'Start_Lon': -73.9644, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-04 12:07:00', 'Trip_Pickup_DateTime': '2009-06-04 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774728, 'End_Lon': -73.948363, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778202, 'Start_Lon': -73.956462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-17 00:31:00', 'Trip_Pickup_DateTime': '2009-06-17 00:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748553, 'End_Lon': -74.002203, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770333, 'Start_Lon': -73.960183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-19 08:34:00', 'Trip_Pickup_DateTime': '2009-06-19 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809128, 'End_Lon': -73.957425, 'Fare_Amt': 3.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807942, 'Start_Lon': -73.963997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-17 00:06:00', 'Trip_Pickup_DateTime': '2009-06-17 00:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.679322, 'End_Lon': -73.968365, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.760499, 'Start_Lon': -73.983676, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 8.5, 'Trip_Dropoff_DateTime': '2009-06-30 01:59:00', 'Trip_Pickup_DateTime': '2009-06-30 01:31:22', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.736753, 'End_Lon': -73.988882, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76005, 'Start_Lon': -73.985182, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-02 20:38:00', 'Trip_Pickup_DateTime': '2009-06-02 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780092, 'End_Lon': -73.959315, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773002, 'Start_Lon': -73.958372, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-19 05:51:00', 'Trip_Pickup_DateTime': '2009-06-19 05:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744725, 'End_Lon': -73.984878, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71992, 'Start_Lon': -73.99851, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-19 00:20:00', 'Trip_Pickup_DateTime': '2009-06-19 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745092, 'End_Lon': -73.91841, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763292, 'Start_Lon': -73.979072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-21 05:03:00', 'Trip_Pickup_DateTime': '2009-06-21 04:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762622, 'End_Lon': -73.967823, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763983, 'Start_Lon': -73.954398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-21 20:43:00', 'Trip_Pickup_DateTime': '2009-06-21 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751453, 'End_Lon': -73.990305, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757113, 'Start_Lon': -73.985695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-21 16:43:00', 'Trip_Pickup_DateTime': '2009-06-21 16:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743663, 'End_Lon': -73.976662, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777965, 'Start_Lon': -73.974698, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-21 16:50:00', 'Trip_Pickup_DateTime': '2009-06-21 16:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765418, 'End_Lon': -73.982467, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7587, 'Start_Lon': -73.985952, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-21 22:45:00', 'Trip_Pickup_DateTime': '2009-06-21 22:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76676, 'End_Lon': -73.953638, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748397, 'Start_Lon': -73.984638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-21 20:40:00', 'Trip_Pickup_DateTime': '2009-06-21 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760282, 'End_Lon': -73.982682, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74329, 'Start_Lon': -73.983998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-19 08:27:00', 'Trip_Pickup_DateTime': '2009-06-19 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.670337, 'End_Lon': -73.97207, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725993, 'Start_Lon': -73.991813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.27, 'Trip_Dropoff_DateTime': '2009-06-17 02:45:00', 'Trip_Pickup_DateTime': '2009-06-17 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749428, 'End_Lon': -73.98683, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765808, 'Start_Lon': -73.96785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-21 16:24:00', 'Trip_Pickup_DateTime': '2009-06-21 16:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752732, 'End_Lon': -73.989333, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741343, 'Start_Lon': -73.987593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-04 13:53:00', 'Trip_Pickup_DateTime': '2009-06-04 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743248, 'End_Lon': -73.973155, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75428, 'Start_Lon': -73.968577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-21 23:36:00', 'Trip_Pickup_DateTime': '2009-06-21 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78072, 'End_Lon': -73.98367, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78244, 'Start_Lon': -73.948478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-21 15:08:00', 'Trip_Pickup_DateTime': '2009-06-21 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798337, 'End_Lon': -73.939678, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750388, 'Start_Lon': -73.994788, 'Tip_Amt': 3.85, 'Tolls_Amt': 0.0, 'Total_Amt': 19.25, 'Trip_Distance': 5.27, 'Trip_Dropoff_DateTime': '2009-06-21 20:54:00', 'Trip_Pickup_DateTime': '2009-06-21 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763372, 'End_Lon': -73.973463, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775335, 'Start_Lon': -73.976607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-04 13:55:00', 'Trip_Pickup_DateTime': '2009-06-04 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648768, 'End_Lon': -73.78255, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719375, 'Start_Lon': -73.990713, 'Tip_Amt': 5.55, 'Tolls_Amt': 4.15, 'Total_Amt': 54.7, 'Trip_Distance': 16.47, 'Trip_Dropoff_DateTime': '2009-06-21 16:17:00', 'Trip_Pickup_DateTime': '2009-06-21 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75677, 'End_Lon': -73.99236, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7183, 'Start_Lon': -74.007147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.14, 'Trip_Dropoff_DateTime': '2009-06-21 14:28:00', 'Trip_Pickup_DateTime': '2009-06-21 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728513, 'End_Lon': -74.004603, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716787, 'Start_Lon': -73.991522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-21 14:24:00', 'Trip_Pickup_DateTime': '2009-06-21 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736025, 'End_Lon': -73.982125, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780748, 'Start_Lon': -73.955933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-21 13:06:00', 'Trip_Pickup_DateTime': '2009-06-21 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794787, 'End_Lon': -73.975142, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791345, 'Start_Lon': -73.967635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-04 00:25:00', 'Trip_Pickup_DateTime': '2009-06-04 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741093, 'End_Lon': -74.004997, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752532, 'Start_Lon': -73.997023, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-21 14:33:00', 'Trip_Pickup_DateTime': '2009-06-21 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726152, 'End_Lon': -73.98355, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751548, 'Start_Lon': -74.003893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-21 04:15:00', 'Trip_Pickup_DateTime': '2009-06-21 04:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729418, 'End_Lon': -73.99987, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760228, 'Start_Lon': -73.96161, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.56, 'Trip_Dropoff_DateTime': '2009-06-21 14:48:00', 'Trip_Pickup_DateTime': '2009-06-21 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726873, 'End_Lon': -73.885297, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729425, 'Start_Lon': -73.886938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-21 12:40:00', 'Trip_Pickup_DateTime': '2009-06-21 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758678, 'End_Lon': -73.977017, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757535, 'Start_Lon': -73.989965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-21 11:30:00', 'Trip_Pickup_DateTime': '2009-06-21 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738257, 'End_Lon': -73.993778, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750102, 'Start_Lon': -74.002542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-21 02:06:00', 'Trip_Pickup_DateTime': '2009-06-21 01:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783762, 'End_Lon': -73.97198, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77056, 'Start_Lon': -73.982082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-21 13:40:00', 'Trip_Pickup_DateTime': '2009-06-21 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.663167, 'End_Lon': -73.835963, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.66324, 'Start_Lon': -73.885285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-21 01:37:00', 'Trip_Pickup_DateTime': '2009-06-21 01:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786495, 'End_Lon': -73.98045, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776027, 'Start_Lon': -73.98259, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-21 13:22:00', 'Trip_Pickup_DateTime': '2009-06-21 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764482, 'End_Lon': -73.959098, 'Fare_Amt': 8.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731503, 'Start_Lon': -73.982415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-03 10:32:00', 'Trip_Pickup_DateTime': '2009-06-03 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750183, 'End_Lon': -73.988612, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74486, 'Start_Lon': -73.98604, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-21 13:24:00', 'Trip_Pickup_DateTime': '2009-06-21 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744252, 'End_Lon': -73.995997, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757395, 'Start_Lon': -73.990025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-02 19:52:00', 'Trip_Pickup_DateTime': '2009-06-02 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729855, 'End_Lon': -74.008272, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724123, 'Start_Lon': -73.994498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-05 18:04:00', 'Trip_Pickup_DateTime': '2009-06-05 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768372, 'End_Lon': -73.957443, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735042, 'Start_Lon': -73.979813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-20 21:18:00', 'Trip_Pickup_DateTime': '2009-06-20 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.831182, 'End_Lon': -73.851222, 'Fare_Amt': 26.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769583, 'Start_Lon': -73.983635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.0, 'Trip_Distance': 11.6, 'Trip_Dropoff_DateTime': '2009-06-20 23:59:00', 'Trip_Pickup_DateTime': '2009-06-20 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765338, 'End_Lon': -73.957918, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724058, 'Start_Lon': -73.987945, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-21 01:17:00', 'Trip_Pickup_DateTime': '2009-06-21 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737755, 'End_Lon': -73.988332, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72467, 'Start_Lon': -73.999188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-05 14:12:00', 'Trip_Pickup_DateTime': '2009-06-05 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770853, 'End_Lon': -73.889255, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779242, 'Start_Lon': -73.916523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-07 04:40:00', 'Trip_Pickup_DateTime': '2009-06-07 04:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707278, 'End_Lon': -74.009155, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722923, 'Start_Lon': -73.988868, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-20 23:46:00', 'Trip_Pickup_DateTime': '2009-06-20 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770423, 'End_Lon': -73.985653, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737567, 'Start_Lon': -73.98812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-20 21:36:00', 'Trip_Pickup_DateTime': '2009-06-20 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777042, 'End_Lon': -73.955157, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721198, 'Start_Lon': -73.998907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.68, 'Trip_Dropoff_DateTime': '2009-06-21 02:50:00', 'Trip_Pickup_DateTime': '2009-06-21 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74999, 'End_Lon': -74.00267, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740107, 'Start_Lon': -74.007513, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-21 03:24:00', 'Trip_Pickup_DateTime': '2009-06-21 03:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780388, 'End_Lon': -73.957253, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796213, 'Start_Lon': -73.961355, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-21 07:43:00', 'Trip_Pickup_DateTime': '2009-06-21 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763132, 'End_Lon': -73.962978, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755827, 'Start_Lon': -73.967725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-21 03:03:00', 'Trip_Pickup_DateTime': '2009-06-21 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.690077, 'End_Lon': -73.992163, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709238, 'Start_Lon': -74.011613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-21 02:36:00', 'Trip_Pickup_DateTime': '2009-06-21 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749398, 'End_Lon': -73.995422, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744057, 'Start_Lon': -73.999323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-05 14:11:00', 'Trip_Pickup_DateTime': '2009-06-05 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761073, 'End_Lon': -73.997568, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728395, 'Start_Lon': -73.999572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-21 00:13:00', 'Trip_Pickup_DateTime': '2009-06-20 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75672, 'End_Lon': -73.985112, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756662, 'Start_Lon': -73.96654, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-21 11:36:00', 'Trip_Pickup_DateTime': '2009-06-21 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740737, 'End_Lon': -73.981697, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777577, 'Start_Lon': -73.948778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-20 22:49:00', 'Trip_Pickup_DateTime': '2009-06-20 22:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77431, 'End_Lon': -73.989163, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737792, 'Start_Lon': -73.988145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.41, 'Trip_Dropoff_DateTime': '2009-06-21 02:09:00', 'Trip_Pickup_DateTime': '2009-06-21 01:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757478, 'End_Lon': -73.978383, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763397, 'Start_Lon': -73.974328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-03 14:14:00', 'Trip_Pickup_DateTime': '2009-06-03 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.699457, 'End_Lon': -73.953548, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707742, 'Start_Lon': -73.932523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-21 01:00:00', 'Trip_Pickup_DateTime': '2009-06-21 00:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719325, 'End_Lon': -74.004213, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.780143, 'Start_Lon': -73.98768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.8, 'Trip_Dropoff_DateTime': '2009-06-23 22:49:55', 'Trip_Pickup_DateTime': '2009-06-23 22:31:51', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.754592, 'End_Lon': -73.975133, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768917, 'Start_Lon': -73.958825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-02 06:48:00', 'Trip_Pickup_DateTime': '2009-06-02 06:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735315, 'End_Lon': -73.991813, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763377, 'Start_Lon': -73.98505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-06 20:37:00', 'Trip_Pickup_DateTime': '2009-06-06 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756013, 'End_Lon': -73.990788, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786065, 'Start_Lon': -73.979777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-21 08:09:00', 'Trip_Pickup_DateTime': '2009-06-21 08:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781203, 'End_Lon': -73.985015, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76614, 'Start_Lon': -73.971733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-05 21:38:00', 'Trip_Pickup_DateTime': '2009-06-05 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776802, 'End_Lon': -73.979247, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77468, 'Start_Lon': -73.954218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-20 22:55:00', 'Trip_Pickup_DateTime': '2009-06-20 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77815, 'End_Lon': -73.944513, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771682, 'Start_Lon': -73.950195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-07 20:01:00', 'Trip_Pickup_DateTime': '2009-06-07 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73187, 'End_Lon': -73.985328, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759805, 'Start_Lon': -73.962032, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-21 02:02:00', 'Trip_Pickup_DateTime': '2009-06-21 01:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75642, 'End_Lon': -73.997012, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761187, 'Start_Lon': -73.991887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-20 20:09:00', 'Trip_Pickup_DateTime': '2009-06-20 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73875, 'End_Lon': -73.98869, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76337, 'Start_Lon': -73.971027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-21 02:12:00', 'Trip_Pickup_DateTime': '2009-06-21 01:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776015, 'End_Lon': -73.955912, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751202, 'Start_Lon': -73.994158, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-06 00:06:00', 'Trip_Pickup_DateTime': '2009-06-05 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744262, 'End_Lon': -74.003025, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75858, 'Start_Lon': -73.988827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-20 21:49:00', 'Trip_Pickup_DateTime': '2009-06-20 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772787, 'End_Lon': -73.955435, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77399, 'Start_Lon': -73.872228, 'Tip_Amt': 6.03, 'Tolls_Amt': 5.0, 'Total_Amt': 31.13, 'Trip_Distance': 8.49, 'Trip_Dropoff_DateTime': '2009-06-07 15:09:00', 'Trip_Pickup_DateTime': '2009-06-07 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76456, 'End_Lon': -73.97082, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757243, 'Start_Lon': -73.989392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-18 11:08:00', 'Trip_Pickup_DateTime': '2009-06-18 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.684083, 'End_Lon': -73.967067, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.695993, 'Start_Lon': -73.986852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-20 20:42:00', 'Trip_Pickup_DateTime': '2009-06-20 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775852, 'End_Lon': -73.953032, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774065, 'Start_Lon': -73.951343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-20 22:49:00', 'Trip_Pickup_DateTime': '2009-06-20 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76306, 'End_Lon': -74.022328, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75822, 'Start_Lon': -74.025168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-20 16:41:00', 'Trip_Pickup_DateTime': '2009-06-20 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755258, 'End_Lon': -73.97573, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7359, 'Start_Lon': -74.00052, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-20 23:08:00', 'Trip_Pickup_DateTime': '2009-06-20 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789747, 'End_Lon': -73.979625, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776132, 'Start_Lon': -73.976138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-20 19:00:00', 'Trip_Pickup_DateTime': '2009-06-20 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759178, 'End_Lon': -73.978478, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760403, 'Start_Lon': -73.976842, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-04 16:56:00', 'Trip_Pickup_DateTime': '2009-06-04 16:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757003, 'End_Lon': -74.005065, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757003, 'Start_Lon': -74.005065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-20 18:01:00', 'Trip_Pickup_DateTime': '2009-06-20 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752592, 'End_Lon': -73.97584, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762675, 'Start_Lon': -73.959693, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-20 16:16:00', 'Trip_Pickup_DateTime': '2009-06-20 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766008, 'End_Lon': -73.958547, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762203, 'Start_Lon': -73.969437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-20 16:09:00', 'Trip_Pickup_DateTime': '2009-06-20 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770353, 'End_Lon': -73.960073, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755472, 'Start_Lon': -73.975418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-20 16:03:00', 'Trip_Pickup_DateTime': '2009-06-20 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732112, 'End_Lon': -74.003447, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74134, 'Start_Lon': -73.981455, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-20 19:45:00', 'Trip_Pickup_DateTime': '2009-06-20 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725057, 'End_Lon': -73.990997, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736297, 'Start_Lon': -73.993658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-20 20:33:00', 'Trip_Pickup_DateTime': '2009-06-20 20:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.606772, 'End_Lon': -73.988925, 'Fare_Amt': 40.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.640068, 'Start_Lon': -73.78578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 40.9, 'Trip_Distance': 18.35, 'Trip_Dropoff_DateTime': '2009-06-07 16:17:00', 'Trip_Pickup_DateTime': '2009-06-07 15:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71159, 'End_Lon': -74.015528, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755593, 'Start_Lon': -73.9746, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 6.51, 'Trip_Dropoff_DateTime': '2009-06-04 14:19:00', 'Trip_Pickup_DateTime': '2009-06-04 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73072, 'End_Lon': -74.002822, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74417, 'Start_Lon': -73.991557, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-20 20:43:00', 'Trip_Pickup_DateTime': '2009-06-20 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724298, 'End_Lon': -73.990862, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740023, 'Start_Lon': -73.985863, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-20 14:53:00', 'Trip_Pickup_DateTime': '2009-06-20 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730542, 'End_Lon': -74.000223, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73522, 'Start_Lon': -73.990132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-06 21:17:00', 'Trip_Pickup_DateTime': '2009-06-06 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725937, 'End_Lon': -74.008362, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714773, 'Start_Lon': -74.01142, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-03 08:35:00', 'Trip_Pickup_DateTime': '2009-06-03 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719628, 'End_Lon': -73.993195, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753897, 'Start_Lon': -73.969825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-20 18:08:00', 'Trip_Pickup_DateTime': '2009-06-20 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72908, 'End_Lon': -73.981203, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715042, 'Start_Lon': -73.996685, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-20 02:00:00', 'Trip_Pickup_DateTime': '2009-06-20 01:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.717973, 'End_Lon': -74.007213, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74044, 'Start_Lon': -74.001988, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-16 19:08:00', 'Trip_Pickup_DateTime': '2009-06-16 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755133, 'End_Lon': -73.979782, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772358, 'Start_Lon': -73.956763, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-19 08:07:00', 'Trip_Pickup_DateTime': '2009-06-19 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765, 'End_Lon': -73.96486, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.77467, 'Start_Lon': -73.964623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-17 14:11:52', 'Trip_Pickup_DateTime': '2009-06-17 14:01:50', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.759677, 'End_Lon': -73.984143, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721513, 'Start_Lon': -73.98766, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-20 01:32:00', 'Trip_Pickup_DateTime': '2009-06-20 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760077, 'End_Lon': -73.991386, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.778059, 'Start_Lon': -73.945764, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 3.8, 'Trip_Dropoff_DateTime': '2009-06-19 18:17:31', 'Trip_Pickup_DateTime': '2009-06-19 17:48:26', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.755447, 'End_Lon': -73.96514, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749665, 'Start_Lon': -73.993243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-05 01:42:00', 'Trip_Pickup_DateTime': '2009-06-05 01:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724865, 'End_Lon': -73.99459, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7439, 'Start_Lon': -74.003228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-20 01:16:00', 'Trip_Pickup_DateTime': '2009-06-20 01:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.797845, 'End_Lon': -73.973077, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.67921, 'Start_Lon': -73.98174, 'Tip_Amt': 5.72, 'Tolls_Amt': 0.0, 'Total_Amt': 34.32, 'Trip_Distance': 10.25, 'Trip_Dropoff_DateTime': '2009-06-03 01:13:00', 'Trip_Pickup_DateTime': '2009-06-03 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725987, 'End_Lon': -73.977823, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742178, 'Start_Lon': -73.977663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-19 19:59:00', 'Trip_Pickup_DateTime': '2009-06-19 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74951, 'End_Lon': -73.979207, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727023, 'Start_Lon': -73.988542, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-20 14:58:00', 'Trip_Pickup_DateTime': '2009-06-20 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742302, 'End_Lon': -73.999512, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762742, 'Start_Lon': -73.97874, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-19 21:32:00', 'Trip_Pickup_DateTime': '2009-06-19 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780315, 'End_Lon': -73.957183, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785225, 'Start_Lon': -73.953663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-05 10:20:00', 'Trip_Pickup_DateTime': '2009-06-05 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710233, 'End_Lon': -74.0088, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734372, 'Start_Lon': -73.999738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-16 22:59:00', 'Trip_Pickup_DateTime': '2009-06-16 22:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764223, 'End_Lon': -73.97303, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780797, 'Start_Lon': -73.976197, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-20 14:28:00', 'Trip_Pickup_DateTime': '2009-06-20 14:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75318, 'End_Lon': -73.989968, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750912, 'Start_Lon': -73.976418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-20 01:06:00', 'Trip_Pickup_DateTime': '2009-06-20 01:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759155, 'End_Lon': -73.987953, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710972, 'Start_Lon': -74.016168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.55, 'Trip_Dropoff_DateTime': '2009-06-20 00:09:00', 'Trip_Pickup_DateTime': '2009-06-19 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735645, 'End_Lon': -73.992713, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707955, 'Start_Lon': -74.00158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-10 23:58:00', 'Trip_Pickup_DateTime': '2009-06-10 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793308, 'End_Lon': -73.96642, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779603, 'Start_Lon': -73.955782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-15 06:38:00', 'Trip_Pickup_DateTime': '2009-06-15 06:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.59842, 'End_Lon': -73.965542, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.598207, 'Start_Lon': -73.965502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.05, 'Trip_Dropoff_DateTime': '2009-06-08 15:29:00', 'Trip_Pickup_DateTime': '2009-06-08 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723648, 'End_Lon': -73.996417, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74533, 'Start_Lon': -73.975523, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-13 22:50:00', 'Trip_Pickup_DateTime': '2009-06-13 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769622, 'End_Lon': -73.988293, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778302, 'Start_Lon': -73.956073, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-06 19:16:00', 'Trip_Pickup_DateTime': '2009-06-06 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715523, 'End_Lon': -74.00942, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73008, 'Start_Lon': -74.006843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-14 12:11:00', 'Trip_Pickup_DateTime': '2009-06-14 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78292, 'End_Lon': -73.981915, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719783, 'Start_Lon': -73.98724, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.68, 'Trip_Dropoff_DateTime': '2009-06-14 04:32:00', 'Trip_Pickup_DateTime': '2009-06-14 04:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78474, 'End_Lon': -73.973568, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792703, 'Start_Lon': -73.973325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-15 08:21:00', 'Trip_Pickup_DateTime': '2009-06-15 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750117, 'End_Lon': -73.990992, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728522, 'Start_Lon': -73.994345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-13 20:04:00', 'Trip_Pickup_DateTime': '2009-06-13 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758432, 'End_Lon': -73.988465, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785725, 'Start_Lon': -73.955172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-14 14:42:00', 'Trip_Pickup_DateTime': '2009-06-14 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761708, 'End_Lon': -73.966323, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720193, 'Start_Lon': -73.993213, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-06 01:43:00', 'Trip_Pickup_DateTime': '2009-06-06 01:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73501, 'End_Lon': -73.979772, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751672, 'Start_Lon': -73.974428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-04 21:02:00', 'Trip_Pickup_DateTime': '2009-06-04 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748175, 'End_Lon': -73.988005, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75234, 'Start_Lon': -73.977467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-15 06:45:00', 'Trip_Pickup_DateTime': '2009-06-15 06:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77773, 'End_Lon': -73.98169, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643873, 'Start_Lon': -73.790008, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.6, 'Trip_Dropoff_DateTime': '2009-06-14 19:58:00', 'Trip_Pickup_DateTime': '2009-06-14 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726867, 'End_Lon': -73.996333, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768067, 'Start_Lon': -73.98191, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-21 17:38:00', 'Trip_Pickup_DateTime': '2009-06-21 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.639078, 'End_Lon': -73.786497, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755652, 'Start_Lon': -73.977182, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.82, 'Trip_Dropoff_DateTime': '2009-06-04 14:56:00', 'Trip_Pickup_DateTime': '2009-06-04 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784515, 'End_Lon': -73.973435, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750372, 'Start_Lon': -73.978837, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-02 20:22:00', 'Trip_Pickup_DateTime': '2009-06-02 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783062, 'End_Lon': -73.98198, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735382, 'Start_Lon': -73.982505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.91, 'Trip_Dropoff_DateTime': '2009-06-11 00:07:00', 'Trip_Pickup_DateTime': '2009-06-10 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756697, 'End_Lon': -73.96412, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766147, 'Start_Lon': -73.982375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-10 22:11:00', 'Trip_Pickup_DateTime': '2009-06-10 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746107, 'End_Lon': -73.986615, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746107, 'Start_Lon': -73.986615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-14 05:54:00', 'Trip_Pickup_DateTime': '2009-06-14 05:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74251, 'End_Lon': -73.954005, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750863, 'Start_Lon': -73.968777, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 18.65, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-22 08:29:00', 'Trip_Pickup_DateTime': '2009-06-22 08:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.684085, 'End_Lon': -73.999103, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.695037, 'Start_Lon': -73.992072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-21 17:12:00', 'Trip_Pickup_DateTime': '2009-06-21 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.866378, 'End_Lon': -73.921577, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782695, 'Start_Lon': -73.980828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 7.31, 'Trip_Dropoff_DateTime': '2009-06-21 05:36:00', 'Trip_Pickup_DateTime': '2009-06-21 05:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76211, 'End_Lon': -73.978683, 'Fare_Amt': 23.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773695, 'Start_Lon': -73.870793, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 9.45, 'Trip_Dropoff_DateTime': '2009-06-14 17:44:00', 'Trip_Pickup_DateTime': '2009-06-14 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749532, 'End_Lon': -73.981112, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739968, 'Start_Lon': -73.986595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-22 08:37:00', 'Trip_Pickup_DateTime': '2009-06-22 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757065, 'End_Lon': -73.97186, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74454, 'Start_Lon': -73.972885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-14 13:27:00', 'Trip_Pickup_DateTime': '2009-06-14 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738952, 'End_Lon': -73.976822, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762553, 'Start_Lon': -73.96299, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-11 10:57:00', 'Trip_Pickup_DateTime': '2009-06-11 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778463, 'End_Lon': -73.954112, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75147, 'Start_Lon': -73.975157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-14 16:09:00', 'Trip_Pickup_DateTime': '2009-06-14 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760448, 'End_Lon': -73.98483, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781607, 'Start_Lon': -73.975753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-14 09:55:00', 'Trip_Pickup_DateTime': '2009-06-14 09:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688527, 'End_Lon': -73.986503, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.67576, 'Start_Lon': -73.971338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-21 00:21:00', 'Trip_Pickup_DateTime': '2009-06-21 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74009, 'End_Lon': -73.982895, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793592, 'Start_Lon': -74.01172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 9.73, 'Trip_Dropoff_DateTime': '2009-06-14 00:32:00', 'Trip_Pickup_DateTime': '2009-06-14 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742097, 'End_Lon': -74.000882, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737345, 'Start_Lon': -73.991158, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-13 19:48:00', 'Trip_Pickup_DateTime': '2009-06-13 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72197, 'End_Lon': -73.996372, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756727, 'Start_Lon': -73.974483, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-15 03:04:00', 'Trip_Pickup_DateTime': '2009-06-15 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754725, 'End_Lon': -73.978073, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722327, 'Start_Lon': -73.99318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-14 14:58:00', 'Trip_Pickup_DateTime': '2009-06-14 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763447, 'End_Lon': -73.978567, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72524, 'Start_Lon': -73.999595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-14 16:15:00', 'Trip_Pickup_DateTime': '2009-06-14 15:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756388, 'End_Lon': -74.0014, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751157, 'Start_Lon': -73.994152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-11 09:48:00', 'Trip_Pickup_DateTime': '2009-06-11 09:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761249, 'End_Lon': -73.995665, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.754193, 'Start_Lon': -73.973916, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 12.8, 'Trip_Dropoff_DateTime': '2009-06-16 20:24:13', 'Trip_Pickup_DateTime': '2009-06-16 20:09:18', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.861465, 'End_Lon': -73.87549, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.877375, 'Start_Lon': -73.911163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-07 00:09:00', 'Trip_Pickup_DateTime': '2009-06-06 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769638, 'End_Lon': -73.951822, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777278, 'Start_Lon': -73.959518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-11 08:23:00', 'Trip_Pickup_DateTime': '2009-06-11 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76873, 'End_Lon': -73.985153, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768107, 'Start_Lon': -73.98225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-11 00:50:00', 'Trip_Pickup_DateTime': '2009-06-11 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742723, 'End_Lon': -73.990263, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734005, 'Start_Lon': -74.004708, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-14 07:08:00', 'Trip_Pickup_DateTime': '2009-06-14 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667215, 'End_Lon': -73.961743, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774077, 'Start_Lon': -73.874707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 12.17, 'Trip_Dropoff_DateTime': '2009-06-21 21:07:00', 'Trip_Pickup_DateTime': '2009-06-21 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759455, 'End_Lon': -73.980667, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746147, 'Start_Lon': -74.000953, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-10 22:49:00', 'Trip_Pickup_DateTime': '2009-06-10 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763135, 'End_Lon': -73.978332, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737705, 'Start_Lon': -73.99644, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-22 07:56:00', 'Trip_Pickup_DateTime': '2009-06-22 07:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708468, 'End_Lon': -74.011093, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788395, 'Start_Lon': -73.978168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.71, 'Trip_Dropoff_DateTime': '2009-06-15 05:41:00', 'Trip_Pickup_DateTime': '2009-06-15 05:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74304, 'End_Lon': -73.974262, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734415, 'Start_Lon': -74.002012, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-14 02:38:00', 'Trip_Pickup_DateTime': '2009-06-14 02:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754902, 'End_Lon': -73.991478, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736777, 'Start_Lon': -73.988703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-20 13:48:00', 'Trip_Pickup_DateTime': '2009-06-20 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778415, 'End_Lon': -73.957193, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769593, 'Start_Lon': -73.951945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-02 08:39:00', 'Trip_Pickup_DateTime': '2009-06-02 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776935, 'End_Lon': -73.9516, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773182, 'Start_Lon': -73.946083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-21 18:00:00', 'Trip_Pickup_DateTime': '2009-06-21 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.817633, 'End_Lon': -73.945322, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7993, 'Start_Lon': -73.962635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-20 13:49:00', 'Trip_Pickup_DateTime': '2009-06-20 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714187, 'End_Lon': -73.989833, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704317, 'Start_Lon': -74.009178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-17 05:10:00', 'Trip_Pickup_DateTime': '2009-06-17 04:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726092, 'End_Lon': -73.986545, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723882, 'Start_Lon': -73.988113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-20 13:27:00', 'Trip_Pickup_DateTime': '2009-06-20 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745147, 'End_Lon': -73.983643, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764082, 'Start_Lon': -73.99852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-07 01:52:00', 'Trip_Pickup_DateTime': '2009-06-07 01:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746072, 'End_Lon': -74.000187, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734693, 'Start_Lon': -73.98642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-03 18:06:00', 'Trip_Pickup_DateTime': '2009-06-03 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720483, 'End_Lon': -73.989118, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768433, 'Start_Lon': -73.958447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.86, 'Trip_Dropoff_DateTime': '2009-06-20 13:03:00', 'Trip_Pickup_DateTime': '2009-06-20 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766488, 'End_Lon': -73.983086, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.766488, 'Start_Lon': -73.983086, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-22 19:16:16', 'Trip_Pickup_DateTime': '2009-06-22 19:16:16', 'mta_tax': None, 'store_and_forward': 1.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.736363, 'End_Lon': -73.9859, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726892, 'Start_Lon': -74.002792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-19 15:08:00', 'Trip_Pickup_DateTime': '2009-06-19 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790058, 'End_Lon': -73.95404, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786748, 'Start_Lon': -73.952742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-19 08:56:00', 'Trip_Pickup_DateTime': '2009-06-19 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728987, 'End_Lon': -73.999208, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739943, 'Start_Lon': -73.982425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-20 03:23:00', 'Trip_Pickup_DateTime': '2009-06-20 03:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76525, 'End_Lon': -73.970567, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770428, 'Start_Lon': -73.985578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-20 12:51:00', 'Trip_Pickup_DateTime': '2009-06-20 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742855, 'End_Lon': -73.99647, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731792, 'Start_Lon': -74.00658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-20 10:47:00', 'Trip_Pickup_DateTime': '2009-06-20 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754372, 'End_Lon': -73.971935, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788988, 'Start_Lon': -73.966777, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-05 09:34:00', 'Trip_Pickup_DateTime': '2009-06-05 09:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71532, 'End_Lon': -74.015833, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644805, 'Start_Lon': -73.782067, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 22.88, 'Trip_Dropoff_DateTime': '2009-06-06 23:08:00', 'Trip_Pickup_DateTime': '2009-06-06 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792133, 'End_Lon': -73.945122, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788647, 'Start_Lon': -73.96112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-20 12:10:00', 'Trip_Pickup_DateTime': '2009-06-20 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780125, 'End_Lon': -73.976922, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750988, 'Start_Lon': -73.97186, 'Tip_Amt': 2.1, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-20 10:20:00', 'Trip_Pickup_DateTime': '2009-06-20 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73193, 'End_Lon': -73.99049, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71986, 'Start_Lon': -73.998765, 'Tip_Amt': 2.1, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-04 08:15:00', 'Trip_Pickup_DateTime': '2009-06-04 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732143, 'End_Lon': -73.854965, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722652, 'Start_Lon': -73.987923, 'Tip_Amt': 4.12, 'Tolls_Amt': 0.0, 'Total_Amt': 24.72, 'Trip_Distance': 8.92, 'Trip_Dropoff_DateTime': '2009-06-20 05:29:00', 'Trip_Pickup_DateTime': '2009-06-20 05:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725143, 'End_Lon': -73.9514, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719197, 'Start_Lon': -74.003702, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.45, 'Trip_Dropoff_DateTime': '2009-06-02 00:56:00', 'Trip_Pickup_DateTime': '2009-06-02 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75059, 'End_Lon': -73.991207, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756178, 'Start_Lon': -73.970563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-20 06:12:00', 'Trip_Pickup_DateTime': '2009-06-20 06:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.85129, 'End_Lon': -73.93911, 'Fare_Amt': 35.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.682225, 'Start_Lon': -73.996077, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 40.2, 'Trip_Distance': 16.57, 'Trip_Dropoff_DateTime': '2009-06-20 02:45:00', 'Trip_Pickup_DateTime': '2009-06-20 02:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738057, 'End_Lon': -73.988272, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744077, 'Start_Lon': -73.9829, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-21 19:42:00', 'Trip_Pickup_DateTime': '2009-06-21 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707507, 'End_Lon': -74.015843, 'Fare_Amt': 2.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709202, 'Start_Lon': -74.01627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-08 00:43:00', 'Trip_Pickup_DateTime': '2009-06-08 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738075, 'End_Lon': -74.007272, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71913, 'Start_Lon': -73.987995, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-08 14:01:00', 'Trip_Pickup_DateTime': '2009-06-08 13:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75148, 'End_Lon': -73.991697, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7805, 'Start_Lon': -73.975823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-20 09:34:00', 'Trip_Pickup_DateTime': '2009-06-20 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 41.08798, 'End_Lon': -74.259718, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78844, 'Start_Lon': -73.971828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-20 10:24:00', 'Trip_Pickup_DateTime': '2009-06-20 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.828773, 'End_Lon': -73.923248, 'Fare_Amt': 41.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749823, 'Start_Lon': -73.992025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 41.7, 'Trip_Distance': 18.74, 'Trip_Dropoff_DateTime': '2009-06-20 07:34:00', 'Trip_Pickup_DateTime': '2009-06-20 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75009, 'End_Lon': -73.991668, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.701432, 'Start_Lon': -74.012265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 5.63, 'Trip_Dropoff_DateTime': '2009-06-21 19:22:00', 'Trip_Pickup_DateTime': '2009-06-21 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77938, 'End_Lon': -73.981115, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752743, 'Start_Lon': -73.994365, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-20 21:54:00', 'Trip_Pickup_DateTime': '2009-06-20 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704158, 'End_Lon': -74.008787, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751785, 'Start_Lon': -73.970762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 5.32, 'Trip_Dropoff_DateTime': '2009-06-21 19:37:00', 'Trip_Pickup_DateTime': '2009-06-21 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775553, 'End_Lon': -73.958063, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73259, 'Start_Lon': -73.99003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-06 17:47:00', 'Trip_Pickup_DateTime': '2009-06-06 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7094, 'End_Lon': -74.013165, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722817, 'Start_Lon': -74.00448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-20 21:45:00', 'Trip_Pickup_DateTime': '2009-06-20 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73392, 'End_Lon': -74.005173, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726672, 'Start_Lon': -74.00743, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-22 09:16:00', 'Trip_Pickup_DateTime': '2009-06-22 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737973, 'End_Lon': -73.973788, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748443, 'Start_Lon': -73.988603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-21 18:46:00', 'Trip_Pickup_DateTime': '2009-06-21 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71826, 'End_Lon': -73.999752, 'Fare_Amt': 18.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803322, 'Start_Lon': -73.956297, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 7.04, 'Trip_Dropoff_DateTime': '2009-06-20 07:30:00', 'Trip_Pickup_DateTime': '2009-06-20 07:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776995, 'End_Lon': -73.98488, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754282, 'Start_Lon': -73.98288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-21 23:21:00', 'Trip_Pickup_DateTime': '2009-06-21 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739835, 'End_Lon': -74.006295, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744037, 'Start_Lon': -73.976172, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-21 22:55:00', 'Trip_Pickup_DateTime': '2009-06-21 22:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785673, 'End_Lon': -73.969817, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771698, 'Start_Lon': -73.981892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-21 22:19:00', 'Trip_Pickup_DateTime': '2009-06-21 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752548, 'End_Lon': -73.990772, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744545, 'Start_Lon': -73.989462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-21 21:25:00', 'Trip_Pickup_DateTime': '2009-06-21 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791875, 'End_Lon': -73.973652, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74221, 'Start_Lon': -73.993337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-21 22:22:00', 'Trip_Pickup_DateTime': '2009-06-21 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702675, 'End_Lon': -74.012602, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77576, 'Start_Lon': -73.982277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.8, 'Trip_Dropoff_DateTime': '2009-06-22 07:29:00', 'Trip_Pickup_DateTime': '2009-06-22 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76335, 'End_Lon': -73.982, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755905, 'Start_Lon': -73.9908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-22 06:46:00', 'Trip_Pickup_DateTime': '2009-06-22 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739188, 'End_Lon': -74.033022, 'Fare_Amt': 53.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739197, 'Start_Lon': -74.033033, 'Tip_Amt': 10.6, 'Tolls_Amt': 0.0, 'Total_Amt': 63.6, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-21 22:19:00', 'Trip_Pickup_DateTime': '2009-06-21 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771943, 'End_Lon': -73.978542, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775415, 'Start_Lon': -73.987683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-22 00:29:00', 'Trip_Pickup_DateTime': '2009-06-22 00:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764053, 'End_Lon': -73.980827, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763602, 'Start_Lon': -73.988688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-21 22:24:00', 'Trip_Pickup_DateTime': '2009-06-21 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770232, 'End_Lon': -73.951588, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770625, 'Start_Lon': -73.865798, 'Tip_Amt': 4.66, 'Tolls_Amt': 4.15, 'Total_Amt': 32.11, 'Trip_Distance': 9.08, 'Trip_Dropoff_DateTime': '2009-06-21 17:18:00', 'Trip_Pickup_DateTime': '2009-06-21 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755525, 'End_Lon': -73.986075, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767692, 'Start_Lon': -73.97233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-21 19:00:00', 'Trip_Pickup_DateTime': '2009-06-21 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742115, 'End_Lon': -74.000443, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70654, 'Start_Lon': -74.016083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-19 09:03:00', 'Trip_Pickup_DateTime': '2009-06-19 08:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774677, 'End_Lon': -73.950775, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72965, 'Start_Lon': -73.983643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-17 03:33:00', 'Trip_Pickup_DateTime': '2009-06-17 03:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730063, 'End_Lon': -73.989527, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75258, 'Start_Lon': -73.974715, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-21 23:26:00', 'Trip_Pickup_DateTime': '2009-06-21 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74422, 'End_Lon': -73.97239, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758808, 'Start_Lon': -73.993833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-21 15:45:00', 'Trip_Pickup_DateTime': '2009-06-21 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735743, 'End_Lon': -74.006712, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763582, 'Start_Lon': -73.981845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-11 23:04:00', 'Trip_Pickup_DateTime': '2009-06-11 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72783, 'End_Lon': -73.97606, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72882, 'Start_Lon': -73.987517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-15 17:23:00', 'Trip_Pickup_DateTime': '2009-06-15 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766028, 'End_Lon': -73.980698, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753482, 'Start_Lon': -73.966532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-08 08:59:00', 'Trip_Pickup_DateTime': '2009-06-08 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750323, 'End_Lon': -73.991573, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76071, 'Start_Lon': -73.991017, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 9.25, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-11 19:37:00', 'Trip_Pickup_DateTime': '2009-06-11 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727458, 'End_Lon': -74.00719, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723398, 'Start_Lon': -74.002882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-11 17:45:00', 'Trip_Pickup_DateTime': '2009-06-11 17:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.681553, 'End_Lon': -73.953177, 'Fare_Amt': 35.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64501, 'Start_Lon': -73.781248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 36.7, 'Trip_Distance': 12.76, 'Trip_Dropoff_DateTime': '2009-06-15 18:36:00', 'Trip_Pickup_DateTime': '2009-06-15 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762335, 'End_Lon': -73.960755, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732157, 'Start_Lon': -73.993722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-15 11:05:00', 'Trip_Pickup_DateTime': '2009-06-15 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74362, 'End_Lon': -73.973428, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76393, 'Start_Lon': -73.976467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-15 16:26:00', 'Trip_Pickup_DateTime': '2009-06-15 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764458, 'End_Lon': -73.966623, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790918, 'Start_Lon': -73.95115, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-15 17:08:00', 'Trip_Pickup_DateTime': '2009-06-15 16:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76052, 'End_Lon': -73.983347, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7308, 'Start_Lon': -73.982882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-11 19:58:00', 'Trip_Pickup_DateTime': '2009-06-11 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764208, 'End_Lon': -73.977592, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768867, 'Start_Lon': -73.981973, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-07 15:08:00', 'Trip_Pickup_DateTime': '2009-06-07 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765472, 'End_Lon': -73.928398, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765478, 'Start_Lon': -73.928402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-15 17:10:00', 'Trip_Pickup_DateTime': '2009-06-15 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750117, 'End_Lon': -73.988408, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744927, 'Start_Lon': -73.978592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-11 19:07:00', 'Trip_Pickup_DateTime': '2009-06-11 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732822, 'End_Lon': -74.003268, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765135, 'Start_Lon': -73.98265, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-04 18:45:00', 'Trip_Pickup_DateTime': '2009-06-04 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772105, 'End_Lon': -73.96414, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772333, 'Start_Lon': -73.960763, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-11 15:44:00', 'Trip_Pickup_DateTime': '2009-06-11 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779935, 'End_Lon': -73.961673, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797202, 'Start_Lon': -73.971668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-15 17:32:00', 'Trip_Pickup_DateTime': '2009-06-15 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75456, 'End_Lon': -73.853683, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774158, 'Start_Lon': -73.872325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-15 17:28:00', 'Trip_Pickup_DateTime': '2009-06-15 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777025, 'End_Lon': -73.909588, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74028, 'Start_Lon': -74.00529, 'Tip_Amt': 4.36, 'Tolls_Amt': 0.0, 'Total_Amt': 26.16, 'Trip_Distance': 8.1, 'Trip_Dropoff_DateTime': '2009-06-20 02:47:00', 'Trip_Pickup_DateTime': '2009-06-20 02:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781935, 'End_Lon': -73.963175, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781935, 'Start_Lon': -73.963175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-11 19:45:00', 'Trip_Pickup_DateTime': '2009-06-11 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76483, 'End_Lon': -73.968693, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773165, 'Start_Lon': -73.956763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-13 16:39:00', 'Trip_Pickup_DateTime': '2009-06-13 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720175, 'End_Lon': -74.010307, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75837, 'Start_Lon': -73.971382, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.19, 'Trip_Dropoff_DateTime': '2009-06-15 17:32:00', 'Trip_Pickup_DateTime': '2009-06-15 17:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77141, 'End_Lon': -73.959382, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742483, 'Start_Lon': -73.980433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-11 19:34:00', 'Trip_Pickup_DateTime': '2009-06-11 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746738, 'End_Lon': -73.943498, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743758, 'Start_Lon': -73.925647, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-19 09:42:00', 'Trip_Pickup_DateTime': '2009-06-19 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79761, 'End_Lon': -73.968715, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77882, 'Start_Lon': -73.960185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-15 16:26:00', 'Trip_Pickup_DateTime': '2009-06-15 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772522, 'End_Lon': -73.946478, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785477, 'Start_Lon': -73.97368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-15 14:28:00', 'Trip_Pickup_DateTime': '2009-06-15 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767285, 'End_Lon': -73.953567, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78135, 'Start_Lon': -73.95194, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-11 15:14:00', 'Trip_Pickup_DateTime': '2009-06-11 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740228, 'End_Lon': -73.990493, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745028, 'Start_Lon': -73.998733, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-11 17:29:00', 'Trip_Pickup_DateTime': '2009-06-11 17:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713177, 'End_Lon': -73.7986, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71169, 'Start_Lon': -73.79212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-15 17:34:00', 'Trip_Pickup_DateTime': '2009-06-15 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.625857, 'End_Lon': -74.02407, 'Fare_Amt': 31.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76833, 'Start_Lon': -73.992442, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 36.85, 'Trip_Distance': 12.44, 'Trip_Dropoff_DateTime': '2009-06-11 19:24:00', 'Trip_Pickup_DateTime': '2009-06-11 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763345, 'End_Lon': -73.965082, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744162, 'Start_Lon': -73.985365, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-11 20:03:00', 'Trip_Pickup_DateTime': '2009-06-11 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.647073, 'End_Lon': -73.78977, 'Fare_Amt': 27.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774025, 'Start_Lon': -73.874462, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 32.3, 'Trip_Distance': 12.16, 'Trip_Dropoff_DateTime': '2009-06-11 19:21:00', 'Trip_Pickup_DateTime': '2009-06-11 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753078, 'End_Lon': -73.968058, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757462, 'Start_Lon': -73.969115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-11 18:44:00', 'Trip_Pickup_DateTime': '2009-06-11 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786263, 'End_Lon': -73.95252, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772822, 'Start_Lon': -73.962488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-11 19:07:00', 'Trip_Pickup_DateTime': '2009-06-11 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806395, 'End_Lon': -73.965042, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779152, 'Start_Lon': -73.954147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-11 16:29:00', 'Trip_Pickup_DateTime': '2009-06-11 16:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774617, 'End_Lon': -73.982242, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768122, 'Start_Lon': -73.952868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-20 14:43:00', 'Trip_Pickup_DateTime': '2009-06-20 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789823, 'End_Lon': -73.98045, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78324, 'Start_Lon': -73.952745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-11 14:56:00', 'Trip_Pickup_DateTime': '2009-06-11 14:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74806, 'End_Lon': -74.005142, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750608, 'Start_Lon': -73.98311, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-19 09:53:00', 'Trip_Pickup_DateTime': '2009-06-19 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 7 with 1000 records\n",
            "[{'End_Lat': 40.730975, 'End_Lon': -73.990482, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728943, 'Start_Lon': -74.000693, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-15 12:33:00', 'Trip_Pickup_DateTime': '2009-06-15 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731282, 'End_Lon': -73.988447, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721823, 'Start_Lon': -73.988953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-13 19:14:00', 'Trip_Pickup_DateTime': '2009-06-13 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.692075, 'End_Lon': -73.985212, 'Fare_Amt': 26.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748637, 'Start_Lon': -74.007865, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.9, 'Trip_Distance': 9.56, 'Trip_Dropoff_DateTime': '2009-06-15 12:49:00', 'Trip_Pickup_DateTime': '2009-06-15 12:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731568, 'End_Lon': -73.992785, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727077, 'Start_Lon': -73.985628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-10 23:08:00', 'Trip_Pickup_DateTime': '2009-06-10 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736907, 'End_Lon': -74.008293, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735382, 'Start_Lon': -73.991928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-19 09:25:00', 'Trip_Pickup_DateTime': '2009-06-19 09:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758557, 'End_Lon': -73.96784, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79142, 'Start_Lon': -73.968537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-15 11:32:00', 'Trip_Pickup_DateTime': '2009-06-15 11:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76026, 'End_Lon': -73.967622, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724582, 'Start_Lon': -73.981588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-06 21:55:00', 'Trip_Pickup_DateTime': '2009-06-06 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750223, 'End_Lon': -73.980378, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755817, 'Start_Lon': -73.990682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-17 07:12:00', 'Trip_Pickup_DateTime': '2009-06-17 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739518, 'End_Lon': -73.982327, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751783, 'Start_Lon': -73.989578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-14 11:40:00', 'Trip_Pickup_DateTime': '2009-06-14 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782105, 'End_Lon': -73.971865, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781038, 'Start_Lon': -73.981298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-15 11:37:00', 'Trip_Pickup_DateTime': '2009-06-15 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754682, 'End_Lon': -73.98028, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773678, 'Start_Lon': -73.954857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-15 13:13:00', 'Trip_Pickup_DateTime': '2009-06-15 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754645, 'End_Lon': -73.96387, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748515, 'Start_Lon': -73.98868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-21 18:32:00', 'Trip_Pickup_DateTime': '2009-06-21 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764848, 'End_Lon': -73.969833, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744337, 'Start_Lon': -73.983113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-11 17:27:00', 'Trip_Pickup_DateTime': '2009-06-11 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.686668, 'End_Lon': -73.978225, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723302, 'Start_Lon': -74.008075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 6.11, 'Trip_Dropoff_DateTime': '2009-06-15 10:34:00', 'Trip_Pickup_DateTime': '2009-06-15 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748682, 'End_Lon': -73.990205, 'Fare_Amt': 15.7, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.706985, 'Start_Lon': -74.01362, 'Tip_Amt': 3.14, 'Tolls_Amt': 0.0, 'Total_Amt': 18.84, 'Trip_Distance': 3.87, 'Trip_Dropoff_DateTime': '2009-06-11 14:03:00', 'Trip_Pickup_DateTime': '2009-06-11 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794513, 'End_Lon': -73.963685, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788277, 'Start_Lon': -73.979457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-11 17:21:00', 'Trip_Pickup_DateTime': '2009-06-11 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737573, 'End_Lon': -74.001718, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726178, 'Start_Lon': -73.97729, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-14 00:40:00', 'Trip_Pickup_DateTime': '2009-06-14 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708033, 'End_Lon': -74.012573, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720247, 'Start_Lon': -74.0105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-15 12:50:00', 'Trip_Pickup_DateTime': '2009-06-15 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761635, 'End_Lon': -73.973822, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752297, 'Start_Lon': -73.979533, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-11 14:28:00', 'Trip_Pickup_DateTime': '2009-06-11 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732968, 'End_Lon': -74.006137, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729635, 'Start_Lon': -74.005245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-15 12:07:00', 'Trip_Pickup_DateTime': '2009-06-15 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736788, 'End_Lon': -73.977682, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7446, 'Start_Lon': -73.976207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-11 13:56:00', 'Trip_Pickup_DateTime': '2009-06-11 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.677923, 'End_Lon': -73.941012, 'Fare_Amt': 24.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71679, 'Start_Lon': -74.001758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.6, 'Trip_Distance': 8.59, 'Trip_Dropoff_DateTime': '2009-06-14 03:16:00', 'Trip_Pickup_DateTime': '2009-06-14 02:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775242, 'End_Lon': -73.947637, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760832, 'Start_Lon': -73.967422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-10 22:36:00', 'Trip_Pickup_DateTime': '2009-06-10 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769485, 'End_Lon': -73.982225, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755207, 'Start_Lon': -73.975472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-11 16:27:00', 'Trip_Pickup_DateTime': '2009-06-11 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776233, 'End_Lon': -73.961943, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767195, 'Start_Lon': -73.966475, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-19 09:09:00', 'Trip_Pickup_DateTime': '2009-06-19 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801465, 'End_Lon': -73.966948, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774882, 'Start_Lon': -73.984378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-11 11:41:00', 'Trip_Pickup_DateTime': '2009-06-11 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-11 12:48:00', 'Trip_Pickup_DateTime': '2009-06-11 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71997, 'End_Lon': -74.008842, 'Fare_Amt': 18.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769063, 'Start_Lon': -73.985985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 4.51, 'Trip_Dropoff_DateTime': '2009-06-11 13:19:00', 'Trip_Pickup_DateTime': '2009-06-11 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.646915, 'End_Lon': -73.790135, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770668, 'Start_Lon': -73.98317, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.66, 'Trip_Dropoff_DateTime': '2009-06-06 08:26:00', 'Trip_Pickup_DateTime': '2009-06-06 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762517, 'End_Lon': -73.981982, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74082, 'Start_Lon': -73.994337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-11 12:49:00', 'Trip_Pickup_DateTime': '2009-06-11 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774348, 'End_Lon': -73.982157, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747337, 'Start_Lon': -73.980947, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-11 12:34:00', 'Trip_Pickup_DateTime': '2009-06-11 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73875, 'End_Lon': -73.982902, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758957, 'Start_Lon': -73.965595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-13 23:04:00', 'Trip_Pickup_DateTime': '2009-06-13 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785728, 'End_Lon': -73.972647, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756257, 'Start_Lon': -73.96442, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-04 19:03:00', 'Trip_Pickup_DateTime': '2009-06-04 18:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751458, 'End_Lon': -73.997787, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790375, 'Start_Lon': -73.976442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-11 12:13:00', 'Trip_Pickup_DateTime': '2009-06-11 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739348, 'End_Lon': -73.99394, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762522, 'Start_Lon': -73.992525, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-15 09:15:00', 'Trip_Pickup_DateTime': '2009-06-15 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701295, 'End_Lon': -73.983293, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72923, 'Start_Lon': -74.000883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-15 01:49:00', 'Trip_Pickup_DateTime': '2009-06-15 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760652, 'End_Lon': -73.97291, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723717, 'Start_Lon': -73.996377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-11 13:14:00', 'Trip_Pickup_DateTime': '2009-06-11 12:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756068, 'End_Lon': -73.972695, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763243, 'Start_Lon': -73.996483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-13 23:57:00', 'Trip_Pickup_DateTime': '2009-06-13 23:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77043, 'End_Lon': -73.9626, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75775, 'Start_Lon': -73.98158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-10 22:48:00', 'Trip_Pickup_DateTime': '2009-06-10 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739187, 'End_Lon': -73.979928, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763612, 'Start_Lon': -73.980688, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-14 01:19:00', 'Trip_Pickup_DateTime': '2009-06-14 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773152, 'End_Lon': -73.885437, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77212, 'Start_Lon': -73.97897, 'Tip_Amt': 4.9, 'Tolls_Amt': 4.15, 'Total_Amt': 33.55, 'Trip_Distance': 9.37, 'Trip_Dropoff_DateTime': '2009-06-15 08:40:00', 'Trip_Pickup_DateTime': '2009-06-15 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751323, 'End_Lon': -73.978485, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727668, 'Start_Lon': -73.988363, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-11 13:14:00', 'Trip_Pickup_DateTime': '2009-06-11 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752478, 'End_Lon': -73.969037, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693215, 'Start_Lon': -73.989052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-06 00:34:00', 'Trip_Pickup_DateTime': '2009-06-06 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792053, 'End_Lon': -73.977328, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785195, 'Start_Lon': -73.978897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-19 09:16:00', 'Trip_Pickup_DateTime': '2009-06-19 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773365, 'End_Lon': -73.977945, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759565, 'Start_Lon': -73.979677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-11 12:57:00', 'Trip_Pickup_DateTime': '2009-06-11 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715723, 'End_Lon': -73.977958, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745177, 'Start_Lon': -73.978442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-15 08:22:00', 'Trip_Pickup_DateTime': '2009-06-15 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718918, 'End_Lon': -73.975723, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721253, 'Start_Lon': -73.994583, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-20 14:23:00', 'Trip_Pickup_DateTime': '2009-06-20 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756878, 'End_Lon': -73.986457, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762917, 'Start_Lon': -73.978527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-10 20:58:00', 'Trip_Pickup_DateTime': '2009-06-10 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771097, 'End_Lon': -73.956705, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739582, 'Start_Lon': -73.982548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-06 21:56:00', 'Trip_Pickup_DateTime': '2009-06-06 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757563, 'End_Lon': -73.96892, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725255, 'Start_Lon': -73.986798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-15 09:25:00', 'Trip_Pickup_DateTime': '2009-06-15 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7118, 'End_Lon': -74.007172, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686853, 'Start_Lon': -73.996013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-15 08:42:00', 'Trip_Pickup_DateTime': '2009-06-15 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780385, 'End_Lon': -73.975625, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765318, 'Start_Lon': -73.967862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-10 22:18:00', 'Trip_Pickup_DateTime': '2009-06-10 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716318, 'End_Lon': -73.959385, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718527, 'Start_Lon': -74.000878, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-14 03:31:00', 'Trip_Pickup_DateTime': '2009-06-14 03:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76864, 'End_Lon': -73.955302, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762377, 'Start_Lon': -73.96488, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-05 20:34:00', 'Trip_Pickup_DateTime': '2009-06-05 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750353, 'End_Lon': -73.991457, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764118, 'Start_Lon': -73.988595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-14 01:14:00', 'Trip_Pickup_DateTime': '2009-06-14 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73779, 'End_Lon': -73.983393, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754555, 'Start_Lon': -73.97388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-13 22:36:00', 'Trip_Pickup_DateTime': '2009-06-13 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779418, 'End_Lon': -73.953075, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756965, 'Start_Lon': -73.963938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-06 19:09:00', 'Trip_Pickup_DateTime': '2009-06-06 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74195, 'End_Lon': -73.97757, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746645, 'Start_Lon': -73.974638, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-13 20:08:00', 'Trip_Pickup_DateTime': '2009-06-13 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727888, 'End_Lon': -74.002072, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738812, 'Start_Lon': -74.006497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-14 04:18:00', 'Trip_Pickup_DateTime': '2009-06-14 04:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777622, 'End_Lon': -73.978567, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775828, 'Start_Lon': -73.96078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-15 07:33:00', 'Trip_Pickup_DateTime': '2009-06-15 07:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757518, 'End_Lon': -73.970713, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776017, 'Start_Lon': -73.976092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-11 08:35:00', 'Trip_Pickup_DateTime': '2009-06-11 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780147, 'End_Lon': -73.949037, 'Fare_Amt': 8.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780875, 'Start_Lon': -73.979515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-13 23:01:00', 'Trip_Pickup_DateTime': '2009-06-13 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74218, 'End_Lon': -74.000568, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760277, 'Start_Lon': -73.991185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-10 23:30:00', 'Trip_Pickup_DateTime': '2009-06-10 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774606, 'End_Lon': -73.963407, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.766904, 'Start_Lon': -73.964934, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-07 14:05:40', 'Trip_Pickup_DateTime': '2009-06-07 14:00:39', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.744498, 'End_Lon': -73.989128, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.775096, 'Start_Lon': -73.965068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-19 14:32:41', 'Trip_Pickup_DateTime': '2009-06-19 14:18:08', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.67969, 'End_Lon': -73.964184, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.761685, 'Start_Lon': -73.99036, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.3, 'Trip_Distance': 6.9, 'Trip_Dropoff_DateTime': '2009-06-30 21:10:18', 'Trip_Pickup_DateTime': '2009-06-30 20:40:32', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.758242, 'End_Lon': -73.968085, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752613, 'Start_Lon': -73.993155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-10 17:51:00', 'Trip_Pickup_DateTime': '2009-06-10 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736718, 'End_Lon': -74.000995, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743385, 'Start_Lon': -73.996078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-13 20:51:00', 'Trip_Pickup_DateTime': '2009-06-13 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718667, 'End_Lon': -73.840457, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760092, 'Start_Lon': -73.98371, 'Tip_Amt': 5.32, 'Tolls_Amt': 4.15, 'Total_Amt': 36.07, 'Trip_Distance': 11.02, 'Trip_Dropoff_DateTime': '2009-06-04 23:25:00', 'Trip_Pickup_DateTime': '2009-06-04 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759983, 'End_Lon': -73.978263, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769452, 'Start_Lon': -73.965302, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-10 12:54:00', 'Trip_Pickup_DateTime': '2009-06-10 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781495, 'End_Lon': -73.948882, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751937, 'Start_Lon': -73.973755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-13 22:57:00', 'Trip_Pickup_DateTime': '2009-06-13 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738828, 'End_Lon': -73.987002, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752822, 'Start_Lon': -73.975385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 08:31:00', 'Trip_Pickup_DateTime': '2009-06-17 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784138, 'End_Lon': -73.973805, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754373, 'Start_Lon': -73.965375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-13 18:27:00', 'Trip_Pickup_DateTime': '2009-06-13 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780045, 'End_Lon': -73.968975, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728125, 'Start_Lon': -73.985687, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-14 00:53:00', 'Trip_Pickup_DateTime': '2009-06-14 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741998, 'End_Lon': -73.926063, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767628, 'Start_Lon': -73.936503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-14 15:34:00', 'Trip_Pickup_DateTime': '2009-06-14 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737555, 'End_Lon': -74.005465, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744663, 'Start_Lon': -73.993012, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 7.05, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-10 20:50:00', 'Trip_Pickup_DateTime': '2009-06-10 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777662, 'End_Lon': -73.98245, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790873, 'Start_Lon': -73.976015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-15 14:57:00', 'Trip_Pickup_DateTime': '2009-06-15 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784015, 'End_Lon': -73.956628, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761283, 'Start_Lon': -73.981088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-10 16:04:00', 'Trip_Pickup_DateTime': '2009-06-10 15:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756807, 'End_Lon': -73.97209, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75038, 'Start_Lon': -73.991735, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-15 14:48:00', 'Trip_Pickup_DateTime': '2009-06-15 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763748, 'End_Lon': -73.96953, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770048, 'Start_Lon': -73.952347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-10 12:19:00', 'Trip_Pickup_DateTime': '2009-06-10 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77505, 'End_Lon': -73.962898, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762, 'Start_Lon': -73.972752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-10 15:12:00', 'Trip_Pickup_DateTime': '2009-06-10 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762535, 'End_Lon': -73.974673, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75002, 'Start_Lon': -74.00617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-10 14:41:00', 'Trip_Pickup_DateTime': '2009-06-10 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761767, 'End_Lon': -73.816962, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75943, 'Start_Lon': -73.830245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-10 13:19:00', 'Trip_Pickup_DateTime': '2009-06-10 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766651, 'End_Lon': -73.997313, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.752564, 'Start_Lon': -73.977765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-14 11:28:40', 'Trip_Pickup_DateTime': '2009-06-14 11:15:32', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.733565, 'End_Lon': -73.993108, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713403, 'Start_Lon': -74.008862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-10 11:16:00', 'Trip_Pickup_DateTime': '2009-06-10 11:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722573, 'End_Lon': -73.993093, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705638, 'Start_Lon': -74.007372, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-14 22:25:00', 'Trip_Pickup_DateTime': '2009-06-14 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759298, 'End_Lon': -73.98182, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752435, 'Start_Lon': -73.972842, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-14 13:49:00', 'Trip_Pickup_DateTime': '2009-06-14 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787102, 'End_Lon': -73.971632, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729552, 'Start_Lon': -73.977867, 'Tip_Amt': 4.26, 'Tolls_Amt': 0.0, 'Total_Amt': 25.56, 'Trip_Distance': 6.32, 'Trip_Dropoff_DateTime': '2009-06-14 17:38:00', 'Trip_Pickup_DateTime': '2009-06-14 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727992, 'End_Lon': -73.992963, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782915, 'Start_Lon': -73.97367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 4.89, 'Trip_Dropoff_DateTime': '2009-06-14 19:47:00', 'Trip_Pickup_DateTime': '2009-06-14 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741178, 'End_Lon': -73.994547, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739382, 'Start_Lon': -74.00151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-05 01:37:00', 'Trip_Pickup_DateTime': '2009-06-05 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777772, 'End_Lon': -73.95818, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768772, 'Start_Lon': -73.960507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-04 14:53:00', 'Trip_Pickup_DateTime': '2009-06-04 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741677, 'End_Lon': -73.975047, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781867, 'Start_Lon': -73.948803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-05 17:16:00', 'Trip_Pickup_DateTime': '2009-06-05 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76658, 'End_Lon': -73.978297, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75033, 'Start_Lon': -74.002163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-14 03:15:00', 'Trip_Pickup_DateTime': '2009-06-14 03:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746293, 'End_Lon': -73.982287, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763093, 'Start_Lon': -73.962698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-10 14:06:00', 'Trip_Pickup_DateTime': '2009-06-10 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727692, 'End_Lon': -73.985548, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752263, 'Start_Lon': -73.97019, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-07 12:51:00', 'Trip_Pickup_DateTime': '2009-06-07 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762022, 'End_Lon': -73.979235, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721405, 'Start_Lon': -73.989122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.55, 'Trip_Dropoff_DateTime': '2009-06-05 20:04:00', 'Trip_Pickup_DateTime': '2009-06-05 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740908, 'End_Lon': -73.995995, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773097, 'Start_Lon': -73.885323, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 27.6, 'Trip_Distance': 9.04, 'Trip_Dropoff_DateTime': '2009-06-14 20:33:00', 'Trip_Pickup_DateTime': '2009-06-14 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.794222, 'End_Lon': -73.939912, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800333, 'Start_Lon': -73.946753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-09 21:56:00', 'Trip_Pickup_DateTime': '2009-06-09 21:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77232, 'End_Lon': -73.954743, 'Fare_Amt': 4.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772457, 'Start_Lon': -73.964842, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-14 14:40:00', 'Trip_Pickup_DateTime': '2009-06-14 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749182, 'End_Lon': -73.991935, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741843, 'Start_Lon': -73.985562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-14 12:40:00', 'Trip_Pickup_DateTime': '2009-06-14 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751848, 'End_Lon': -73.979583, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747975, 'Start_Lon': -74.008082, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-06 00:34:00', 'Trip_Pickup_DateTime': '2009-06-06 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764535, 'End_Lon': -73.916547, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762262, 'Start_Lon': -73.96019, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.4, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-14 00:04:00', 'Trip_Pickup_DateTime': '2009-06-13 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719875, 'End_Lon': -73.98773, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771327, 'Start_Lon': -73.947845, 'Tip_Amt': 3.1, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-10 16:37:00', 'Trip_Pickup_DateTime': '2009-06-10 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.839295, 'End_Lon': -73.940978, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78423, 'Start_Lon': -73.977567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.74, 'Trip_Dropoff_DateTime': '2009-06-05 22:51:00', 'Trip_Pickup_DateTime': '2009-06-05 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721565, 'End_Lon': -73.99536, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717072, 'Start_Lon': -74.006295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-14 04:51:00', 'Trip_Pickup_DateTime': '2009-06-14 04:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783148, 'End_Lon': -73.958398, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764348, 'Start_Lon': -73.968753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-02 16:10:00', 'Trip_Pickup_DateTime': '2009-06-02 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773453, 'End_Lon': -73.957853, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765505, 'Start_Lon': -73.965745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-05 22:38:00', 'Trip_Pickup_DateTime': '2009-06-05 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736232, 'End_Lon': -73.981473, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727942, 'Start_Lon': -73.984983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-14 22:21:00', 'Trip_Pickup_DateTime': '2009-06-14 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732342, 'End_Lon': -73.98913, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706232, 'Start_Lon': -74.007847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.14, 'Trip_Dropoff_DateTime': '2009-06-14 13:07:00', 'Trip_Pickup_DateTime': '2009-06-14 12:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747637, 'End_Lon': -74.00016, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739122, 'Start_Lon': -74.002698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-14 20:01:00', 'Trip_Pickup_DateTime': '2009-06-14 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76163, 'End_Lon': -73.9801, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794098, 'Start_Lon': -73.972365, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-07 19:22:00', 'Trip_Pickup_DateTime': '2009-06-07 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725407, 'End_Lon': -73.951942, 'Fare_Amt': 14.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763187, 'Start_Lon': -73.9457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-10 17:01:00', 'Trip_Pickup_DateTime': '2009-06-10 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793272, 'End_Lon': -73.968603, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775192, 'Start_Lon': -73.98218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-10 20:55:00', 'Trip_Pickup_DateTime': '2009-06-10 20:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805278, 'End_Lon': -73.938702, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781713, 'Start_Lon': -73.945898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-22 08:07:00', 'Trip_Pickup_DateTime': '2009-06-22 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735677, 'End_Lon': -73.980725, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759542, 'Start_Lon': -73.965197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-03 16:46:00', 'Trip_Pickup_DateTime': '2009-06-03 16:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792172, 'End_Lon': -73.977498, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762978, 'Start_Lon': -73.982788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-14 21:09:00', 'Trip_Pickup_DateTime': '2009-06-14 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755865, 'End_Lon': -73.972978, 'Fare_Amt': 24.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77406, 'Start_Lon': -73.872522, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.25, 'Trip_Distance': 10.33, 'Trip_Dropoff_DateTime': '2009-06-10 20:01:00', 'Trip_Pickup_DateTime': '2009-06-10 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780453, 'End_Lon': -73.985543, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729782, 'Start_Lon': -73.980833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-07 13:27:00', 'Trip_Pickup_DateTime': '2009-06-07 13:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756552, 'End_Lon': -73.875822, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774023, 'Start_Lon': -73.874618, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-15 00:07:00', 'Trip_Pickup_DateTime': '2009-06-14 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79258, 'End_Lon': -73.971363, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780175, 'Start_Lon': -73.957172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-06 23:27:00', 'Trip_Pickup_DateTime': '2009-06-06 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748452, 'End_Lon': -73.973087, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76305, 'Start_Lon': -73.962598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-10 20:11:00', 'Trip_Pickup_DateTime': '2009-06-10 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.642617, 'End_Lon': -73.914565, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646062, 'Start_Lon': -73.914092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-03 07:41:00', 'Trip_Pickup_DateTime': '2009-06-03 07:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78852, 'End_Lon': -73.971217, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765292, 'Start_Lon': -73.989592, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-14 02:52:00', 'Trip_Pickup_DateTime': '2009-06-14 02:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754397, 'End_Lon': -73.965877, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738577, 'Start_Lon': -73.989885, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-14 16:22:00', 'Trip_Pickup_DateTime': '2009-06-14 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746408, 'End_Lon': -73.975568, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739603, 'Start_Lon': -73.976452, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-07 20:03:00', 'Trip_Pickup_DateTime': '2009-06-07 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765265, 'End_Lon': -74.001098, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762042, 'Start_Lon': -74.001647, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-14 13:22:00', 'Trip_Pickup_DateTime': '2009-06-14 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758855, 'End_Lon': -73.993905, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704667, 'Start_Lon': -74.013443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 4.93, 'Trip_Dropoff_DateTime': '2009-06-11 18:22:00', 'Trip_Pickup_DateTime': '2009-06-11 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76195, 'End_Lon': -73.983123, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77159, 'Start_Lon': -73.963385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-14 14:20:00', 'Trip_Pickup_DateTime': '2009-06-14 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.6488, 'End_Lon': -73.782565, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777618, 'Start_Lon': -73.945492, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.7, 'Trip_Dropoff_DateTime': '2009-06-14 13:02:00', 'Trip_Pickup_DateTime': '2009-06-14 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751577, 'End_Lon': -73.990222, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744122, 'Start_Lon': -73.976532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-14 02:24:00', 'Trip_Pickup_DateTime': '2009-06-14 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744692, 'End_Lon': -74.008127, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737247, 'Start_Lon': -73.99689, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-03 00:31:00', 'Trip_Pickup_DateTime': '2009-06-03 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711322, 'End_Lon': -74.017027, 'Fare_Amt': 13.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771772, 'Start_Lon': -73.98298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.98, 'Trip_Dropoff_DateTime': '2009-06-07 22:44:00', 'Trip_Pickup_DateTime': '2009-06-07 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764093, 'End_Lon': -73.97821, 'Fare_Amt': 27.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769085, 'Start_Lon': -73.862747, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.95, 'Trip_Distance': 11.55, 'Trip_Dropoff_DateTime': '2009-06-12 00:16:00', 'Trip_Pickup_DateTime': '2009-06-11 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74883, 'End_Lon': -73.990388, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772307, 'Start_Lon': -73.962315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-04 16:08:00', 'Trip_Pickup_DateTime': '2009-06-04 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770488, 'End_Lon': -73.95232, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745728, 'Start_Lon': -73.982527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-12 00:24:00', 'Trip_Pickup_DateTime': '2009-06-12 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722445, 'End_Lon': -74.003982, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73984, 'Start_Lon': -73.994995, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-05 12:40:00', 'Trip_Pickup_DateTime': '2009-06-05 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70503, 'End_Lon': -74.016508, 'Fare_Amt': 60.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721687, 'Start_Lon': -74.01255, 'Tip_Amt': 5.0, 'Tolls_Amt': 8.0, 'Total_Amt': 73.0, 'Trip_Distance': 11.23, 'Trip_Dropoff_DateTime': '2009-06-12 00:51:00', 'Trip_Pickup_DateTime': '2009-06-12 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762792, 'End_Lon': -73.982607, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753875, 'Start_Lon': -73.975697, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-11 23:42:00', 'Trip_Pickup_DateTime': '2009-06-11 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.796945, 'End_Lon': -73.970303, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790778, 'Start_Lon': -73.974645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-05 16:06:00', 'Trip_Pickup_DateTime': '2009-06-05 16:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744302, 'End_Lon': -73.979013, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736188, 'Start_Lon': -74.00535, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-06 23:22:00', 'Trip_Pickup_DateTime': '2009-06-06 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740425, 'End_Lon': -73.998665, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744758, 'Start_Lon': -73.994832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-10 20:00:00', 'Trip_Pickup_DateTime': '2009-06-10 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711035, 'End_Lon': -74.017323, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767687, 'Start_Lon': -73.989607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.79, 'Trip_Dropoff_DateTime': '2009-06-11 23:22:00', 'Trip_Pickup_DateTime': '2009-06-11 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745405, 'End_Lon': -73.985898, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738742, 'Start_Lon': -73.985093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-12 02:04:00', 'Trip_Pickup_DateTime': '2009-06-12 02:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743155, 'End_Lon': -73.992893, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738688, 'Start_Lon': -73.982745, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-11 22:45:00', 'Trip_Pickup_DateTime': '2009-06-11 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757807, 'End_Lon': -73.892422, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72691, 'Start_Lon': -73.991468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 8.2, 'Trip_Dropoff_DateTime': '2009-06-11 23:55:00', 'Trip_Pickup_DateTime': '2009-06-11 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774385, 'End_Lon': -73.965372, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75934, 'Start_Lon': -73.981015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-15 19:26:00', 'Trip_Pickup_DateTime': '2009-06-15 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784055, 'End_Lon': -73.948578, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794448, 'Start_Lon': -73.971467, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-11 21:01:00', 'Trip_Pickup_DateTime': '2009-06-11 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71924, 'End_Lon': -73.98904, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726728, 'Start_Lon': -73.996125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-11 22:24:00', 'Trip_Pickup_DateTime': '2009-06-11 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.2, 'Trip_Dropoff_DateTime': '2009-06-11 20:52:00', 'Trip_Pickup_DateTime': '2009-06-11 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779867, 'End_Lon': -73.957302, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771057, 'Start_Lon': -73.963892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-11 20:55:00', 'Trip_Pickup_DateTime': '2009-06-11 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760747, 'End_Lon': -74.002695, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754843, 'Start_Lon': -73.984233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-11 21:32:00', 'Trip_Pickup_DateTime': '2009-06-11 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718498, 'End_Lon': -73.979535, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729528, 'Start_Lon': -74.002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-14 17:20:00', 'Trip_Pickup_DateTime': '2009-06-14 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738073, 'End_Lon': -73.996205, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717967, 'Start_Lon': -74.005407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-11 23:30:00', 'Trip_Pickup_DateTime': '2009-06-11 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76978, 'End_Lon': -73.9845, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779747, 'Start_Lon': -73.955487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-03 11:18:00', 'Trip_Pickup_DateTime': '2009-06-03 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778225, 'End_Lon': -73.98199, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776178, 'Start_Lon': -73.987295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-11 22:43:00', 'Trip_Pickup_DateTime': '2009-06-11 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806322, 'End_Lon': -73.966272, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64516, 'Start_Lon': -73.794648, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 19.71, 'Trip_Dropoff_DateTime': '2009-06-11 23:07:00', 'Trip_Pickup_DateTime': '2009-06-11 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782622, 'End_Lon': -73.981322, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758823, 'Start_Lon': -73.976238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-11 21:08:00', 'Trip_Pickup_DateTime': '2009-06-11 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77456, 'End_Lon': -73.959323, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772382, 'Start_Lon': -73.946935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-08 07:57:00', 'Trip_Pickup_DateTime': '2009-06-08 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754638, 'End_Lon': -73.965483, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751478, 'Start_Lon': -73.97503, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-11 23:12:00', 'Trip_Pickup_DateTime': '2009-06-11 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755593, 'End_Lon': -73.973093, 'Fare_Amt': 22.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768882, 'Start_Lon': -73.862613, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.75, 'Trip_Distance': 9.38, 'Trip_Dropoff_DateTime': '2009-06-11 23:06:00', 'Trip_Pickup_DateTime': '2009-06-11 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709542, 'End_Lon': -74.015353, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747097, 'Start_Lon': -73.985775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.83, 'Trip_Dropoff_DateTime': '2009-06-13 22:26:00', 'Trip_Pickup_DateTime': '2009-06-13 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74918, 'End_Lon': -73.975833, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722427, 'Start_Lon': -74.00045, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-11 15:19:00', 'Trip_Pickup_DateTime': '2009-06-11 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72389, 'End_Lon': -73.979042, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729258, 'Start_Lon': -74.001248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-06 16:48:00', 'Trip_Pickup_DateTime': '2009-06-06 16:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774952, 'End_Lon': -73.984705, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79732, 'Start_Lon': -73.960682, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-05 08:38:00', 'Trip_Pickup_DateTime': '2009-06-05 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.871548, 'End_Lon': -74.062103, 'Fare_Amt': 111.11, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.871553, 'Start_Lon': -74.062107, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 116.11, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-15 14:01:00', 'Trip_Pickup_DateTime': '2009-06-15 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704712, 'End_Lon': -74.015663, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.688898, 'Start_Lon': -73.992768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.05, 'Trip_Dropoff_DateTime': '2009-06-08 00:31:00', 'Trip_Pickup_DateTime': '2009-06-08 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738438, 'End_Lon': -73.999652, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741728, 'Start_Lon': -74.001192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-15 14:18:00', 'Trip_Pickup_DateTime': '2009-06-15 14:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782288, 'End_Lon': -73.982733, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786437, 'Start_Lon': -73.956822, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-30 13:27:00', 'Trip_Pickup_DateTime': '2009-06-30 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734637, 'End_Lon': -73.983082, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770693, 'Start_Lon': -73.963247, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-30 06:21:00', 'Trip_Pickup_DateTime': '2009-06-30 06:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760455, 'End_Lon': -73.973918, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743997, 'Start_Lon': -73.985802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-30 08:49:00', 'Trip_Pickup_DateTime': '2009-06-30 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773032, 'End_Lon': -73.982402, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789578, 'Start_Lon': -73.975553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-29 15:54:00', 'Trip_Pickup_DateTime': '2009-06-29 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730193, 'End_Lon': -73.99157, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743248, 'Start_Lon': -73.989528, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-29 20:00:00', 'Trip_Pickup_DateTime': '2009-06-29 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753637, 'End_Lon': -73.969537, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757253, 'Start_Lon': -73.966707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.25, 'Trip_Dropoff_DateTime': '2009-06-02 12:08:00', 'Trip_Pickup_DateTime': '2009-06-02 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752235, 'End_Lon': -73.907245, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750968, 'Start_Lon': -73.906072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-29 23:03:00', 'Trip_Pickup_DateTime': '2009-06-29 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742307, 'End_Lon': -73.98272, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761897, 'Start_Lon': -73.985975, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-30 21:25:00', 'Trip_Pickup_DateTime': '2009-06-30 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76659, 'End_Lon': -73.968958, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765863, 'Start_Lon': -73.980638, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-29 14:37:00', 'Trip_Pickup_DateTime': '2009-06-29 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790922, 'End_Lon': -73.976713, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785552, 'Start_Lon': -73.978943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-30 14:23:00', 'Trip_Pickup_DateTime': '2009-06-30 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.680888, 'End_Lon': -73.932228, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714498, 'Start_Lon': -73.944258, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-30 04:18:00', 'Trip_Pickup_DateTime': '2009-06-30 03:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759428, 'End_Lon': -73.974023, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742992, 'Start_Lon': -73.98653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-30 20:26:00', 'Trip_Pickup_DateTime': '2009-06-30 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753247, 'End_Lon': -73.97399, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756007, 'Start_Lon': -73.983407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-05 23:17:00', 'Trip_Pickup_DateTime': '2009-06-05 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762092, 'End_Lon': -73.975567, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740693, 'Start_Lon': -74.005572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-30 00:46:00', 'Trip_Pickup_DateTime': '2009-06-30 00:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762573, 'End_Lon': -73.979165, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751195, 'Start_Lon': -73.994105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-08 08:26:00', 'Trip_Pickup_DateTime': '2009-06-08 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775152, 'End_Lon': -73.987762, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76488, 'Start_Lon': -73.984465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-07 17:45:00', 'Trip_Pickup_DateTime': '2009-06-07 17:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691903, 'End_Lon': -73.959727, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751215, 'Start_Lon': -73.994013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.9, 'Trip_Distance': 6.73, 'Trip_Dropoff_DateTime': '2009-06-29 16:48:00', 'Trip_Pickup_DateTime': '2009-06-29 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709805, 'End_Lon': -73.913615, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719572, 'Start_Lon': -73.994273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.46, 'Trip_Dropoff_DateTime': '2009-06-29 16:13:00', 'Trip_Pickup_DateTime': '2009-06-29 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 41.141398, 'End_Lon': -73.950107, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788113, 'Start_Lon': -73.93936, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-30 13:03:00', 'Trip_Pickup_DateTime': '2009-06-30 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72993, 'End_Lon': -73.98339, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729575, 'Start_Lon': -73.983772, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-30 17:43:00', 'Trip_Pickup_DateTime': '2009-06-30 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761275, 'End_Lon': -73.978382, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769552, 'Start_Lon': -73.984423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-30 09:00:00', 'Trip_Pickup_DateTime': '2009-06-30 08:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762045, 'End_Lon': -73.990408, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735767, 'Start_Lon': -74.000633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-30 00:26:00', 'Trip_Pickup_DateTime': '2009-06-30 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750598, 'End_Lon': -73.99102, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781367, 'Start_Lon': -73.949347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.83, 'Trip_Dropoff_DateTime': '2009-06-06 07:56:00', 'Trip_Pickup_DateTime': '2009-06-06 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775828, 'End_Lon': -73.954843, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788167, 'Start_Lon': -73.9763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-30 21:22:00', 'Trip_Pickup_DateTime': '2009-06-30 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742815, 'End_Lon': -73.97742, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770437, 'Start_Lon': -73.954053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-30 10:06:00', 'Trip_Pickup_DateTime': '2009-06-30 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763703, 'End_Lon': -73.971625, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771475, 'Start_Lon': -73.981508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-30 08:41:00', 'Trip_Pickup_DateTime': '2009-06-30 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772332, 'End_Lon': -73.956552, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777543, 'Start_Lon': -73.950862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-03 13:13:00', 'Trip_Pickup_DateTime': '2009-06-03 13:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721107, 'End_Lon': -73.989533, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72586, 'Start_Lon': -73.994818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-05 14:57:00', 'Trip_Pickup_DateTime': '2009-06-05 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731595, 'End_Lon': -73.988402, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748165, 'Start_Lon': -73.988427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-06 22:16:00', 'Trip_Pickup_DateTime': '2009-06-06 22:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754872, 'End_Lon': -73.979778, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716952, 'Start_Lon': -73.991403, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-12 09:22:00', 'Trip_Pickup_DateTime': '2009-06-12 09:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800398, 'End_Lon': -73.969523, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760513, 'Start_Lon': -73.975607, 'Tip_Amt': 3.26, 'Tolls_Amt': 0.0, 'Total_Amt': 19.56, 'Trip_Distance': 4.64, 'Trip_Dropoff_DateTime': '2009-06-30 16:25:00', 'Trip_Pickup_DateTime': '2009-06-30 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787048, 'End_Lon': -73.947953, 'Fare_Amt': 4.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780663, 'Start_Lon': -73.958813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-30 20:17:00', 'Trip_Pickup_DateTime': '2009-06-30 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-06 19:07:00', 'Trip_Pickup_DateTime': '2009-06-06 18:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752732, 'End_Lon': -74.000482, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78048, 'Start_Lon': -73.984117, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-30 08:23:00', 'Trip_Pickup_DateTime': '2009-06-30 08:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644057, 'End_Lon': -73.7827, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768955, 'Start_Lon': -73.985402, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.43, 'Trip_Dropoff_DateTime': '2009-06-30 16:09:00', 'Trip_Pickup_DateTime': '2009-06-30 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733933, 'End_Lon': -74.002872, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725693, 'Start_Lon': -74.003882, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-04 18:31:00', 'Trip_Pickup_DateTime': '2009-06-04 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751707, 'End_Lon': -73.976202, 'Fare_Amt': 24.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774, 'Start_Lon': -73.87447, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.55, 'Trip_Distance': 10.58, 'Trip_Dropoff_DateTime': '2009-06-08 21:56:00', 'Trip_Pickup_DateTime': '2009-06-08 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742743, 'End_Lon': -73.996045, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727732, 'Start_Lon': -73.99114, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-30 15:41:00', 'Trip_Pickup_DateTime': '2009-06-30 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751748, 'End_Lon': -73.970848, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77961, 'Start_Lon': -73.944497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-30 09:20:00', 'Trip_Pickup_DateTime': '2009-06-30 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73388, 'End_Lon': -73.860398, 'Fare_Amt': 27.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645265, 'Start_Lon': -73.776723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.2, 'Trip_Distance': 11.39, 'Trip_Dropoff_DateTime': '2009-06-29 21:43:00', 'Trip_Pickup_DateTime': '2009-06-29 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76488, 'End_Lon': -73.956242, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756155, 'Start_Lon': -73.977765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-29 11:07:00', 'Trip_Pickup_DateTime': '2009-06-29 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71512, 'End_Lon': -74.012382, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717052, 'Start_Lon': -74.009113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-30 00:31:00', 'Trip_Pickup_DateTime': '2009-06-30 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741298, 'End_Lon': -73.98375, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759983, 'Start_Lon': -73.984758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-29 22:36:00', 'Trip_Pickup_DateTime': '2009-06-29 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761573, 'End_Lon': -73.983377, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745375, 'Start_Lon': -73.985033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-12 09:02:00', 'Trip_Pickup_DateTime': '2009-06-12 08:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766353, 'End_Lon': -73.997375, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752558, 'Start_Lon': -73.981997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-07 10:37:00', 'Trip_Pickup_DateTime': '2009-06-07 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730365, 'End_Lon': -74.000237, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748765, 'Start_Lon': -73.97813, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-27 20:51:00', 'Trip_Pickup_DateTime': '2009-06-27 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764297, 'End_Lon': -73.97177, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769735, 'Start_Lon': -73.96476, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-02 11:51:00', 'Trip_Pickup_DateTime': '2009-06-02 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764588, 'End_Lon': -73.981095, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750375, 'Start_Lon': -73.991983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-30 11:17:00', 'Trip_Pickup_DateTime': '2009-06-30 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740048, 'End_Lon': -74.005282, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73388, 'Start_Lon': -74.00267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-06 00:25:00', 'Trip_Pickup_DateTime': '2009-06-06 00:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787058, 'End_Lon': -73.968028, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768545, 'Start_Lon': -73.98204, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-30 16:02:00', 'Trip_Pickup_DateTime': '2009-06-30 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787767, 'End_Lon': -73.941448, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778473, 'Start_Lon': -73.94815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-29 23:36:00', 'Trip_Pickup_DateTime': '2009-06-29 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734338, 'End_Lon': -73.99414, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734338, 'Start_Lon': -73.99414, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-30 19:40:00', 'Trip_Pickup_DateTime': '2009-06-30 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762815, 'End_Lon': -73.974847, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788463, 'Start_Lon': -73.976523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-04 09:26:00', 'Trip_Pickup_DateTime': '2009-06-04 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735215, 'End_Lon': -74.000413, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743345, 'Start_Lon': -74.007192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-08 21:49:00', 'Trip_Pickup_DateTime': '2009-06-08 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733435, 'End_Lon': -74.004513, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75559, 'Start_Lon': -73.983393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-28 02:52:00', 'Trip_Pickup_DateTime': '2009-06-28 02:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790867, 'End_Lon': -73.943093, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777143, 'Start_Lon': -73.959298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-12 08:15:00', 'Trip_Pickup_DateTime': '2009-06-12 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739698, 'End_Lon': -74.005807, 'Fare_Amt': 12.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78506, 'Start_Lon': -73.960533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-30 21:46:00', 'Trip_Pickup_DateTime': '2009-06-30 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759963, 'End_Lon': -73.983717, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769793, 'Start_Lon': -73.961127, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-29 14:38:00', 'Trip_Pickup_DateTime': '2009-06-29 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760913, 'End_Lon': -73.98122, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749543, 'Start_Lon': -73.977617, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-08 20:48:00', 'Trip_Pickup_DateTime': '2009-06-08 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759545, 'End_Lon': -73.97678, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776173, 'Start_Lon': -73.979967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-12 08:51:00', 'Trip_Pickup_DateTime': '2009-06-12 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77844, 'End_Lon': -73.989465, 'Fare_Amt': 16.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.850108, 'Start_Lon': -73.940872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 6.06, 'Trip_Dropoff_DateTime': '2009-06-27 23:56:00', 'Trip_Pickup_DateTime': '2009-06-27 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759228, 'End_Lon': -73.969977, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770588, 'Start_Lon': -73.96203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-29 16:32:00', 'Trip_Pickup_DateTime': '2009-06-29 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752575, 'End_Lon': -73.986223, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759583, 'Start_Lon': -74.000195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-28 17:16:00', 'Trip_Pickup_DateTime': '2009-06-28 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73035, 'End_Lon': -73.999908, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750117, 'Start_Lon': -73.972378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-28 03:01:00', 'Trip_Pickup_DateTime': '2009-06-28 02:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765992, 'End_Lon': -73.976555, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751428, 'Start_Lon': -73.978292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-03 14:15:00', 'Trip_Pickup_DateTime': '2009-06-03 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7807, 'End_Lon': -73.984663, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75794, 'Start_Lon': -73.989352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-08 20:47:00', 'Trip_Pickup_DateTime': '2009-06-08 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76039, 'End_Lon': -73.907603, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728917, 'Start_Lon': -74.000553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 7.33, 'Trip_Dropoff_DateTime': '2009-06-14 03:19:00', 'Trip_Pickup_DateTime': '2009-06-14 02:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.693307, 'End_Lon': -73.988627, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725843, 'Start_Lon': -73.994568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-13 22:52:00', 'Trip_Pickup_DateTime': '2009-06-13 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736693, 'End_Lon': -73.990943, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722192, 'Start_Lon': -74.004422, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-27 22:40:00', 'Trip_Pickup_DateTime': '2009-06-27 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75393, 'End_Lon': -73.976087, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779852, 'Start_Lon': -73.94738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-17 07:46:00', 'Trip_Pickup_DateTime': '2009-06-17 07:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773548, 'End_Lon': -73.982113, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.789288, 'Start_Lon': -73.975702, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-14 11:45:00', 'Trip_Pickup_DateTime': '2009-06-14 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.807792, 'End_Lon': -73.96532, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785585, 'Start_Lon': -73.979205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-06 17:06:00', 'Trip_Pickup_DateTime': '2009-06-06 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746525, 'End_Lon': -73.972867, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750272, 'Start_Lon': -73.99128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-12 07:15:00', 'Trip_Pickup_DateTime': '2009-06-12 07:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744192, 'End_Lon': -73.995928, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77236, 'Start_Lon': -73.967332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-30 20:07:00', 'Trip_Pickup_DateTime': '2009-06-30 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75695, 'End_Lon': -73.982475, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76648, 'Start_Lon': -73.970825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-02 08:20:00', 'Trip_Pickup_DateTime': '2009-06-02 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729653, 'End_Lon': -74.003957, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724822, 'Start_Lon': -73.995073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-10 21:20:00', 'Trip_Pickup_DateTime': '2009-06-10 21:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72833, 'End_Lon': -73.992858, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710325, 'Start_Lon': -73.991925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-02 07:53:00', 'Trip_Pickup_DateTime': '2009-06-02 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758607, 'End_Lon': -73.962842, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749363, 'Start_Lon': -73.988132, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 8.55, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-14 11:43:00', 'Trip_Pickup_DateTime': '2009-06-14 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727173, 'End_Lon': -73.980283, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73401, 'Start_Lon': -73.995095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-14 15:43:00', 'Trip_Pickup_DateTime': '2009-06-14 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74219, 'End_Lon': -73.9866, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733028, 'Start_Lon': -74.000072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-10 20:08:00', 'Trip_Pickup_DateTime': '2009-06-10 20:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757027, 'End_Lon': -73.96265, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762255, 'Start_Lon': -73.966093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-13 23:25:00', 'Trip_Pickup_DateTime': '2009-06-13 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764035, 'End_Lon': -73.96522, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758167, 'Start_Lon': -73.97504, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-17 08:42:00', 'Trip_Pickup_DateTime': '2009-06-17 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764003, 'End_Lon': -73.992135, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752985, 'Start_Lon': -73.992778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-14 18:20:00', 'Trip_Pickup_DateTime': '2009-06-14 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719737, 'End_Lon': -74.004072, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749788, 'Start_Lon': -73.999038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-10 18:26:00', 'Trip_Pickup_DateTime': '2009-06-10 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724955, 'End_Lon': -73.975465, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71426, 'Start_Lon': -74.003315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-15 14:40:00', 'Trip_Pickup_DateTime': '2009-06-15 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757838, 'End_Lon': -73.985847, 'Fare_Amt': 12.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78006, 'Start_Lon': -73.957457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-14 17:58:00', 'Trip_Pickup_DateTime': '2009-06-14 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760298, 'End_Lon': -73.987105, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744082, 'Start_Lon': -73.985645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-14 01:09:00', 'Trip_Pickup_DateTime': '2009-06-14 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752257, 'End_Lon': -73.989715, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759195, 'Start_Lon': -73.983478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-17 08:47:00', 'Trip_Pickup_DateTime': '2009-06-17 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741032, 'End_Lon': -73.998848, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754918, 'Start_Lon': -73.996072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-13 23:26:00', 'Trip_Pickup_DateTime': '2009-06-13 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722245, 'End_Lon': -73.998078, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732792, 'Start_Lon': -73.98553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-14 00:09:00', 'Trip_Pickup_DateTime': '2009-06-13 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77398, 'End_Lon': -73.951492, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744735, 'Start_Lon': -73.976288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-14 22:33:00', 'Trip_Pickup_DateTime': '2009-06-14 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775247, 'End_Lon': -73.965082, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770525, 'Start_Lon': -73.962723, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-10 21:41:00', 'Trip_Pickup_DateTime': '2009-06-10 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778887, 'End_Lon': -73.976192, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725312, 'Start_Lon': -73.984058, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.6, 'Trip_Distance': 4.93, 'Trip_Dropoff_DateTime': '2009-06-14 02:43:00', 'Trip_Pickup_DateTime': '2009-06-14 02:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773642, 'End_Lon': -73.959922, 'Fare_Amt': 3.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771973, 'Start_Lon': -73.952262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-19 10:47:00', 'Trip_Pickup_DateTime': '2009-06-19 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727955, 'End_Lon': -73.99299, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726247, 'Start_Lon': -73.98624, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-10 19:35:00', 'Trip_Pickup_DateTime': '2009-06-10 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746958, 'End_Lon': -73.984052, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752055, 'Start_Lon': -73.984125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-10 12:02:00', 'Trip_Pickup_DateTime': '2009-06-10 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764817, 'End_Lon': -73.968497, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77355, 'Start_Lon': -73.920963, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-10 11:48:00', 'Trip_Pickup_DateTime': '2009-06-10 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 5.61, 'Trip_Dropoff_DateTime': '2009-06-15 01:37:00', 'Trip_Pickup_DateTime': '2009-06-15 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725583, 'End_Lon': -73.99898, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707612, 'Start_Lon': -74.007023, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-06 10:26:00', 'Trip_Pickup_DateTime': '2009-06-06 10:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806248, 'End_Lon': -73.9651, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750953, 'Start_Lon': -73.986967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-08 08:49:00', 'Trip_Pickup_DateTime': '2009-06-08 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75161, 'End_Lon': -73.978638, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746728, 'Start_Lon': -73.986023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-06 13:23:00', 'Trip_Pickup_DateTime': '2009-06-06 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755222, 'End_Lon': -73.974807, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725727, 'Start_Lon': -73.996497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-24 09:59:00', 'Trip_Pickup_DateTime': '2009-06-24 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77925, 'End_Lon': -73.915257, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755318, 'Start_Lon': -73.974968, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 4.99, 'Trip_Dropoff_DateTime': '2009-06-24 21:58:00', 'Trip_Pickup_DateTime': '2009-06-24 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761058, 'End_Lon': -73.98099, 'Fare_Amt': 4.1, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755702, 'Start_Lon': -73.977128, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-12 07:42:00', 'Trip_Pickup_DateTime': '2009-06-12 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756163, 'End_Lon': -73.98752, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748915, 'Start_Lon': -73.992138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-24 18:41:00', 'Trip_Pickup_DateTime': '2009-06-24 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788225, 'End_Lon': -73.9743, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802818, 'Start_Lon': -73.963563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-30 18:58:00', 'Trip_Pickup_DateTime': '2009-06-30 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774368, 'End_Lon': -73.871502, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741913, 'Start_Lon': -74.004395, 'Tip_Amt': 6.0, 'Tolls_Amt': 4.15, 'Total_Amt': 43.45, 'Trip_Distance': 10.6, 'Trip_Dropoff_DateTime': '2009-06-25 16:49:00', 'Trip_Pickup_DateTime': '2009-06-25 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736377, 'End_Lon': -73.973758, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74486, 'Start_Lon': -73.988277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-24 23:56:00', 'Trip_Pickup_DateTime': '2009-06-24 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73277, 'End_Lon': -73.987573, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736807, 'Start_Lon': -74.00093, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-25 16:39:00', 'Trip_Pickup_DateTime': '2009-06-25 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75973, 'End_Lon': -73.98154, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740433, 'Start_Lon': -73.982135, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 8.45, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-24 07:52:00', 'Trip_Pickup_DateTime': '2009-06-24 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78505, 'End_Lon': -73.982858, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751193, 'Start_Lon': -73.981133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-06 18:32:00', 'Trip_Pickup_DateTime': '2009-06-06 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740752, 'End_Lon': -74.0051, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739598, 'Start_Lon': -73.97951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-25 20:27:00', 'Trip_Pickup_DateTime': '2009-06-25 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721823, 'End_Lon': -74.004262, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750597, 'Start_Lon': -73.994675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-24 21:36:00', 'Trip_Pickup_DateTime': '2009-06-24 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778317, 'End_Lon': -73.953088, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758655, 'Start_Lon': -73.981155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-23 11:34:00', 'Trip_Pickup_DateTime': '2009-06-23 11:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764422, 'End_Lon': -73.973348, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767478, 'Start_Lon': -73.980425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-24 20:02:00', 'Trip_Pickup_DateTime': '2009-06-24 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738095, 'End_Lon': -73.980822, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735045, 'Start_Lon': -73.991005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-14 22:02:00', 'Trip_Pickup_DateTime': '2009-06-14 21:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7486, 'End_Lon': -73.975133, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734642, 'Start_Lon': -73.994535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-24 09:51:00', 'Trip_Pickup_DateTime': '2009-06-24 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768788, 'End_Lon': -73.988588, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76607, 'Start_Lon': -73.982028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-30 12:19:00', 'Trip_Pickup_DateTime': '2009-06-30 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782892, 'End_Lon': -73.973625, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764857, 'Start_Lon': -73.9705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 4.71, 'Trip_Dropoff_DateTime': '2009-06-25 17:21:00', 'Trip_Pickup_DateTime': '2009-06-25 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73883, 'End_Lon': -73.993807, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763297, 'Start_Lon': -73.983062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-23 00:25:00', 'Trip_Pickup_DateTime': '2009-06-23 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716758, 'End_Lon': -73.943052, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720527, 'Start_Lon': -73.989845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-23 00:55:00', 'Trip_Pickup_DateTime': '2009-06-23 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749833, 'End_Lon': -73.971983, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738365, 'Start_Lon': -73.977575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-25 08:52:00', 'Trip_Pickup_DateTime': '2009-06-25 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791207, 'End_Lon': -73.945683, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78035, 'Start_Lon': -73.959287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-22 13:21:00', 'Trip_Pickup_DateTime': '2009-06-22 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777768, 'End_Lon': -73.9435, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776173, 'Start_Lon': -73.949825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-03 15:32:00', 'Trip_Pickup_DateTime': '2009-06-03 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737615, 'End_Lon': -73.99259, 'Fare_Amt': 24.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769622, 'Start_Lon': -73.86345, 'Tip_Amt': 4.92, 'Tolls_Amt': 4.15, 'Total_Amt': 33.67, 'Trip_Distance': 10.04, 'Trip_Dropoff_DateTime': '2009-06-24 20:51:00', 'Trip_Pickup_DateTime': '2009-06-24 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765947, 'End_Lon': -73.954757, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771038, 'Start_Lon': -73.981452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-30 15:11:00', 'Trip_Pickup_DateTime': '2009-06-30 14:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771968, 'End_Lon': -73.870887, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758548, 'Start_Lon': -73.968965, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.45, 'Trip_Distance': 9.17, 'Trip_Dropoff_DateTime': '2009-06-29 17:09:00', 'Trip_Pickup_DateTime': '2009-06-29 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744637, 'End_Lon': -73.996792, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72283, 'Start_Lon': -74.001323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-22 11:55:00', 'Trip_Pickup_DateTime': '2009-06-22 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779638, 'End_Lon': -73.959983, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787565, 'Start_Lon': -73.9748, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-30 05:20:00', 'Trip_Pickup_DateTime': '2009-06-30 05:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800047, 'End_Lon': -73.958443, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771063, 'Start_Lon': -73.979723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-29 20:24:00', 'Trip_Pickup_DateTime': '2009-06-29 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.700117, 'End_Lon': -73.807545, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769037, 'Start_Lon': -73.862733, 'Tip_Amt': 3.82, 'Tolls_Amt': 0.0, 'Total_Amt': 22.92, 'Trip_Distance': 7.42, 'Trip_Dropoff_DateTime': '2009-06-30 19:51:00', 'Trip_Pickup_DateTime': '2009-06-30 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739428, 'End_Lon': -74.00647, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715093, 'Start_Lon': -74.005738, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-04 23:43:00', 'Trip_Pickup_DateTime': '2009-06-04 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742023, 'End_Lon': -73.99224, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740563, 'Start_Lon': -73.997818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-25 15:22:00', 'Trip_Pickup_DateTime': '2009-06-25 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76876, 'End_Lon': -73.958397, 'Fare_Amt': 10.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75697, 'Start_Lon': -73.989825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-04 10:30:00', 'Trip_Pickup_DateTime': '2009-06-04 10:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752222, 'End_Lon': -73.993595, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758718, 'Start_Lon': -73.992318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-29 19:07:00', 'Trip_Pickup_DateTime': '2009-06-29 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747493, 'End_Lon': -73.97245, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789363, 'Start_Lon': -73.977853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-08 20:21:00', 'Trip_Pickup_DateTime': '2009-06-08 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754425, 'End_Lon': -73.978372, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744823, 'Start_Lon': -73.991863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-22 17:33:00', 'Trip_Pickup_DateTime': '2009-06-22 17:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736812, 'End_Lon': -73.991558, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74122, 'Start_Lon': -74.005855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-22 18:21:00', 'Trip_Pickup_DateTime': '2009-06-22 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783025, 'End_Lon': -73.95715, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764825, 'Start_Lon': -73.966473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-23 14:04:00', 'Trip_Pickup_DateTime': '2009-06-23 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760877, 'End_Lon': -73.958752, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777382, 'Start_Lon': -73.978908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-29 12:58:00', 'Trip_Pickup_DateTime': '2009-06-29 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789085, 'End_Lon': -73.981018, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793945, 'Start_Lon': -73.972415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-29 16:53:00', 'Trip_Pickup_DateTime': '2009-06-29 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74225, 'End_Lon': -73.985067, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738167, 'Start_Lon': -73.98581, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.39, 'Trip_Dropoff_DateTime': '2009-06-29 20:52:00', 'Trip_Pickup_DateTime': '2009-06-29 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751987, 'End_Lon': -73.976645, 'Fare_Amt': 45.0, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.639803, 'Start_Lon': -73.785823, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.99, 'Trip_Dropoff_DateTime': '2009-06-29 18:41:00', 'Trip_Pickup_DateTime': '2009-06-29 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764222, 'End_Lon': -73.979322, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751253, 'Start_Lon': -73.994087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-29 23:22:00', 'Trip_Pickup_DateTime': '2009-06-29 23:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726453, 'End_Lon': -73.98917, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742042, 'Start_Lon': -73.974623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-30 20:16:00', 'Trip_Pickup_DateTime': '2009-06-30 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755918, 'End_Lon': -73.976088, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778477, 'Start_Lon': -73.96402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-25 14:49:00', 'Trip_Pickup_DateTime': '2009-06-25 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773337, 'End_Lon': -73.95186, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72603, 'Start_Lon': -73.977828, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.15, 'Trip_Dropoff_DateTime': '2009-06-24 16:07:00', 'Trip_Pickup_DateTime': '2009-06-24 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772277, 'End_Lon': -73.950848, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75221, 'Start_Lon': -73.98868, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-24 15:27:00', 'Trip_Pickup_DateTime': '2009-06-24 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788047, 'End_Lon': -73.972035, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772323, 'Start_Lon': -73.982392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-14 22:10:00', 'Trip_Pickup_DateTime': '2009-06-14 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757715, 'End_Lon': -73.990997, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747817, 'Start_Lon': -73.992067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-30 18:56:00', 'Trip_Pickup_DateTime': '2009-06-30 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760768, 'End_Lon': -73.986502, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761097, 'Start_Lon': -73.990708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-07 20:17:00', 'Trip_Pickup_DateTime': '2009-06-07 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7489, 'End_Lon': -73.991265, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734653, 'Start_Lon': -73.984427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-30 08:37:00', 'Trip_Pickup_DateTime': '2009-06-30 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748372, 'End_Lon': -73.988495, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759723, 'Start_Lon': -73.984768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-30 01:08:00', 'Trip_Pickup_DateTime': '2009-06-30 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723928, 'End_Lon': -73.978918, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.681513, 'Start_Lon': -73.993998, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 5.21, 'Trip_Dropoff_DateTime': '2009-06-29 21:45:00', 'Trip_Pickup_DateTime': '2009-06-29 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776505, 'End_Lon': -73.9899, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769017, 'Start_Lon': -73.862752, 'Tip_Amt': 5.3, 'Tolls_Amt': 0.0, 'Total_Amt': 31.8, 'Trip_Distance': 9.02, 'Trip_Dropoff_DateTime': '2009-06-25 15:43:00', 'Trip_Pickup_DateTime': '2009-06-25 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749977, 'End_Lon': -73.98583, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77045, 'Start_Lon': -73.981822, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-30 20:15:00', 'Trip_Pickup_DateTime': '2009-06-30 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762825, 'End_Lon': -73.983033, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757942, 'Start_Lon': -73.989303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-17 09:17:00', 'Trip_Pickup_DateTime': '2009-06-17 09:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804752, 'End_Lon': -73.952665, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804752, 'Start_Lon': -73.952665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-29 16:30:00', 'Trip_Pickup_DateTime': '2009-06-29 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749803, 'End_Lon': -73.991362, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763212, 'Start_Lon': -73.959373, 'Tip_Amt': 3.22, 'Tolls_Amt': 0.0, 'Total_Amt': 19.32, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-24 14:44:00', 'Trip_Pickup_DateTime': '2009-06-24 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770928, 'End_Lon': -73.959702, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77263, 'Start_Lon': -73.946862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-29 19:53:00', 'Trip_Pickup_DateTime': '2009-06-29 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804603, 'End_Lon': -73.955922, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804603, 'Start_Lon': -73.955922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-30 20:13:00', 'Trip_Pickup_DateTime': '2009-06-30 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751868, 'End_Lon': -73.993592, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720475, 'Start_Lon': -74.010103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-29 18:32:00', 'Trip_Pickup_DateTime': '2009-06-29 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.693922, 'End_Lon': -73.961432, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714935, 'Start_Lon': -73.992022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-30 01:30:00', 'Trip_Pickup_DateTime': '2009-06-30 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767222, 'End_Lon': -73.962412, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.745902, 'Start_Lon': -73.982189, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-22 21:04:48', 'Trip_Pickup_DateTime': '2009-06-22 20:55:15', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.767642, 'End_Lon': -73.956125, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757175, 'Start_Lon': -73.966645, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-29 13:28:00', 'Trip_Pickup_DateTime': '2009-06-29 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.679897, 'End_Lon': -73.966413, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742508, 'Start_Lon': -73.993972, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.0, 'Trip_Distance': 5.66, 'Trip_Dropoff_DateTime': '2009-06-29 21:47:00', 'Trip_Pickup_DateTime': '2009-06-29 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713905, 'End_Lon': -73.992153, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755715, 'Start_Lon': -73.991498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.68, 'Trip_Dropoff_DateTime': '2009-06-30 00:29:00', 'Trip_Pickup_DateTime': '2009-06-30 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772828, 'End_Lon': -73.946572, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770085, 'Start_Lon': -73.954528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-30 23:07:00', 'Trip_Pickup_DateTime': '2009-06-30 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752358, 'End_Lon': -73.979505, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74138, 'Start_Lon': -73.988968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-29 13:23:00', 'Trip_Pickup_DateTime': '2009-06-29 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716425, 'End_Lon': -74.002245, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72593, 'Start_Lon': -73.994562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-29 14:05:00', 'Trip_Pickup_DateTime': '2009-06-29 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.632017, 'End_Lon': -73.941193, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.634413, 'Start_Lon': -73.962315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-29 22:35:00', 'Trip_Pickup_DateTime': '2009-06-29 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755932, 'End_Lon': -73.998005, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755932, 'Start_Lon': -73.998005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-04 10:21:00', 'Trip_Pickup_DateTime': '2009-06-04 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.696315, 'End_Lon': -73.996403, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719235, 'Start_Lon': -74.002115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-29 20:57:00', 'Trip_Pickup_DateTime': '2009-06-29 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75043, 'End_Lon': -73.975613, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767772, 'Start_Lon': -73.96426, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-30 10:17:00', 'Trip_Pickup_DateTime': '2009-06-30 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765233, 'End_Lon': -73.97722, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741393, 'Start_Lon': -74.00633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-29 16:33:00', 'Trip_Pickup_DateTime': '2009-06-29 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747693, 'End_Lon': -73.996933, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73714, 'Start_Lon': -73.990412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-02 20:27:00', 'Trip_Pickup_DateTime': '2009-06-02 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762452, 'End_Lon': -73.96799, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767683, 'Start_Lon': -73.962217, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-12 09:23:00', 'Trip_Pickup_DateTime': '2009-06-12 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722605, 'End_Lon': -74.009625, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736378, 'Start_Lon': -73.988663, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-29 19:48:00', 'Trip_Pickup_DateTime': '2009-06-29 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750402, 'End_Lon': -73.981113, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742048, 'Start_Lon': -73.996852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-04 11:57:00', 'Trip_Pickup_DateTime': '2009-06-04 11:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757588, 'End_Lon': -74.000248, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711418, 'Start_Lon': -74.015865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.59, 'Trip_Dropoff_DateTime': '2009-06-29 14:55:00', 'Trip_Pickup_DateTime': '2009-06-29 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.646385, 'End_Lon': -73.988083, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.639923, 'Start_Lon': -73.980892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-30 12:04:00', 'Trip_Pickup_DateTime': '2009-06-30 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678698, 'End_Lon': -73.986237, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769057, 'Start_Lon': -73.862798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.0, 'Trip_Distance': 11.6, 'Trip_Dropoff_DateTime': '2009-06-30 22:10:00', 'Trip_Pickup_DateTime': '2009-06-30 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750173, 'End_Lon': -73.991212, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769902, 'Start_Lon': -73.954037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-30 20:06:00', 'Trip_Pickup_DateTime': '2009-06-30 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74821, 'End_Lon': -73.990092, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711303, 'Start_Lon': -74.015902, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.83, 'Trip_Dropoff_DateTime': '2009-06-07 22:52:00', 'Trip_Pickup_DateTime': '2009-06-07 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743752, 'End_Lon': -73.98804, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771073, 'Start_Lon': -73.961692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-30 08:22:00', 'Trip_Pickup_DateTime': '2009-06-30 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766812, 'End_Lon': -73.97839, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738582, 'Start_Lon': -73.999602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-30 14:28:00', 'Trip_Pickup_DateTime': '2009-06-30 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766443, 'End_Lon': -73.960872, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761842, 'Start_Lon': -73.965183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-04 20:10:00', 'Trip_Pickup_DateTime': '2009-06-04 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-30 17:48:00', 'Trip_Pickup_DateTime': '2009-06-30 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772698, 'End_Lon': -73.94561, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782683, 'Start_Lon': -73.95539, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-04 07:33:00', 'Trip_Pickup_DateTime': '2009-06-04 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678635, 'End_Lon': -73.872507, 'Fare_Amt': 17.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644758, 'Start_Lon': -73.781862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 7.1, 'Trip_Dropoff_DateTime': '2009-06-29 23:29:00', 'Trip_Pickup_DateTime': '2009-06-29 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.80641, 'End_Lon': -73.964708, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791747, 'Start_Lon': -73.973055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-30 16:31:00', 'Trip_Pickup_DateTime': '2009-06-30 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779277, 'End_Lon': -73.962288, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753323, 'Start_Lon': -73.979388, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-30 12:28:00', 'Trip_Pickup_DateTime': '2009-06-30 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752052, 'End_Lon': -73.979625, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751937, 'Start_Lon': -73.978083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-29 20:14:00', 'Trip_Pickup_DateTime': '2009-06-29 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720138, 'End_Lon': -73.999258, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758932, 'Start_Lon': -73.985792, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-29 23:10:00', 'Trip_Pickup_DateTime': '2009-06-29 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76298, 'End_Lon': -73.988548, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743195, 'Start_Lon': -73.992695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-10 13:50:00', 'Trip_Pickup_DateTime': '2009-06-10 13:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753537, 'End_Lon': -73.977692, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764427, 'Start_Lon': -73.97724, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.1, 'Trip_Dropoff_DateTime': '2009-06-30 18:05:00', 'Trip_Pickup_DateTime': '2009-06-30 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74426, 'End_Lon': -73.981293, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75866, 'Start_Lon': -73.972208, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-29 21:53:00', 'Trip_Pickup_DateTime': '2009-06-29 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752738, 'End_Lon': -73.975017, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773525, 'Start_Lon': -73.959555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-30 09:57:00', 'Trip_Pickup_DateTime': '2009-06-30 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7822, 'End_Lon': -73.975342, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752903, 'Start_Lon': -73.97439, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-30 23:35:00', 'Trip_Pickup_DateTime': '2009-06-30 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774243, 'End_Lon': -73.965203, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758472, 'Start_Lon': -73.962882, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-30 09:21:00', 'Trip_Pickup_DateTime': '2009-06-30 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753633, 'End_Lon': -73.982295, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759233, 'Start_Lon': -73.962375, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-24 10:45:00', 'Trip_Pickup_DateTime': '2009-06-24 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761858, 'End_Lon': -73.993888, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75151, 'Start_Lon': -73.975725, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-23 21:22:00', 'Trip_Pickup_DateTime': '2009-06-23 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742642, 'End_Lon': -73.996257, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733442, 'Start_Lon': -73.987017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-16 19:28:00', 'Trip_Pickup_DateTime': '2009-06-16 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777575, 'End_Lon': -73.960745, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767568, 'Start_Lon': -73.96203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-23 07:24:00', 'Trip_Pickup_DateTime': '2009-06-23 07:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772847, 'End_Lon': -73.961482, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76171, 'Start_Lon': -73.976167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-24 23:05:00', 'Trip_Pickup_DateTime': '2009-06-24 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778467, 'End_Lon': -73.95695, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732937, 'Start_Lon': -73.999973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.27, 'Trip_Dropoff_DateTime': '2009-06-11 01:16:00', 'Trip_Pickup_DateTime': '2009-06-11 01:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75516, 'End_Lon': -73.993007, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777305, 'Start_Lon': -73.97889, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-24 09:02:00', 'Trip_Pickup_DateTime': '2009-06-24 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705385, 'End_Lon': -74.017157, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761423, 'Start_Lon': -73.96625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.1, 'Trip_Distance': 6.92, 'Trip_Dropoff_DateTime': '2009-06-23 18:13:00', 'Trip_Pickup_DateTime': '2009-06-23 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765903, 'End_Lon': -73.979765, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783652, 'Start_Lon': -73.95887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-23 09:46:00', 'Trip_Pickup_DateTime': '2009-06-23 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746098, 'End_Lon': -73.98415, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742373, 'Start_Lon': -73.993323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-28 15:37:00', 'Trip_Pickup_DateTime': '2009-06-28 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761548, 'End_Lon': -73.917533, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756665, 'Start_Lon': -73.981857, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 4.5, 'Trip_Dropoff_DateTime': '2009-06-22 23:23:00', 'Trip_Pickup_DateTime': '2009-06-22 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756175, 'End_Lon': -73.989358, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76665, 'Start_Lon': -73.982965, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-24 16:33:00', 'Trip_Pickup_DateTime': '2009-06-24 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750278, 'End_Lon': -73.976508, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75212, 'Start_Lon': -73.993613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-08 12:59:00', 'Trip_Pickup_DateTime': '2009-06-08 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780102, 'End_Lon': -73.950148, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.807553, 'Start_Lon': -73.964238, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-23 21:18:00', 'Trip_Pickup_DateTime': '2009-06-23 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748437, 'End_Lon': -73.988527, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75953, 'Start_Lon': -73.973167, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-25 23:31:00', 'Trip_Pickup_DateTime': '2009-06-25 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75693, 'End_Lon': -73.990103, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740255, 'Start_Lon': -74.005873, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-22 21:52:00', 'Trip_Pickup_DateTime': '2009-06-22 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748347, 'End_Lon': -73.988335, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760512, 'Start_Lon': -73.97602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-22 18:55:00', 'Trip_Pickup_DateTime': '2009-06-22 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733773, 'End_Lon': -73.9993, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724565, 'Start_Lon': -73.997167, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-25 14:30:00', 'Trip_Pickup_DateTime': '2009-06-25 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772485, 'End_Lon': -73.96269, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754102, 'Start_Lon': -73.978248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-22 19:17:00', 'Trip_Pickup_DateTime': '2009-06-22 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77507, 'End_Lon': -73.948847, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760837, 'Start_Lon': -73.990927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-24 00:15:00', 'Trip_Pickup_DateTime': '2009-06-23 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713403, 'End_Lon': -73.992083, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761675, 'Start_Lon': -73.983603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.9, 'Trip_Distance': 4.75, 'Trip_Dropoff_DateTime': '2009-06-23 18:25:00', 'Trip_Pickup_DateTime': '2009-06-23 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742858, 'End_Lon': -74.0077, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748162, 'Start_Lon': -73.993137, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-27 21:14:00', 'Trip_Pickup_DateTime': '2009-06-27 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762703, 'End_Lon': -73.987583, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760578, 'Start_Lon': -73.958292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-23 19:05:00', 'Trip_Pickup_DateTime': '2009-06-23 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756697, 'End_Lon': -73.982428, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745297, 'Start_Lon': -73.990978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-23 13:32:00', 'Trip_Pickup_DateTime': '2009-06-23 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759627, 'End_Lon': -73.968787, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765918, 'Start_Lon': -73.976053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-25 10:39:00', 'Trip_Pickup_DateTime': '2009-06-25 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772785, 'End_Lon': -73.956035, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782562, 'Start_Lon': -73.953322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-29 20:10:00', 'Trip_Pickup_DateTime': '2009-06-29 20:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756488, 'End_Lon': -73.971788, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761793, 'Start_Lon': -73.978385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-23 10:14:00', 'Trip_Pickup_DateTime': '2009-06-23 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725288, 'End_Lon': -73.989027, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727163, 'Start_Lon': -74.000607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-30 21:40:00', 'Trip_Pickup_DateTime': '2009-06-30 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719448, 'End_Lon': -74.000367, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725973, 'Start_Lon': -73.991942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-22 22:07:00', 'Trip_Pickup_DateTime': '2009-06-22 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747137, 'End_Lon': -73.99429, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75725, 'Start_Lon': -73.984735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-23 14:49:00', 'Trip_Pickup_DateTime': '2009-06-23 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758512, 'End_Lon': -74.000118, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7612, 'Start_Lon': -73.986777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-17 08:02:00', 'Trip_Pickup_DateTime': '2009-06-17 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80111, 'End_Lon': -73.961367, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78444, 'Start_Lon': -73.973732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-30 18:43:00', 'Trip_Pickup_DateTime': '2009-06-30 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760863, 'End_Lon': -73.979428, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75587, 'Start_Lon': -73.991092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-23 06:27:00', 'Trip_Pickup_DateTime': '2009-06-23 06:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767052, 'End_Lon': -73.954137, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7729, 'Start_Lon': -73.955418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-22 17:45:00', 'Trip_Pickup_DateTime': '2009-06-22 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782177, 'End_Lon': -73.943442, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773897, 'Start_Lon': -73.948568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-28 01:12:00', 'Trip_Pickup_DateTime': '2009-06-28 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749897, 'End_Lon': -73.977208, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780825, 'Start_Lon': -73.949562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-27 12:18:00', 'Trip_Pickup_DateTime': '2009-06-27 12:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745863, 'End_Lon': -73.889508, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75713, 'Start_Lon': -73.934473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-07 08:19:00', 'Trip_Pickup_DateTime': '2009-06-07 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753827, 'End_Lon': -73.976843, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76874, 'Start_Lon': -73.988152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-22 11:35:00', 'Trip_Pickup_DateTime': '2009-06-22 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770643, 'End_Lon': -73.951463, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763065, 'Start_Lon': -73.961477, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-23 13:00:00', 'Trip_Pickup_DateTime': '2009-06-23 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787303, 'End_Lon': -73.967838, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773438, 'Start_Lon': -73.945882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-02 08:15:00', 'Trip_Pickup_DateTime': '2009-06-02 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767967, 'End_Lon': -73.96631, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781982, 'Start_Lon': -73.960085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-10 15:58:00', 'Trip_Pickup_DateTime': '2009-06-10 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800998, 'End_Lon': -73.96539, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79192, 'Start_Lon': -73.971888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-04 19:44:00', 'Trip_Pickup_DateTime': '2009-06-04 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.849138, 'End_Lon': -73.941233, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646783, 'Start_Lon': -73.778048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 30.76, 'Trip_Dropoff_DateTime': '2009-06-22 15:03:00', 'Trip_Pickup_DateTime': '2009-06-22 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744247, 'End_Lon': -73.985958, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760998, 'Start_Lon': -73.966435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-22 14:11:00', 'Trip_Pickup_DateTime': '2009-06-22 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758488, 'End_Lon': -73.965645, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764822, 'Start_Lon': -73.980347, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-02 18:51:00', 'Trip_Pickup_DateTime': '2009-06-02 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749768, 'End_Lon': -73.993197, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744227, 'Start_Lon': -73.991715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-07 15:34:00', 'Trip_Pickup_DateTime': '2009-06-07 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761025, 'End_Lon': -73.961633, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7711, 'Start_Lon': -73.956583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-04 17:23:00', 'Trip_Pickup_DateTime': '2009-06-04 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.815665, 'End_Lon': -73.936958, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.794475, 'Start_Lon': -73.972178, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-27 03:09:00', 'Trip_Pickup_DateTime': '2009-06-27 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75073, 'End_Lon': -73.994413, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732278, 'Start_Lon': -74.003507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-27 17:28:00', 'Trip_Pickup_DateTime': '2009-06-27 17:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761992, 'End_Lon': -73.968215, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768352, 'Start_Lon': -73.985067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-27 10:32:00', 'Trip_Pickup_DateTime': '2009-06-27 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718377, 'End_Lon': -73.986953, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768833, 'Start_Lon': -73.862767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.5, 'Trip_Distance': 9.93, 'Trip_Dropoff_DateTime': '2009-06-03 17:57:00', 'Trip_Pickup_DateTime': '2009-06-03 17:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780583, 'End_Lon': -73.948422, 'Fare_Amt': 17.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741938, 'Start_Lon': -73.992972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 5.64, 'Trip_Dropoff_DateTime': '2009-06-03 23:56:00', 'Trip_Pickup_DateTime': '2009-06-03 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74377, 'End_Lon': -74.006273, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7487, 'Start_Lon': -74.003203, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-07 02:33:00', 'Trip_Pickup_DateTime': '2009-06-07 02:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782222, 'End_Lon': -73.97905, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785515, 'Start_Lon': -73.973087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-02 15:10:00', 'Trip_Pickup_DateTime': '2009-06-02 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752258, 'End_Lon': -73.980398, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786262, 'Start_Lon': -73.95668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-23 14:10:00', 'Trip_Pickup_DateTime': '2009-06-23 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77812, 'End_Lon': -73.9625, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767602, 'Start_Lon': -73.98108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-05 15:05:00', 'Trip_Pickup_DateTime': '2009-06-05 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776053, 'End_Lon': -73.990137, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752505, 'Start_Lon': -73.9931, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-26 23:59:00', 'Trip_Pickup_DateTime': '2009-06-26 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760342, 'End_Lon': -73.98753, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752488, 'Start_Lon': -73.984593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-27 19:45:00', 'Trip_Pickup_DateTime': '2009-06-27 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745433, 'End_Lon': -73.982713, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765265, 'Start_Lon': -73.982987, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-26 19:30:00', 'Trip_Pickup_DateTime': '2009-06-26 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721587, 'End_Lon': -73.995595, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741512, 'Start_Lon': -73.997587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-27 10:44:00', 'Trip_Pickup_DateTime': '2009-06-27 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774363, 'End_Lon': -73.948495, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762025, 'Start_Lon': -73.962243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-28 01:07:00', 'Trip_Pickup_DateTime': '2009-06-28 01:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.797502, 'End_Lon': -73.960473, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799735, 'Start_Lon': -73.968127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-27 11:57:00', 'Trip_Pickup_DateTime': '2009-06-27 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762595, 'End_Lon': -73.97898, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7621, 'Start_Lon': -73.98612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-05 09:03:00', 'Trip_Pickup_DateTime': '2009-06-05 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754783, 'End_Lon': -73.97895, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751422, 'Start_Lon': -73.970963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-26 15:30:00', 'Trip_Pickup_DateTime': '2009-06-26 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751063, 'End_Lon': -73.99106, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729138, 'Start_Lon': -73.98129, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-26 23:12:00', 'Trip_Pickup_DateTime': '2009-06-26 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721372, 'End_Lon': -73.945445, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726112, 'Start_Lon': -74.0088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.15, 'Trip_Dropoff_DateTime': '2009-06-29 03:30:00', 'Trip_Pickup_DateTime': '2009-06-29 03:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743238, 'End_Lon': -73.985812, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778037, 'Start_Lon': -73.958785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-25 19:47:00', 'Trip_Pickup_DateTime': '2009-06-25 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761562, 'End_Lon': -73.976882, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758507, 'Start_Lon': -73.977907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-29 18:50:00', 'Trip_Pickup_DateTime': '2009-06-29 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736567, 'End_Lon': -73.978077, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769915, 'Start_Lon': -73.984848, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-03 12:58:00', 'Trip_Pickup_DateTime': '2009-06-03 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758875, 'End_Lon': -73.966307, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764885, 'Start_Lon': -73.966093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-26 18:55:00', 'Trip_Pickup_DateTime': '2009-06-26 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776487, 'End_Lon': -73.978763, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780547, 'Start_Lon': -73.976455, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-26 12:34:00', 'Trip_Pickup_DateTime': '2009-06-26 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75148, 'End_Lon': -73.978487, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73282, 'Start_Lon': -73.99085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-25 10:39:00', 'Trip_Pickup_DateTime': '2009-06-25 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762073, 'End_Lon': -73.990128, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775823, 'Start_Lon': -73.979878, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-28 13:28:00', 'Trip_Pickup_DateTime': '2009-06-28 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758673, 'End_Lon': -73.976242, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77533, 'Start_Lon': -73.947637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-25 10:42:00', 'Trip_Pickup_DateTime': '2009-06-25 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759912, 'End_Lon': -73.9902, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760557, 'Start_Lon': -73.973585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-30 19:46:00', 'Trip_Pickup_DateTime': '2009-06-30 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7354, 'End_Lon': -73.988948, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741043, 'Start_Lon': -73.985622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-25 16:10:00', 'Trip_Pickup_DateTime': '2009-06-25 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760993, 'End_Lon': -73.987212, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.730243, 'Start_Lon': -74.004643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-30 04:55:02', 'Trip_Pickup_DateTime': '2009-06-30 04:47:21', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75537, 'End_Lon': -73.975275, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73986, 'Start_Lon': -73.986608, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-26 09:50:00', 'Trip_Pickup_DateTime': '2009-06-26 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752108, 'End_Lon': -73.97013, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775815, 'Start_Lon': -73.94413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-10 15:37:00', 'Trip_Pickup_DateTime': '2009-06-10 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706253, 'End_Lon': -74.016633, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707358, 'Start_Lon': -74.004397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-26 14:42:00', 'Trip_Pickup_DateTime': '2009-06-26 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743075, 'End_Lon': -74.003797, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75786, 'Start_Lon': -73.993098, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-26 21:47:00', 'Trip_Pickup_DateTime': '2009-06-26 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704413, 'End_Lon': -74.00948, 'Fare_Amt': 33.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77119, 'Start_Lon': -73.864467, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.85, 'Trip_Distance': 15.5, 'Trip_Dropoff_DateTime': '2009-06-08 12:55:00', 'Trip_Pickup_DateTime': '2009-06-08 12:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73722, 'End_Lon': -73.979538, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71113, 'Start_Lon': -73.960858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-06 07:37:00', 'Trip_Pickup_DateTime': '2009-06-06 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744105, 'End_Lon': -73.989047, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76025, 'Start_Lon': -73.975962, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-02 09:13:00', 'Trip_Pickup_DateTime': '2009-06-02 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757133, 'End_Lon': -73.987038, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757938, 'Start_Lon': -74.000608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-26 19:09:00', 'Trip_Pickup_DateTime': '2009-06-26 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743793, 'End_Lon': -73.981448, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75753, 'Start_Lon': -73.982438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-24 20:47:00', 'Trip_Pickup_DateTime': '2009-06-24 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778938, 'End_Lon': -73.954945, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763377, 'Start_Lon': -73.959242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-25 13:42:00', 'Trip_Pickup_DateTime': '2009-06-25 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739643, 'End_Lon': -74.002122, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733438, 'Start_Lon': -73.987375, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-02 23:46:00', 'Trip_Pickup_DateTime': '2009-06-02 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737398, 'End_Lon': -73.978107, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766692, 'Start_Lon': -73.965025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-23 13:47:00', 'Trip_Pickup_DateTime': '2009-06-23 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67336, 'End_Lon': -73.986078, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.653835, 'Start_Lon': -74.004768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-24 12:47:00', 'Trip_Pickup_DateTime': '2009-06-24 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729895, 'End_Lon': -73.983545, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715138, 'Start_Lon': -73.992803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-25 17:37:00', 'Trip_Pickup_DateTime': '2009-06-25 17:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76446, 'End_Lon': -73.980252, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781985, 'Start_Lon': -73.979138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-26 11:57:00', 'Trip_Pickup_DateTime': '2009-06-26 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797003, 'End_Lon': -73.96948, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770378, 'Start_Lon': -73.987727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-23 12:05:00', 'Trip_Pickup_DateTime': '2009-06-23 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738868, 'End_Lon': -73.982963, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75732, 'Start_Lon': -73.966513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-04 13:11:00', 'Trip_Pickup_DateTime': '2009-06-04 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735002, 'End_Lon': -74.009887, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734975, 'Start_Lon': -73.998627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-24 13:19:00', 'Trip_Pickup_DateTime': '2009-06-24 13:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727185, 'End_Lon': -73.980667, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727098, 'Start_Lon': -74.005513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-14 03:41:00', 'Trip_Pickup_DateTime': '2009-06-14 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753178, 'End_Lon': -73.971352, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734532, 'Start_Lon': -74.006192, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-23 20:55:00', 'Trip_Pickup_DateTime': '2009-06-23 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755375, 'End_Lon': -73.964332, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737925, 'Start_Lon': -73.99233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-23 17:08:00', 'Trip_Pickup_DateTime': '2009-06-23 16:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759287, 'End_Lon': -73.975102, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750245, 'Start_Lon': -73.991518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-24 08:24:00', 'Trip_Pickup_DateTime': '2009-06-24 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800402, 'End_Lon': -73.967912, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741327, 'Start_Lon': -73.993947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.1, 'Trip_Distance': 5.02, 'Trip_Dropoff_DateTime': '2009-06-24 20:06:00', 'Trip_Pickup_DateTime': '2009-06-24 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762767, 'End_Lon': -73.965983, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751682, 'Start_Lon': -73.990577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-05 15:02:00', 'Trip_Pickup_DateTime': '2009-06-05 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76143, 'End_Lon': -73.98152, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751238, 'Start_Lon': -73.994233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-30 06:14:00', 'Trip_Pickup_DateTime': '2009-06-30 06:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732587, 'End_Lon': -73.98527, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732492, 'Start_Lon': -74.000473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-24 18:44:00', 'Trip_Pickup_DateTime': '2009-06-24 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767163, 'End_Lon': -73.954302, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781182, 'Start_Lon': -73.954388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-22 16:08:00', 'Trip_Pickup_DateTime': '2009-06-22 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751342, 'End_Lon': -73.977852, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725313, 'Start_Lon': -73.982875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-05 05:55:00', 'Trip_Pickup_DateTime': '2009-06-05 05:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760628, 'End_Lon': -73.965773, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749817, 'Start_Lon': -73.981713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-14 14:33:00', 'Trip_Pickup_DateTime': '2009-06-14 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77029, 'End_Lon': -73.864825, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784557, 'Start_Lon': -73.946832, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.85, 'Trip_Distance': 8.32, 'Trip_Dropoff_DateTime': '2009-06-28 11:03:00', 'Trip_Pickup_DateTime': '2009-06-28 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764908, 'End_Lon': -73.967047, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762712, 'Start_Lon': -73.98643, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-07 14:20:00', 'Trip_Pickup_DateTime': '2009-06-07 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78843, 'End_Lon': -73.976278, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733185, 'Start_Lon': -74.00305, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 5.09, 'Trip_Dropoff_DateTime': '2009-06-26 23:50:00', 'Trip_Pickup_DateTime': '2009-06-26 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744957, 'End_Lon': -73.993573, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761282, 'Start_Lon': -73.974802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-29 18:48:00', 'Trip_Pickup_DateTime': '2009-06-29 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72487, 'End_Lon': -73.997422, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732422, 'Start_Lon': -74.000407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-22 15:31:00', 'Trip_Pickup_DateTime': '2009-06-22 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794933, 'End_Lon': -73.971848, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.816808, 'Start_Lon': -73.959297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-28 17:11:00', 'Trip_Pickup_DateTime': '2009-06-28 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769367, 'End_Lon': -73.98513, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758498, 'Start_Lon': -73.977368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-27 17:59:00', 'Trip_Pickup_DateTime': '2009-06-27 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76479, 'End_Lon': -73.981123, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.793658, 'Start_Lon': -73.963317, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-25 19:58:00', 'Trip_Pickup_DateTime': '2009-06-25 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766745, 'End_Lon': -73.921135, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731498, 'Start_Lon': -73.982588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.97, 'Trip_Dropoff_DateTime': '2009-06-06 01:55:00', 'Trip_Pickup_DateTime': '2009-06-06 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752717, 'End_Lon': -73.996643, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764342, 'Start_Lon': -73.992208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-25 15:41:00', 'Trip_Pickup_DateTime': '2009-06-25 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762488, 'End_Lon': -73.982495, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741335, 'Start_Lon': -74.005127, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-24 21:16:00', 'Trip_Pickup_DateTime': '2009-06-24 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718523, 'End_Lon': -74.005057, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710922, 'Start_Lon': -74.008948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-25 18:11:00', 'Trip_Pickup_DateTime': '2009-06-25 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751307, 'End_Lon': -74.00686, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724815, 'Start_Lon': -73.995562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-25 10:19:00', 'Trip_Pickup_DateTime': '2009-06-25 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 27.5, 'Trip_Distance': 9.57, 'Trip_Dropoff_DateTime': '2009-06-28 16:55:00', 'Trip_Pickup_DateTime': '2009-06-28 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.675957, 'End_Lon': -73.999027, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.680565, 'Start_Lon': -73.974683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-07 12:27:00', 'Trip_Pickup_DateTime': '2009-06-07 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645637, 'End_Lon': -73.776277, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773925, 'Start_Lon': -73.98217, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 21.44, 'Trip_Dropoff_DateTime': '2009-06-29 05:17:00', 'Trip_Pickup_DateTime': '2009-06-29 04:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750028, 'End_Lon': -73.995123, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754763, 'Start_Lon': -73.986878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-03 15:39:00', 'Trip_Pickup_DateTime': '2009-06-03 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74433, 'End_Lon': -73.999088, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739633, 'Start_Lon': -73.98672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-08 09:39:00', 'Trip_Pickup_DateTime': '2009-06-08 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73974, 'End_Lon': -74.000135, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73785, 'Start_Lon': -73.983037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-25 22:55:00', 'Trip_Pickup_DateTime': '2009-06-25 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773602, 'End_Lon': -73.955605, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762427, 'Start_Lon': -73.96594, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-07 13:09:00', 'Trip_Pickup_DateTime': '2009-06-07 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745247, 'End_Lon': -73.997968, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7241, 'Start_Lon': -73.987922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-24 23:13:00', 'Trip_Pickup_DateTime': '2009-06-24 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713915, 'End_Lon': -74.01176, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721347, 'Start_Lon': -74.009915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-06 19:59:00', 'Trip_Pickup_DateTime': '2009-06-06 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749995, 'End_Lon': -73.977108, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729743, 'Start_Lon': -73.986908, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-28 01:56:00', 'Trip_Pickup_DateTime': '2009-06-28 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764947, 'End_Lon': -73.975848, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752015, 'Start_Lon': -74.004665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-29 02:45:00', 'Trip_Pickup_DateTime': '2009-06-29 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772747, 'End_Lon': -73.981982, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719168, 'Start_Lon': -74.008895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.21, 'Trip_Dropoff_DateTime': '2009-06-25 23:34:00', 'Trip_Pickup_DateTime': '2009-06-25 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763213, 'End_Lon': -73.99125, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733897, 'Start_Lon': -73.99938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-04 05:56:00', 'Trip_Pickup_DateTime': '2009-06-04 05:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782112, 'End_Lon': -73.957823, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76354, 'Start_Lon': -73.969345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-04 19:47:00', 'Trip_Pickup_DateTime': '2009-06-04 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736852, 'End_Lon': -74.006127, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724397, 'Start_Lon': -73.996495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-24 17:19:00', 'Trip_Pickup_DateTime': '2009-06-24 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.68563, 'End_Lon': -73.932643, 'Fare_Amt': 33.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739937, 'Start_Lon': -74.005577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 34.7, 'Trip_Distance': 10.18, 'Trip_Dropoff_DateTime': '2009-06-24 19:41:00', 'Trip_Pickup_DateTime': '2009-06-24 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76041, 'End_Lon': -73.991582, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766338, 'Start_Lon': -73.969358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-27 19:12:00', 'Trip_Pickup_DateTime': '2009-06-27 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763678, 'End_Lon': -73.982415, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794717, 'Start_Lon': -73.973763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-28 10:41:00', 'Trip_Pickup_DateTime': '2009-06-28 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.621817, 'End_Lon': -74.005245, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.636588, 'Start_Lon': -74.025697, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-27 03:00:00', 'Trip_Pickup_DateTime': '2009-06-27 02:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77699, 'End_Lon': -73.949493, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791665, 'Start_Lon': -73.971988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-30 00:50:00', 'Trip_Pickup_DateTime': '2009-06-30 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72247, 'End_Lon': -73.987415, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715258, 'Start_Lon': -74.002093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-26 13:59:00', 'Trip_Pickup_DateTime': '2009-06-26 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75973, 'End_Lon': -73.981857, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747048, 'Start_Lon': -74.004488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-27 15:11:00', 'Trip_Pickup_DateTime': '2009-06-27 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733433, 'End_Lon': -74.004022, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743977, 'Start_Lon': -73.995957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-24 12:33:00', 'Trip_Pickup_DateTime': '2009-06-24 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772682, 'End_Lon': -73.947345, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752877, 'Start_Lon': -73.98218, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-04 16:06:00', 'Trip_Pickup_DateTime': '2009-06-04 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721567, 'End_Lon': -73.987612, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727862, 'Start_Lon': -73.99114, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-26 00:37:00', 'Trip_Pickup_DateTime': '2009-06-26 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770522, 'End_Lon': -73.960182, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780718, 'Start_Lon': -73.984008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-22 16:08:00', 'Trip_Pickup_DateTime': '2009-06-22 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7541, 'End_Lon': -73.980555, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7541, 'Start_Lon': -73.980555, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-28 02:35:00', 'Trip_Pickup_DateTime': '2009-06-28 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.691023, 'End_Lon': -73.947995, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744273, 'Start_Lon': -73.995955, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 6.1, 'Trip_Dropoff_DateTime': '2009-06-28 00:17:00', 'Trip_Pickup_DateTime': '2009-06-27 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771078, 'End_Lon': -73.949393, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761363, 'Start_Lon': -73.969847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-26 11:16:00', 'Trip_Pickup_DateTime': '2009-06-26 11:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790412, 'End_Lon': -73.945693, 'Fare_Amt': 24.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.848798, 'Start_Lon': -73.937383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.9, 'Trip_Distance': 5.32, 'Trip_Dropoff_DateTime': '2009-06-14 19:57:00', 'Trip_Pickup_DateTime': '2009-06-14 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757127, 'End_Lon': -73.976665, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763822, 'Start_Lon': -73.98237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-25 12:36:00', 'Trip_Pickup_DateTime': '2009-06-25 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789465, 'End_Lon': -73.96619, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769288, 'Start_Lon': -73.954895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-23 12:29:00', 'Trip_Pickup_DateTime': '2009-06-23 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70632, 'End_Lon': -74.00327, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745678, 'Start_Lon': -73.98646, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-24 13:19:00', 'Trip_Pickup_DateTime': '2009-06-24 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733417, 'End_Lon': -73.999827, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719143, 'Start_Lon': -74.005097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-03 19:54:00', 'Trip_Pickup_DateTime': '2009-06-03 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761753, 'End_Lon': -73.959698, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705087, 'Start_Lon': -74.007653, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 5.64, 'Trip_Dropoff_DateTime': '2009-06-08 15:36:00', 'Trip_Pickup_DateTime': '2009-06-08 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717353, 'End_Lon': -74.013035, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741695, 'Start_Lon': -74.007015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-23 17:48:00', 'Trip_Pickup_DateTime': '2009-06-23 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780385, 'End_Lon': -73.957132, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732397, 'Start_Lon': -74.000462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.77, 'Trip_Dropoff_DateTime': '2009-06-08 13:41:00', 'Trip_Pickup_DateTime': '2009-06-08 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76996, 'End_Lon': -73.951477, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7835, 'Start_Lon': -73.952488, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-23 14:59:00', 'Trip_Pickup_DateTime': '2009-06-23 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781357, 'End_Lon': -73.979337, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79374, 'Start_Lon': -73.977745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-26 11:30:00', 'Trip_Pickup_DateTime': '2009-06-26 11:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783947, 'End_Lon': -73.97403, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.802695, 'Start_Lon': -73.963932, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-25 02:01:00', 'Trip_Pickup_DateTime': '2009-06-25 01:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745772, 'End_Lon': -73.994658, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76328, 'Start_Lon': -73.985918, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-23 21:23:00', 'Trip_Pickup_DateTime': '2009-06-23 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769765, 'End_Lon': -73.98831, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769765, 'Start_Lon': -73.98831, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-24 12:38:00', 'Trip_Pickup_DateTime': '2009-06-24 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754812, 'End_Lon': -73.984185, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740888, 'Start_Lon': -73.991938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-24 07:57:00', 'Trip_Pickup_DateTime': '2009-06-24 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77346, 'End_Lon': -73.951745, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751127, 'Start_Lon': -73.994057, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-23 22:15:00', 'Trip_Pickup_DateTime': '2009-06-23 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784235, 'End_Lon': -73.952432, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780227, 'Start_Lon': -73.975737, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-26 15:34:00', 'Trip_Pickup_DateTime': '2009-06-26 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707428, 'End_Lon': -73.943397, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7345, 'Start_Lon': -73.989672, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-24 03:07:00', 'Trip_Pickup_DateTime': '2009-06-24 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756032, 'End_Lon': -73.987115, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768887, 'Start_Lon': -73.862748, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 34.05, 'Trip_Distance': 12.01, 'Trip_Dropoff_DateTime': '2009-06-22 16:48:00', 'Trip_Pickup_DateTime': '2009-06-22 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732052, 'End_Lon': -74.003623, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702265, 'Start_Lon': -74.013073, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-25 18:10:00', 'Trip_Pickup_DateTime': '2009-06-25 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766762, 'End_Lon': -73.962148, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772312, 'Start_Lon': -73.95593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-23 21:54:00', 'Trip_Pickup_DateTime': '2009-06-23 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7702, 'End_Lon': -73.978048, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764043, 'Start_Lon': -73.967547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-24 15:50:00', 'Trip_Pickup_DateTime': '2009-06-24 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762898, 'End_Lon': -73.982155, 'Fare_Amt': 31.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77101, 'Start_Lon': -73.866557, 'Tip_Amt': 6.26, 'Tolls_Amt': 4.15, 'Total_Amt': 41.71, 'Trip_Distance': 12.91, 'Trip_Dropoff_DateTime': '2009-06-24 08:20:00', 'Trip_Pickup_DateTime': '2009-06-24 07:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759995, 'End_Lon': -73.991482, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771053, 'Start_Lon': -73.983583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-23 18:48:00', 'Trip_Pickup_DateTime': '2009-06-23 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756372, 'End_Lon': -73.981825, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.810832, 'Start_Lon': -73.962002, 'Tip_Amt': 3.46, 'Tolls_Amt': 0.0, 'Total_Amt': 20.76, 'Trip_Distance': 4.78, 'Trip_Dropoff_DateTime': '2009-06-25 13:02:00', 'Trip_Pickup_DateTime': '2009-06-25 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752753, 'End_Lon': -73.97109, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752753, 'Start_Lon': -73.97109, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-07 14:34:00', 'Trip_Pickup_DateTime': '2009-06-07 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76233, 'End_Lon': -73.968063, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768408, 'Start_Lon': -73.95558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-24 08:12:00', 'Trip_Pickup_DateTime': '2009-06-24 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750053, 'End_Lon': -73.994038, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707328, 'Start_Lon': -74.007128, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-24 22:15:00', 'Trip_Pickup_DateTime': '2009-06-24 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749433, 'End_Lon': -73.991795, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764175, 'Start_Lon': -73.988447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-23 21:47:00', 'Trip_Pickup_DateTime': '2009-06-23 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.795447, 'End_Lon': -73.97108, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785615, 'Start_Lon': -73.949878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-24 13:31:00', 'Trip_Pickup_DateTime': '2009-06-24 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733105, 'End_Lon': -73.995815, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72884, 'Start_Lon': -74.007023, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-24 10:05:00', 'Trip_Pickup_DateTime': '2009-06-24 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729202, 'End_Lon': -73.985243, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720288, 'Start_Lon': -74.008577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-25 19:04:00', 'Trip_Pickup_DateTime': '2009-06-25 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769603, 'End_Lon': -73.953785, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76954, 'Start_Lon': -73.961758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-13 22:48:00', 'Trip_Pickup_DateTime': '2009-06-13 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779977, 'End_Lon': -73.955237, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78083, 'Start_Lon': -73.95458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.07, 'Trip_Dropoff_DateTime': '2009-06-03 20:55:00', 'Trip_Pickup_DateTime': '2009-06-03 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7512, 'End_Lon': -73.984673, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760785, 'Start_Lon': -73.970597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-30 14:33:00', 'Trip_Pickup_DateTime': '2009-06-30 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736368, 'End_Lon': -74.043583, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750682, 'Start_Lon': -73.97467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-23 14:11:00', 'Trip_Pickup_DateTime': '2009-06-23 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724372, 'End_Lon': -73.996603, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743038, 'Start_Lon': -73.995855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-26 02:34:00', 'Trip_Pickup_DateTime': '2009-06-26 02:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754668, 'End_Lon': -73.92252, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763905, 'Start_Lon': -73.932557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-25 15:39:00', 'Trip_Pickup_DateTime': '2009-06-25 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763603, 'End_Lon': -73.975147, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755925, 'Start_Lon': -73.975628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-17 09:29:00', 'Trip_Pickup_DateTime': '2009-06-17 09:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734468, 'End_Lon': -74.005953, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773075, 'Start_Lon': -73.88537, 'Tip_Amt': 5.18, 'Tolls_Amt': 4.15, 'Total_Amt': 35.23, 'Trip_Distance': 9.75, 'Trip_Dropoff_DateTime': '2009-06-24 18:37:00', 'Trip_Pickup_DateTime': '2009-06-24 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73814, 'End_Lon': -74.002185, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752168, 'Start_Lon': -74.0045, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-19 12:27:00', 'Trip_Pickup_DateTime': '2009-06-19 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720408, 'End_Lon': -73.98491, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742042, 'Start_Lon': -73.990695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-22 17:45:00', 'Trip_Pickup_DateTime': '2009-06-22 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768632, 'End_Lon': -73.984105, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751068, 'Start_Lon': -73.974878, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-24 03:16:00', 'Trip_Pickup_DateTime': '2009-06-24 03:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748372, 'End_Lon': -73.984095, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775303, 'Start_Lon': -73.95588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-24 20:46:00', 'Trip_Pickup_DateTime': '2009-06-24 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76244, 'End_Lon': -73.98927, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74214, 'Start_Lon': -73.993292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-23 15:46:00', 'Trip_Pickup_DateTime': '2009-06-23 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777383, 'End_Lon': -73.963323, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736723, 'Start_Lon': -73.997407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 3.85, 'Trip_Dropoff_DateTime': '2009-06-25 16:23:00', 'Trip_Pickup_DateTime': '2009-06-25 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749125, 'End_Lon': -73.975268, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732635, 'Start_Lon': -73.981552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-25 08:44:00', 'Trip_Pickup_DateTime': '2009-06-25 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784288, 'End_Lon': -73.95128, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750408, 'Start_Lon': -73.98125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-24 16:56:00', 'Trip_Pickup_DateTime': '2009-06-24 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77604, 'End_Lon': -73.962297, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760528, 'Start_Lon': -73.968968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-22 19:09:00', 'Trip_Pickup_DateTime': '2009-06-22 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760393, 'End_Lon': -74.002875, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752403, 'Start_Lon': -73.989583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-19 12:40:00', 'Trip_Pickup_DateTime': '2009-06-19 12:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.823698, 'End_Lon': -73.941133, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769042, 'Start_Lon': -73.862893, 'Tip_Amt': 4.5, 'Tolls_Amt': 5.0, 'Total_Amt': 32.0, 'Trip_Distance': 8.51, 'Trip_Dropoff_DateTime': '2009-06-22 16:18:00', 'Trip_Pickup_DateTime': '2009-06-22 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75336, 'End_Lon': -73.969732, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787305, 'Start_Lon': -73.954052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-24 17:41:00', 'Trip_Pickup_DateTime': '2009-06-24 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701972, 'End_Lon': -74.009535, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725748, 'Start_Lon': -73.989838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-23 11:35:00', 'Trip_Pickup_DateTime': '2009-06-23 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709903, 'End_Lon': -74.010405, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.70984, 'Start_Lon': -74.010269, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 11:47:40', 'Trip_Pickup_DateTime': '2009-06-24 11:47:37', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.756909, 'End_Lon': -73.961131, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.766936, 'Start_Lon': -73.953859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-24 07:54:49', 'Trip_Pickup_DateTime': '2009-06-24 07:51:30', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.759832, 'End_Lon': -73.984674, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78691, 'Start_Lon': -73.979479, 'Tip_Amt': 1.46, 'Tolls_Amt': 0.0, 'Total_Amt': 8.76, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-23 07:25:01', 'Trip_Pickup_DateTime': '2009-06-23 07:17:30', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.776242, 'End_Lon': -73.952995, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764612, 'Start_Lon': -73.955223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-27 14:10:00', 'Trip_Pickup_DateTime': '2009-06-27 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776683, 'End_Lon': -73.955585, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745112, 'Start_Lon': -73.978475, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-29 07:48:00', 'Trip_Pickup_DateTime': '2009-06-29 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751755, 'End_Lon': -73.974832, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761342, 'Start_Lon': -73.9685, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-23 22:15:00', 'Trip_Pickup_DateTime': '2009-06-23 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771948, 'End_Lon': -73.967165, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769625, 'Start_Lon': -73.965727, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-23 20:35:00', 'Trip_Pickup_DateTime': '2009-06-23 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761817, 'End_Lon': -73.971523, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762033, 'Start_Lon': -73.9603, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-28 12:10:00', 'Trip_Pickup_DateTime': '2009-06-28 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754567, 'End_Lon': -73.977887, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730008, 'Start_Lon': -74.002108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-28 22:03:00', 'Trip_Pickup_DateTime': '2009-06-28 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74686, 'End_Lon': -73.972012, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762038, 'Start_Lon': -73.96811, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-23 18:25:00', 'Trip_Pickup_DateTime': '2009-06-23 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.823908, 'End_Lon': -73.941085, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73258, 'Start_Lon': -74.00031, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.39, 'Trip_Dropoff_DateTime': '2009-06-03 03:29:00', 'Trip_Pickup_DateTime': '2009-06-03 03:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768832, 'End_Lon': -73.918525, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72615, 'Start_Lon': -73.983803, 'Tip_Amt': 5.35, 'Tolls_Amt': 0.0, 'Total_Amt': 26.75, 'Trip_Distance': 6.6, 'Trip_Dropoff_DateTime': '2009-06-28 02:31:00', 'Trip_Pickup_DateTime': '2009-06-28 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773953, 'End_Lon': -73.956295, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767085, 'Start_Lon': -73.96629, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-08 16:24:00', 'Trip_Pickup_DateTime': '2009-06-08 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752475, 'End_Lon': -73.994335, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754102, 'Start_Lon': -73.997965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-23 18:37:00', 'Trip_Pickup_DateTime': '2009-06-23 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725332, 'End_Lon': -73.974753, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71317, 'Start_Lon': -73.998338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-24 20:31:00', 'Trip_Pickup_DateTime': '2009-06-24 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752992, 'End_Lon': -73.985312, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727193, 'Start_Lon': -74.000285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-23 18:58:00', 'Trip_Pickup_DateTime': '2009-06-23 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727487, 'End_Lon': -73.988532, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758712, 'Start_Lon': -73.985087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-25 01:20:00', 'Trip_Pickup_DateTime': '2009-06-25 01:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781198, 'End_Lon': -73.959273, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749898, 'Start_Lon': -73.981483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-04 11:03:00', 'Trip_Pickup_DateTime': '2009-06-04 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779553, 'End_Lon': -73.955532, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7806, 'Start_Lon': -73.946698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-25 12:04:00', 'Trip_Pickup_DateTime': '2009-06-25 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772943, 'End_Lon': -73.979983, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764732, 'Start_Lon': -73.984407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-05 16:34:00', 'Trip_Pickup_DateTime': '2009-06-05 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768452, 'End_Lon': -73.986142, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733572, 'Start_Lon': -73.999665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.94, 'Trip_Dropoff_DateTime': '2009-06-28 02:50:00', 'Trip_Pickup_DateTime': '2009-06-28 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756435, 'End_Lon': -73.972445, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764247, 'Start_Lon': -73.978163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-23 10:52:00', 'Trip_Pickup_DateTime': '2009-06-23 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730872, 'End_Lon': -73.990373, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724357, 'Start_Lon': -73.992885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-22 19:29:00', 'Trip_Pickup_DateTime': '2009-06-22 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735643, 'End_Lon': -73.977872, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731163, 'Start_Lon': -73.982657, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-27 13:44:00', 'Trip_Pickup_DateTime': '2009-06-27 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75297, 'End_Lon': -74.053097, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762925, 'Start_Lon': -74.0432, 'Tip_Amt': 4.15, 'Tolls_Amt': 0.0, 'Total_Amt': 20.75, 'Trip_Distance': 5.55, 'Trip_Dropoff_DateTime': '2009-06-24 21:35:00', 'Trip_Pickup_DateTime': '2009-06-24 21:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782088, 'End_Lon': -73.946293, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777273, 'Start_Lon': -73.955197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-22 20:09:00', 'Trip_Pickup_DateTime': '2009-06-22 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749818, 'End_Lon': -73.983912, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714667, 'Start_Lon': -74.016105, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-24 18:43:00', 'Trip_Pickup_DateTime': '2009-06-24 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746268, 'End_Lon': -73.981478, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785128, 'Start_Lon': -73.951427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-28 09:48:00', 'Trip_Pickup_DateTime': '2009-06-28 09:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.839495, 'End_Lon': -73.943253, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756047, 'Start_Lon': -73.998622, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.6, 'Trip_Distance': 7.36, 'Trip_Dropoff_DateTime': '2009-06-23 22:29:00', 'Trip_Pickup_DateTime': '2009-06-23 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804762, 'End_Lon': -73.938983, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776655, 'Start_Lon': -73.946622, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-26 08:28:00', 'Trip_Pickup_DateTime': '2009-06-26 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741658, 'End_Lon': -73.986308, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7612, 'Start_Lon': -73.968832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-22 15:07:00', 'Trip_Pickup_DateTime': '2009-06-22 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741048, 'End_Lon': -73.989927, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748667, 'Start_Lon': -73.978123, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-26 16:31:00', 'Trip_Pickup_DateTime': '2009-06-26 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714335, 'End_Lon': -74.000378, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773957, 'Start_Lon': -73.954422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.76, 'Trip_Dropoff_DateTime': '2009-06-26 09:57:00', 'Trip_Pickup_DateTime': '2009-06-26 09:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759583, 'End_Lon': -73.982213, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741138, 'Start_Lon': -73.997947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-26 13:27:00', 'Trip_Pickup_DateTime': '2009-06-26 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703898, 'End_Lon': -74.011378, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74538, 'Start_Lon': -73.975565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.69, 'Trip_Dropoff_DateTime': '2009-06-29 07:16:00', 'Trip_Pickup_DateTime': '2009-06-29 07:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783765, 'End_Lon': -73.971818, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760088, 'Start_Lon': -73.980485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-22 20:55:00', 'Trip_Pickup_DateTime': '2009-06-22 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762365, 'End_Lon': -73.98218, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728272, 'Start_Lon': -73.987942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-27 17:35:00', 'Trip_Pickup_DateTime': '2009-06-27 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770745, 'End_Lon': -73.865393, 'Fare_Amt': 36.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767343, 'Start_Lon': -73.996783, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 40.65, 'Trip_Distance': 12.94, 'Trip_Dropoff_DateTime': '2009-06-25 11:04:00', 'Trip_Pickup_DateTime': '2009-06-25 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729655, 'End_Lon': -74.001853, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729678, 'Start_Lon': -74.001485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-23 06:36:00', 'Trip_Pickup_DateTime': '2009-06-23 06:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738275, 'End_Lon': -73.989408, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751827, 'Start_Lon': -73.97077, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-27 08:46:00', 'Trip_Pickup_DateTime': '2009-06-27 08:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74948, 'End_Lon': -73.988262, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768712, 'Start_Lon': -73.987518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-23 10:03:00', 'Trip_Pickup_DateTime': '2009-06-23 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739197, 'End_Lon': -73.996952, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759402, 'Start_Lon': -73.985313, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-22 17:13:00', 'Trip_Pickup_DateTime': '2009-06-22 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762682, 'End_Lon': -73.987057, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762895, 'Start_Lon': -73.987505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-26 15:52:00', 'Trip_Pickup_DateTime': '2009-06-26 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.809783, 'End_Lon': -73.964078, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805317, 'Start_Lon': -73.965982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-24 01:14:00', 'Trip_Pickup_DateTime': '2009-06-24 01:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745235, 'End_Lon': -73.998227, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759122, 'Start_Lon': -73.96679, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-22 20:52:00', 'Trip_Pickup_DateTime': '2009-06-22 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718167, 'End_Lon': -73.999867, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.701042, 'Start_Lon': -73.991343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-24 16:35:00', 'Trip_Pickup_DateTime': '2009-06-24 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784307, 'End_Lon': -73.95693, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75274, 'Start_Lon': -73.98554, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-26 12:34:00', 'Trip_Pickup_DateTime': '2009-06-26 12:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722333, 'End_Lon': -74.009865, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764688, 'Start_Lon': -73.991707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-23 07:00:00', 'Trip_Pickup_DateTime': '2009-06-23 06:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.827392, 'End_Lon': -73.905743, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.823303, 'Start_Lon': -73.904675, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-23 17:32:00', 'Trip_Pickup_DateTime': '2009-06-23 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74455, 'End_Lon': -73.976013, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781182, 'Start_Lon': -73.956482, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-22 19:08:00', 'Trip_Pickup_DateTime': '2009-06-22 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687128, 'End_Lon': -73.96246, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.675108, 'Start_Lon': -73.984297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-27 20:29:00', 'Trip_Pickup_DateTime': '2009-06-27 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.821053, 'End_Lon': -73.950612, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717643, 'Start_Lon': -74.013693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.7, 'Trip_Distance': 8.66, 'Trip_Dropoff_DateTime': '2009-06-05 12:46:00', 'Trip_Pickup_DateTime': '2009-06-05 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786445, 'End_Lon': -73.953893, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76882, 'Start_Lon': -73.98183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-26 20:48:00', 'Trip_Pickup_DateTime': '2009-06-26 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.703453, 'End_Lon': -74.008123, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732857, 'Start_Lon': -74.00682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-23 06:52:00', 'Trip_Pickup_DateTime': '2009-06-23 06:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735388, 'End_Lon': -73.964737, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741342, 'Start_Lon': -73.959603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-27 03:37:00', 'Trip_Pickup_DateTime': '2009-06-27 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753855, 'End_Lon': -73.970675, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730602, 'Start_Lon': -73.99386, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-27 00:42:00', 'Trip_Pickup_DateTime': '2009-06-27 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777068, 'End_Lon': -73.977793, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774932, 'Start_Lon': -73.962828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-03 12:06:00', 'Trip_Pickup_DateTime': '2009-06-03 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749323, 'End_Lon': -73.97311, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748902, 'Start_Lon': -73.9881, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-06 20:44:00', 'Trip_Pickup_DateTime': '2009-06-06 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726528, 'End_Lon': -74.00443, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717488, 'Start_Lon': -74.01478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-24 10:40:00', 'Trip_Pickup_DateTime': '2009-06-24 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773882, 'End_Lon': -73.870577, 'Fare_Amt': 30.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782613, 'Start_Lon': -73.980482, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 34.25, 'Trip_Distance': 12.03, 'Trip_Dropoff_DateTime': '2009-06-06 08:38:00', 'Trip_Pickup_DateTime': '2009-06-06 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756747, 'End_Lon': -73.986087, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743695, 'Start_Lon': -73.97364, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-24 10:17:00', 'Trip_Pickup_DateTime': '2009-06-24 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795117, 'End_Lon': -73.948552, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804305, 'Start_Lon': -73.966615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-23 06:57:00', 'Trip_Pickup_DateTime': '2009-06-23 06:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703412, 'End_Lon': -74.0111, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737588, 'Start_Lon': -74.00519, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-04 22:43:00', 'Trip_Pickup_DateTime': '2009-06-04 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732758, 'End_Lon': -74.003267, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762733, 'Start_Lon': -73.978418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-04 19:12:00', 'Trip_Pickup_DateTime': '2009-06-04 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757743, 'End_Lon': -73.986242, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730967, 'Start_Lon': -73.988932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-22 23:05:00', 'Trip_Pickup_DateTime': '2009-06-22 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708225, 'End_Lon': -74.004693, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736365, 'Start_Lon': -73.989073, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 4.06, 'Trip_Dropoff_DateTime': '2009-06-26 18:32:00', 'Trip_Pickup_DateTime': '2009-06-26 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729158, 'End_Lon': -73.997848, 'Fare_Amt': 21.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776085, 'Start_Lon': -73.910855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 7.25, 'Trip_Dropoff_DateTime': '2009-06-27 00:43:00', 'Trip_Pickup_DateTime': '2009-06-27 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778707, 'End_Lon': -73.983693, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788608, 'Start_Lon': -73.97075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-23 00:15:00', 'Trip_Pickup_DateTime': '2009-06-23 00:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771323, 'End_Lon': -73.98224, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754097, 'Start_Lon': -73.987793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-22 15:10:00', 'Trip_Pickup_DateTime': '2009-06-22 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72149, 'End_Lon': -73.99779, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731827, 'Start_Lon': -73.985382, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-26 23:43:00', 'Trip_Pickup_DateTime': '2009-06-26 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74639, 'End_Lon': -73.981908, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753952, 'Start_Lon': -73.988247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-26 11:52:00', 'Trip_Pickup_DateTime': '2009-06-26 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733978, 'End_Lon': -73.986543, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72308, 'Start_Lon': -73.992918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-24 15:50:00', 'Trip_Pickup_DateTime': '2009-06-24 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.818117, 'End_Lon': -73.954408, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77372, 'Start_Lon': -73.870692, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.45, 'Trip_Distance': 7.53, 'Trip_Dropoff_DateTime': '2009-06-23 17:12:00', 'Trip_Pickup_DateTime': '2009-06-23 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739637, 'End_Lon': -73.98908, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744882, 'Start_Lon': -73.978855, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-26 09:44:00', 'Trip_Pickup_DateTime': '2009-06-26 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715608, 'End_Lon': -74.01518, 'Fare_Amt': 22.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764483, 'Start_Lon': -73.973617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 7.53, 'Trip_Dropoff_DateTime': '2009-06-26 11:42:00', 'Trip_Pickup_DateTime': '2009-06-26 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746307, 'End_Lon': -74.000808, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741538, 'Start_Lon': -73.97812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-23 19:52:00', 'Trip_Pickup_DateTime': '2009-06-23 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760535, 'End_Lon': -73.967808, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749057, 'Start_Lon': -73.97585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-08 06:56:00', 'Trip_Pickup_DateTime': '2009-06-08 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75837, 'End_Lon': -73.969128, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736302, 'Start_Lon': -73.993452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-17 09:28:00', 'Trip_Pickup_DateTime': '2009-06-17 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745372, 'End_Lon': -74.00845, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756932, 'Start_Lon': -73.993557, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 10.75, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-16 18:37:00', 'Trip_Pickup_DateTime': '2009-06-16 18:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749663, 'End_Lon': -73.981808, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735388, 'Start_Lon': -73.989668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-24 17:49:00', 'Trip_Pickup_DateTime': '2009-06-24 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645022, 'End_Lon': -73.776518, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.800347, 'Start_Lon': -73.958383, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 19.08, 'Trip_Dropoff_DateTime': '2009-06-26 07:48:00', 'Trip_Pickup_DateTime': '2009-06-26 07:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781943, 'End_Lon': -73.981368, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.868135, 'Start_Lon': -73.919967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 7.73, 'Trip_Dropoff_DateTime': '2009-06-27 18:28:00', 'Trip_Pickup_DateTime': '2009-06-27 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719103, 'End_Lon': -73.988003, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737113, 'Start_Lon': -74.000633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-22 16:45:00', 'Trip_Pickup_DateTime': '2009-06-22 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768057, 'End_Lon': -73.989968, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759192, 'Start_Lon': -73.995785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-27 21:27:00', 'Trip_Pickup_DateTime': '2009-06-27 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783675, 'End_Lon': -73.951622, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78217, 'Start_Lon': -73.957813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-25 17:59:00', 'Trip_Pickup_DateTime': '2009-06-25 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716318, 'End_Lon': -73.96149, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721417, 'Start_Lon': -74.000173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-22 19:45:00', 'Trip_Pickup_DateTime': '2009-06-22 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759837, 'End_Lon': -73.978887, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761395, 'Start_Lon': -73.968588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-17 10:33:00', 'Trip_Pickup_DateTime': '2009-06-17 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75218, 'End_Lon': -74.004508, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761892, 'Start_Lon': -73.998442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-19 14:06:00', 'Trip_Pickup_DateTime': '2009-06-19 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743142, 'End_Lon': -73.992643, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739668, 'Start_Lon': -73.982705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-28 08:47:00', 'Trip_Pickup_DateTime': '2009-06-28 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741037, 'End_Lon': -74.00558, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735275, 'Start_Lon': -73.991757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-03 21:52:00', 'Trip_Pickup_DateTime': '2009-06-03 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761635, 'End_Lon': -73.988187, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762618, 'Start_Lon': -73.96722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-26 17:29:00', 'Trip_Pickup_DateTime': '2009-06-26 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.63485, 'End_Lon': -74.020472, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730043, 'Start_Lon': -74.002295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 8.77, 'Trip_Dropoff_DateTime': '2009-06-06 03:14:00', 'Trip_Pickup_DateTime': '2009-06-06 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774087, 'End_Lon': -73.962987, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789233, 'Start_Lon': -73.954772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-26 19:34:00', 'Trip_Pickup_DateTime': '2009-06-26 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748822, 'End_Lon': -73.97974, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736153, 'Start_Lon': -73.98928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-26 16:13:00', 'Trip_Pickup_DateTime': '2009-06-26 16:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760915, 'End_Lon': -73.983233, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760287, 'Start_Lon': -73.961777, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-28 20:09:00', 'Trip_Pickup_DateTime': '2009-06-28 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757642, 'End_Lon': -73.982197, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778288, 'Start_Lon': -73.958875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-25 15:23:00', 'Trip_Pickup_DateTime': '2009-06-25 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763432, 'End_Lon': -73.970278, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755248, 'Start_Lon': -73.97591, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-28 00:54:00', 'Trip_Pickup_DateTime': '2009-06-28 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750262, 'End_Lon': -73.991233, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707522, 'Start_Lon': -74.012072, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-23 13:51:00', 'Trip_Pickup_DateTime': '2009-06-23 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76117, 'End_Lon': -73.93563, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76777, 'Start_Lon': -73.925462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-28 07:57:00', 'Trip_Pickup_DateTime': '2009-06-28 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760987, 'End_Lon': -73.971715, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763862, 'Start_Lon': -73.977813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-24 17:02:00', 'Trip_Pickup_DateTime': '2009-06-24 16:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741363, 'End_Lon': -73.979122, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746768, 'Start_Lon': -73.985708, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-26 20:49:00', 'Trip_Pickup_DateTime': '2009-06-26 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76856, 'End_Lon': -73.886525, 'Fare_Amt': 30.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.703248, 'Start_Lon': -74.010485, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.05, 'Trip_Distance': 14.09, 'Trip_Dropoff_DateTime': '2009-06-02 19:48:00', 'Trip_Pickup_DateTime': '2009-06-02 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770712, 'End_Lon': -73.962148, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780748, 'Start_Lon': -73.976283, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-25 12:13:00', 'Trip_Pickup_DateTime': '2009-06-25 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765265, 'End_Lon': -73.971433, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78166, 'Start_Lon': -73.956057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-25 18:45:00', 'Trip_Pickup_DateTime': '2009-06-25 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766895, 'End_Lon': -73.982442, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756817, 'Start_Lon': -73.971705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-27 22:17:00', 'Trip_Pickup_DateTime': '2009-06-27 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743155, 'End_Lon': -73.992623, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726488, 'Start_Lon': -74.005812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-04 02:19:00', 'Trip_Pickup_DateTime': '2009-06-04 02:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773193, 'End_Lon': -73.954522, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764628, 'Start_Lon': -73.958148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-26 12:50:00', 'Trip_Pickup_DateTime': '2009-06-26 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729387, 'End_Lon': -73.974975, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729387, 'Start_Lon': -73.974975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 5.65, 'Trip_Dropoff_DateTime': '2009-06-26 13:28:00', 'Trip_Pickup_DateTime': '2009-06-26 12:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72861, 'End_Lon': -73.984545, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644963, 'Start_Lon': -73.781208, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.64, 'Trip_Dropoff_DateTime': '2009-06-25 16:56:00', 'Trip_Pickup_DateTime': '2009-06-25 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749983, 'End_Lon': -73.979647, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754468, 'Start_Lon': -73.998982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-25 14:37:00', 'Trip_Pickup_DateTime': '2009-06-25 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732147, 'End_Lon': -73.984845, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73945, 'Start_Lon': -73.979475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-25 06:43:00', 'Trip_Pickup_DateTime': '2009-06-25 06:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737787, 'End_Lon': -74.004473, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756343, 'Start_Lon': -73.983952, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-25 12:57:00', 'Trip_Pickup_DateTime': '2009-06-25 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7499, 'End_Lon': -73.991757, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73292, 'Start_Lon': -73.990017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-27 10:48:00', 'Trip_Pickup_DateTime': '2009-06-27 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730963, 'End_Lon': -73.986005, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716358, 'Start_Lon': -73.987088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-25 14:42:00', 'Trip_Pickup_DateTime': '2009-06-25 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756603, 'End_Lon': -73.992512, 'Fare_Amt': 34.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774043, 'Start_Lon': -73.874493, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 38.25, 'Trip_Distance': 12.38, 'Trip_Dropoff_DateTime': '2009-06-25 11:47:00', 'Trip_Pickup_DateTime': '2009-06-25 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770007, 'End_Lon': -73.982418, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739753, 'Start_Lon': -73.995105, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-26 22:30:00', 'Trip_Pickup_DateTime': '2009-06-26 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756393, 'End_Lon': -74.001297, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742555, 'Start_Lon': -74.003258, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-29 09:07:00', 'Trip_Pickup_DateTime': '2009-06-29 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719413, 'End_Lon': -73.997503, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712965, 'Start_Lon': -74.00414, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-24 21:01:00', 'Trip_Pickup_DateTime': '2009-06-24 20:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757827, 'End_Lon': -73.987535, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761383, 'Start_Lon': -73.979247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-19 15:07:00', 'Trip_Pickup_DateTime': '2009-06-19 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702497, 'End_Lon': -74.01396, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765117, 'Start_Lon': -73.972968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 6.11, 'Trip_Dropoff_DateTime': '2009-06-25 12:06:00', 'Trip_Pickup_DateTime': '2009-06-25 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722357, 'End_Lon': -73.987085, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708183, 'Start_Lon': -74.011445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-22 16:00:00', 'Trip_Pickup_DateTime': '2009-06-22 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752012, 'End_Lon': -73.938728, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722982, 'Start_Lon': -73.979568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-27 03:39:00', 'Trip_Pickup_DateTime': '2009-06-27 03:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738837, 'End_Lon': -73.999388, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751595, 'Start_Lon': -74.007843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-25 22:26:00', 'Trip_Pickup_DateTime': '2009-06-25 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739977, 'End_Lon': -74.00712, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761352, 'Start_Lon': -73.997897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-17 11:57:00', 'Trip_Pickup_DateTime': '2009-06-17 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766063, 'End_Lon': -73.971623, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773163, 'Start_Lon': -73.96646, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-25 14:11:00', 'Trip_Pickup_DateTime': '2009-06-25 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765193, 'End_Lon': -73.966808, 'Fare_Amt': 23.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769638, 'Start_Lon': -73.864415, 'Tip_Amt': 7.26, 'Tolls_Amt': 4.15, 'Total_Amt': 35.61, 'Trip_Distance': 10.06, 'Trip_Dropoff_DateTime': '2009-06-26 21:43:00', 'Trip_Pickup_DateTime': '2009-06-26 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719403, 'End_Lon': -73.97714, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77476, 'Start_Lon': -73.982183, 'Tip_Amt': 3.16, 'Tolls_Amt': 0.0, 'Total_Amt': 18.96, 'Trip_Distance': 5.22, 'Trip_Dropoff_DateTime': '2009-06-28 22:37:00', 'Trip_Pickup_DateTime': '2009-06-28 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740397, 'End_Lon': -73.983782, 'Fare_Amt': 18.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73341, 'Start_Lon': -74.005307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 6.0, 'Trip_Dropoff_DateTime': '2009-06-28 01:08:00', 'Trip_Pickup_DateTime': '2009-06-28 00:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749332, 'End_Lon': -73.983975, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772265, 'Start_Lon': -73.967195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-22 21:04:00', 'Trip_Pickup_DateTime': '2009-06-22 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747042, 'End_Lon': -74.007797, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724058, 'Start_Lon': -74.011202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-04 16:06:00', 'Trip_Pickup_DateTime': '2009-06-04 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773695, 'End_Lon': -73.977725, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749035, 'Start_Lon': -73.979793, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-25 10:31:00', 'Trip_Pickup_DateTime': '2009-06-25 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760405, 'End_Lon': -73.97277, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744665, 'Start_Lon': -73.976055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-25 09:32:00', 'Trip_Pickup_DateTime': '2009-06-25 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775508, 'End_Lon': -73.955955, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760867, 'Start_Lon': -73.970677, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-26 18:26:00', 'Trip_Pickup_DateTime': '2009-06-26 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714558, 'End_Lon': -73.990197, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726198, 'Start_Lon': -73.989358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-25 02:25:00', 'Trip_Pickup_DateTime': '2009-06-25 02:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769282, 'End_Lon': -73.959618, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71913, 'Start_Lon': -74.005212, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-24 23:11:00', 'Trip_Pickup_DateTime': '2009-06-24 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758873, 'End_Lon': -73.972045, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736842, 'Start_Lon': -74.001032, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-27 13:19:00', 'Trip_Pickup_DateTime': '2009-06-27 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.684945, 'End_Lon': -73.979747, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757207, 'Start_Lon': -73.975502, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.6, 'Trip_Distance': 7.96, 'Trip_Dropoff_DateTime': '2009-06-04 20:55:00', 'Trip_Pickup_DateTime': '2009-06-04 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770175, 'End_Lon': -73.960095, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755375, 'Start_Lon': -73.977225, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-26 19:35:00', 'Trip_Pickup_DateTime': '2009-06-26 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738153, 'End_Lon': -73.979597, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74894, 'Start_Lon': -73.987748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-24 17:27:00', 'Trip_Pickup_DateTime': '2009-06-24 17:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757837, 'End_Lon': -74.000588, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756275, 'Start_Lon': -73.974908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-29 09:31:00', 'Trip_Pickup_DateTime': '2009-06-29 09:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761873, 'End_Lon': -73.979432, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740743, 'Start_Lon': -73.994478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-29 10:56:00', 'Trip_Pickup_DateTime': '2009-06-29 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795875, 'End_Lon': -73.974422, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772227, 'Start_Lon': -73.966522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-25 15:59:00', 'Trip_Pickup_DateTime': '2009-06-25 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753607, 'End_Lon': -73.992497, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750937, 'Start_Lon': -74.005545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-03 13:55:00', 'Trip_Pickup_DateTime': '2009-06-03 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714492, 'End_Lon': -73.987238, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731768, 'Start_Lon': -73.987585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-28 17:09:00', 'Trip_Pickup_DateTime': '2009-06-28 17:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75497, 'End_Lon': -73.970612, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756215, 'Start_Lon': -73.961638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-29 08:51:00', 'Trip_Pickup_DateTime': '2009-06-29 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772785, 'End_Lon': -73.98242, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796092, 'Start_Lon': -73.970877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-06 11:39:00', 'Trip_Pickup_DateTime': '2009-06-06 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728803, 'End_Lon': -73.980483, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760662, 'Start_Lon': -73.989625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.33, 'Trip_Dropoff_DateTime': '2009-06-26 00:49:00', 'Trip_Pickup_DateTime': '2009-06-26 00:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.697718, 'End_Lon': -73.985852, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742943, 'Start_Lon': -73.983967, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-24 22:22:00', 'Trip_Pickup_DateTime': '2009-06-24 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748362, 'End_Lon': -74.023103, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756397, 'Start_Lon': -74.003763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-26 01:48:00', 'Trip_Pickup_DateTime': '2009-06-26 01:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760415, 'End_Lon': -73.9756, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748283, 'Start_Lon': -73.978435, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-07 12:17:00', 'Trip_Pickup_DateTime': '2009-06-07 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72522, 'End_Lon': -74.002337, 'Fare_Amt': 16.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77078, 'Start_Lon': -73.960037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.04, 'Trip_Dropoff_DateTime': '2009-06-29 08:51:00', 'Trip_Pickup_DateTime': '2009-06-29 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709322, 'End_Lon': -74.010583, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771633, 'Start_Lon': -73.953198, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 7.02, 'Trip_Dropoff_DateTime': '2009-06-02 10:36:00', 'Trip_Pickup_DateTime': '2009-06-02 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755275, 'End_Lon': -73.992595, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738552, 'Start_Lon': -73.98315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-07 11:50:00', 'Trip_Pickup_DateTime': '2009-06-07 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769842, 'End_Lon': -73.95466, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771775, 'Start_Lon': -73.990467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-05 22:37:00', 'Trip_Pickup_DateTime': '2009-06-05 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746383, 'End_Lon': -73.983703, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73204, 'Start_Lon': -73.987892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-26 00:51:00', 'Trip_Pickup_DateTime': '2009-06-26 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710412, 'End_Lon': -74.004168, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703332, 'Start_Lon': -74.010655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-26 10:50:00', 'Trip_Pickup_DateTime': '2009-06-26 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742182, 'End_Lon': -73.980902, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761543, 'Start_Lon': -73.97933, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-28 00:02:00', 'Trip_Pickup_DateTime': '2009-06-27 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75804, 'End_Lon': -74.000722, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764533, 'Start_Lon': -73.980198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-29 08:47:00', 'Trip_Pickup_DateTime': '2009-06-29 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759108, 'End_Lon': -73.971978, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744633, 'Start_Lon': -73.978985, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-29 07:24:00', 'Trip_Pickup_DateTime': '2009-06-29 07:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712428, 'End_Lon': -73.942332, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73705, 'Start_Lon': -73.97849, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.87, 'Trip_Dropoff_DateTime': '2009-06-05 00:35:00', 'Trip_Pickup_DateTime': '2009-06-05 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780915, 'End_Lon': -73.952687, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74673, 'Start_Lon': -74.001248, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 4.6, 'Trip_Dropoff_DateTime': '2009-06-25 23:47:00', 'Trip_Pickup_DateTime': '2009-06-25 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76324, 'End_Lon': -73.956423, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761065, 'Start_Lon': -73.968252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-26 08:47:00', 'Trip_Pickup_DateTime': '2009-06-26 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64472, 'Start_Lon': -73.78194, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-27 11:53:00', 'Trip_Pickup_DateTime': '2009-06-27 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.06, 'Trip_Dropoff_DateTime': '2009-06-26 01:07:00', 'Trip_Pickup_DateTime': '2009-06-26 00:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755392, 'End_Lon': -73.971202, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756032, 'Start_Lon': -73.985287, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-24 11:55:00', 'Trip_Pickup_DateTime': '2009-06-24 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768618, 'End_Lon': -73.959832, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75339, 'Start_Lon': -73.97779, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-24 11:22:00', 'Trip_Pickup_DateTime': '2009-06-24 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76596, 'End_Lon': -73.971723, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787162, 'Start_Lon': -73.96804, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-24 11:14:00', 'Trip_Pickup_DateTime': '2009-06-24 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762713, 'End_Lon': -73.975443, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737508, 'Start_Lon': -73.996685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-29 07:46:00', 'Trip_Pickup_DateTime': '2009-06-29 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788185, 'End_Lon': -73.967298, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783455, 'Start_Lon': -73.95653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-28 20:08:00', 'Trip_Pickup_DateTime': '2009-06-28 20:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750325, 'End_Lon': -73.991422, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76105, 'Start_Lon': -73.982828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-28 20:44:00', 'Trip_Pickup_DateTime': '2009-06-28 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753333, 'End_Lon': -73.972272, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759963, 'Start_Lon': -73.971885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-24 11:48:00', 'Trip_Pickup_DateTime': '2009-06-24 11:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74528, 'End_Lon': -73.990622, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75766, 'Start_Lon': -73.967847, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-24 08:46:00', 'Trip_Pickup_DateTime': '2009-06-24 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75011, 'End_Lon': -73.977355, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79862, 'Start_Lon': -73.969082, 'Tip_Amt': 3.94, 'Tolls_Amt': 0.0, 'Total_Amt': 23.64, 'Trip_Distance': 4.21, 'Trip_Dropoff_DateTime': '2009-06-22 14:50:00', 'Trip_Pickup_DateTime': '2009-06-22 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733267, 'End_Lon': -73.990978, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77968, 'Start_Lon': -73.981773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-04 22:17:00', 'Trip_Pickup_DateTime': '2009-06-04 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76322, 'End_Lon': -73.964588, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76904, 'Start_Lon': -73.961045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-27 16:03:00', 'Trip_Pickup_DateTime': '2009-06-27 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737603, 'End_Lon': -73.984317, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747928, 'Start_Lon': -73.976315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-04 23:14:00', 'Trip_Pickup_DateTime': '2009-06-04 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757693, 'End_Lon': -73.968922, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764078, 'Start_Lon': -73.95441, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-25 20:48:00', 'Trip_Pickup_DateTime': '2009-06-25 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749337, 'End_Lon': -73.977425, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758462, 'Start_Lon': -73.973132, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-25 20:53:00', 'Trip_Pickup_DateTime': '2009-06-25 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730223, 'End_Lon': -73.999415, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72411, 'Start_Lon': -73.978988, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-24 03:04:00', 'Trip_Pickup_DateTime': '2009-06-24 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709293, 'End_Lon': -74.015202, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77022, 'Start_Lon': -73.980423, 'Tip_Amt': 3.16, 'Tolls_Amt': 0.0, 'Total_Amt': 18.96, 'Trip_Distance': 5.51, 'Trip_Dropoff_DateTime': '2009-06-04 22:26:00', 'Trip_Pickup_DateTime': '2009-06-04 22:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741513, 'End_Lon': -74.001258, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720483, 'Start_Lon': -74.010217, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-25 22:38:00', 'Trip_Pickup_DateTime': '2009-06-25 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759163, 'End_Lon': -73.985513, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730305, 'Start_Lon': -74.002187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-27 20:56:00', 'Trip_Pickup_DateTime': '2009-06-27 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745537, 'End_Lon': -73.982439, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733274, 'Start_Lon': -73.993386, 'Tip_Amt': 1.22, 'Tolls_Amt': 0.0, 'Total_Amt': 7.32, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-08 09:06:39', 'Trip_Pickup_DateTime': '2009-06-08 08:58:52', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.745702, 'End_Lon': -73.983385, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75727, 'Start_Lon': -73.986733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-23 22:53:00', 'Trip_Pickup_DateTime': '2009-06-23 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.670967, 'End_Lon': -73.98293, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75788, 'Start_Lon': -73.969275, 'Tip_Amt': 5.25, 'Tolls_Amt': 0.0, 'Total_Amt': 26.25, 'Trip_Distance': 7.11, 'Trip_Dropoff_DateTime': '2009-06-23 22:42:00', 'Trip_Pickup_DateTime': '2009-06-23 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766608, 'End_Lon': -73.953955, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783367, 'Start_Lon': -73.954548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-22 15:32:00', 'Trip_Pickup_DateTime': '2009-06-22 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 36.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 7.58, 'Tolls_Amt': 5.0, 'Total_Amt': 50.48, 'Trip_Distance': 14.21, 'Trip_Dropoff_DateTime': '2009-06-23 18:44:00', 'Trip_Pickup_DateTime': '2009-06-23 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761277, 'End_Lon': -73.967883, 'Fare_Amt': 10.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744405, 'Start_Lon': -73.999048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-27 22:00:00', 'Trip_Pickup_DateTime': '2009-06-27 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762288, 'End_Lon': -73.98672, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769337, 'Start_Lon': -73.986497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-03 11:42:00', 'Trip_Pickup_DateTime': '2009-06-03 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70235, 'End_Lon': -73.986502, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726697, 'Start_Lon': -74.005725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-29 00:34:00', 'Trip_Pickup_DateTime': '2009-06-29 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722632, 'End_Lon': -73.98098, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748542, 'Start_Lon': -73.98711, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-24 02:33:00', 'Trip_Pickup_DateTime': '2009-06-24 02:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-05 08:08:00', 'Trip_Pickup_DateTime': '2009-06-05 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72634, 'End_Lon': -74.00561, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778657, 'Start_Lon': -73.954357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-27 22:47:00', 'Trip_Pickup_DateTime': '2009-06-27 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714373, 'End_Lon': -73.997072, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704675, 'Start_Lon': -74.016363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-06 14:07:00', 'Trip_Pickup_DateTime': '2009-06-06 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746055, 'End_Lon': -73.971908, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711965, 'Start_Lon': -74.009832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-28 13:32:00', 'Trip_Pickup_DateTime': '2009-06-28 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768543, 'End_Lon': -73.861923, 'Fare_Amt': 29.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752302, 'Start_Lon': -73.977062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.3, 'Trip_Distance': 11.44, 'Trip_Dropoff_DateTime': '2009-06-25 14:37:00', 'Trip_Pickup_DateTime': '2009-06-25 13:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760147, 'End_Lon': -73.965135, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754867, 'Start_Lon': -73.977548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-27 21:25:00', 'Trip_Pickup_DateTime': '2009-06-27 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.810073, 'End_Lon': -73.95087, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787612, 'Start_Lon': -73.941467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-24 18:06:00', 'Trip_Pickup_DateTime': '2009-06-24 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775355, 'End_Lon': -73.959847, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767295, 'Start_Lon': -73.981942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-03 16:40:00', 'Trip_Pickup_DateTime': '2009-06-03 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741072, 'End_Lon': -73.976147, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734283, 'Start_Lon': -73.989777, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-28 01:27:00', 'Trip_Pickup_DateTime': '2009-06-28 01:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757302, 'End_Lon': -73.96793, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755915, 'Start_Lon': -73.976378, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-23 22:13:00', 'Trip_Pickup_DateTime': '2009-06-23 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753225, 'End_Lon': -73.97344, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752277, 'Start_Lon': -73.968065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-23 11:19:00', 'Trip_Pickup_DateTime': '2009-06-23 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720285, 'End_Lon': -74.010848, 'Fare_Amt': 14.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754742, 'Start_Lon': -73.984212, 'Tip_Amt': 2.4, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-23 00:29:00', 'Trip_Pickup_DateTime': '2009-06-23 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742727, 'End_Lon': -73.993782, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783088, 'Start_Lon': -73.982182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-28 00:51:00', 'Trip_Pickup_DateTime': '2009-06-28 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731578, 'End_Lon': -73.997163, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731187, 'Start_Lon': -74.0079, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-03 15:28:00', 'Trip_Pickup_DateTime': '2009-06-03 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725777, 'End_Lon': -73.942767, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784673, 'Start_Lon': -73.949633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 7.17, 'Trip_Dropoff_DateTime': '2009-06-06 15:37:00', 'Trip_Pickup_DateTime': '2009-06-06 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748213, 'End_Lon': -73.976572, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755392, 'Start_Lon': -73.988172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-17 10:57:00', 'Trip_Pickup_DateTime': '2009-06-17 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803895, 'End_Lon': -73.956262, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794297, 'Start_Lon': -73.973712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-06 00:00:00', 'Trip_Pickup_DateTime': '2009-06-05 23:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760898, 'End_Lon': -73.908658, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773857, 'Start_Lon': -73.966243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.81, 'Trip_Dropoff_DateTime': '2009-06-29 00:23:00', 'Trip_Pickup_DateTime': '2009-06-29 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727922, 'End_Lon': -73.994772, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73372, 'Start_Lon': -74.006253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-03 14:51:00', 'Trip_Pickup_DateTime': '2009-06-03 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752787, 'End_Lon': -73.970027, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77315, 'Start_Lon': -73.955155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-07 01:20:00', 'Trip_Pickup_DateTime': '2009-06-07 01:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76489, 'End_Lon': -73.991533, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771495, 'Start_Lon': -73.950618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-05 22:22:00', 'Trip_Pickup_DateTime': '2009-06-05 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726643, 'End_Lon': -74.005537, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74239, 'Start_Lon': -74.004222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-08 01:02:00', 'Trip_Pickup_DateTime': '2009-06-08 00:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755488, 'End_Lon': -73.973962, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750058, 'Start_Lon': -73.979127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-08 12:26:00', 'Trip_Pickup_DateTime': '2009-06-08 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734415, 'End_Lon': -74.00306, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707152, 'Start_Lon': -74.007753, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-06 20:01:00', 'Trip_Pickup_DateTime': '2009-06-06 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722423, 'End_Lon': -73.976643, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732952, 'Start_Lon': -73.996183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-06 14:39:00', 'Trip_Pickup_DateTime': '2009-06-06 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782445, 'End_Lon': -73.950943, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746468, 'Start_Lon': -73.97788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-28 03:51:00', 'Trip_Pickup_DateTime': '2009-06-28 03:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76002, 'End_Lon': -73.98148, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732142, 'Start_Lon': -73.98815, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 9.35, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-23 07:13:00', 'Trip_Pickup_DateTime': '2009-06-23 07:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769065, 'End_Lon': -73.95507, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716213, 'Start_Lon': -74.00508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 6.26, 'Trip_Dropoff_DateTime': '2009-06-04 12:46:00', 'Trip_Pickup_DateTime': '2009-06-04 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73086, 'End_Lon': -74.0015, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708073, 'Start_Lon': -74.014293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-06 21:53:00', 'Trip_Pickup_DateTime': '2009-06-06 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78786, 'End_Lon': -73.975128, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789725, 'Start_Lon': -73.966203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-05 15:36:00', 'Trip_Pickup_DateTime': '2009-06-05 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756802, 'End_Lon': -73.978748, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763775, 'Start_Lon': -73.976957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-05 10:47:00', 'Trip_Pickup_DateTime': '2009-06-05 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723517, 'End_Lon': -74.009722, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737312, 'Start_Lon': -74.005707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-07 23:35:00', 'Trip_Pickup_DateTime': '2009-06-07 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72576, 'End_Lon': -73.983753, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731103, 'Start_Lon': -73.982758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-05 16:01:00', 'Trip_Pickup_DateTime': '2009-06-05 15:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740097, 'End_Lon': -74.007437, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731337, 'Start_Lon': -73.988478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-04 23:45:00', 'Trip_Pickup_DateTime': '2009-06-04 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769997, 'End_Lon': -73.869983, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763058, 'Start_Lon': -73.871148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-29 02:24:00', 'Trip_Pickup_DateTime': '2009-06-29 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752083, 'End_Lon': -73.975312, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753982, 'Start_Lon': -73.980785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-29 10:24:00', 'Trip_Pickup_DateTime': '2009-06-29 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-27 23:20:00', 'Trip_Pickup_DateTime': '2009-06-27 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751372, 'End_Lon': -73.977455, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748923, 'Start_Lon': -73.988538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-02 15:17:00', 'Trip_Pickup_DateTime': '2009-06-02 15:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725108, 'End_Lon': -73.998758, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756202, 'Start_Lon': -73.985412, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-29 10:54:00', 'Trip_Pickup_DateTime': '2009-06-29 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782378, 'End_Lon': -73.980535, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720185, 'Start_Lon': -73.99597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.39, 'Trip_Dropoff_DateTime': '2009-06-28 20:03:00', 'Trip_Pickup_DateTime': '2009-06-28 19:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771805, 'End_Lon': -73.98227, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797372, 'Start_Lon': -73.969918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-28 20:28:00', 'Trip_Pickup_DateTime': '2009-06-28 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793638, 'End_Lon': -73.97053, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790738, 'Start_Lon': -73.97651, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-03 23:57:00', 'Trip_Pickup_DateTime': '2009-06-03 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767187, 'End_Lon': -73.962388, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774017, 'Start_Lon': -73.981695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-28 16:21:00', 'Trip_Pickup_DateTime': '2009-06-28 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774332, 'End_Lon': -73.989195, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754178, 'Start_Lon': -73.972205, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.7, 'Trip_Dropoff_DateTime': '2009-06-29 06:25:00', 'Trip_Pickup_DateTime': '2009-06-29 06:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745388, 'End_Lon': -73.998857, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756953, 'Start_Lon': -73.993707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-28 21:35:00', 'Trip_Pickup_DateTime': '2009-06-28 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775465, 'End_Lon': -73.963862, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767762, 'Start_Lon': -73.96205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-29 10:29:00', 'Trip_Pickup_DateTime': '2009-06-29 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779147, 'End_Lon': -73.953782, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792733, 'Start_Lon': -73.967318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-27 18:06:00', 'Trip_Pickup_DateTime': '2009-06-27 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763898, 'End_Lon': -73.963395, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769355, 'Start_Lon': -73.965182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-03 11:44:00', 'Trip_Pickup_DateTime': '2009-06-03 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733672, 'End_Lon': -73.997742, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724285, 'Start_Lon': -73.979373, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-28 21:40:00', 'Trip_Pickup_DateTime': '2009-06-28 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734015, 'End_Lon': -73.992683, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73343, 'Start_Lon': -74.008103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-08 15:06:00', 'Trip_Pickup_DateTime': '2009-06-08 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743508, 'End_Lon': -73.980817, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734092, 'Start_Lon': -73.986362, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-28 11:41:00', 'Trip_Pickup_DateTime': '2009-06-28 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76352, 'End_Lon': -73.98173, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748732, 'Start_Lon': -74.003228, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-28 00:19:00', 'Trip_Pickup_DateTime': '2009-06-28 00:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76006, 'End_Lon': -73.966528, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712618, 'Start_Lon': -74.007692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 6.11, 'Trip_Dropoff_DateTime': '2009-06-29 09:48:00', 'Trip_Pickup_DateTime': '2009-06-29 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810812, 'End_Lon': -73.952873, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792747, 'Start_Lon': -73.971245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-28 17:48:00', 'Trip_Pickup_DateTime': '2009-06-28 17:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766105, 'End_Lon': -73.984572, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781457, 'Start_Lon': -73.976017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-28 13:11:00', 'Trip_Pickup_DateTime': '2009-06-28 13:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762133, 'End_Lon': -73.963182, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773417, 'Start_Lon': -73.981627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-28 13:47:00', 'Trip_Pickup_DateTime': '2009-06-28 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753167, 'End_Lon': -73.969942, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739223, 'Start_Lon': -73.973083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-05 11:54:00', 'Trip_Pickup_DateTime': '2009-06-05 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737225, 'End_Lon': -73.978927, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764277, 'Start_Lon': -73.986835, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-28 04:21:00', 'Trip_Pickup_DateTime': '2009-06-28 04:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734707, 'End_Lon': -74.004752, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741543, 'Start_Lon': -73.997527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-27 22:33:00', 'Trip_Pickup_DateTime': '2009-06-27 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750208, 'End_Lon': -73.98056, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749898, 'Start_Lon': -73.991798, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-04 15:29:00', 'Trip_Pickup_DateTime': '2009-06-04 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.697793, 'End_Lon': -73.994378, 'Fare_Amt': 16.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760975, 'Start_Lon': -73.998165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.99, 'Trip_Dropoff_DateTime': '2009-06-25 22:43:00', 'Trip_Pickup_DateTime': '2009-06-25 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.814857, 'End_Lon': -73.942348, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74125, 'Start_Lon': -73.977982, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.87, 'Trip_Dropoff_DateTime': '2009-06-28 02:18:00', 'Trip_Pickup_DateTime': '2009-06-28 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708097, 'End_Lon': -74.00515, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72891, 'Start_Lon': -74.00536, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-05 23:27:00', 'Trip_Pickup_DateTime': '2009-06-05 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739355, 'End_Lon': -73.999012, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755595, 'Start_Lon': -73.99459, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-03 17:34:00', 'Trip_Pickup_DateTime': '2009-06-03 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737788, 'End_Lon': -73.993247, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711708, 'Start_Lon': -74.01612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-08 11:54:00', 'Trip_Pickup_DateTime': '2009-06-08 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758467, 'End_Lon': -74.000403, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757777, 'Start_Lon': -73.986633, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-28 10:43:00', 'Trip_Pickup_DateTime': '2009-06-28 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707123, 'End_Lon': -73.959487, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.699785, 'Start_Lon': -73.99859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-28 01:41:00', 'Trip_Pickup_DateTime': '2009-06-28 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724805, 'End_Lon': -73.984427, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712753, 'Start_Lon': -74.009897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-27 14:41:00', 'Trip_Pickup_DateTime': '2009-06-27 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774217, 'End_Lon': -73.957298, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72319, 'Start_Lon': -74.008008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.1, 'Trip_Distance': 6.54, 'Trip_Dropoff_DateTime': '2009-06-23 19:02:00', 'Trip_Pickup_DateTime': '2009-06-23 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7527, 'End_Lon': -73.98033, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761483, 'Start_Lon': -73.975433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-25 12:36:00', 'Trip_Pickup_DateTime': '2009-06-25 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776133, 'End_Lon': -73.981542, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749612, 'Start_Lon': -73.9834, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-28 01:22:00', 'Trip_Pickup_DateTime': '2009-06-28 01:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74464, 'End_Lon': -73.989193, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73925, 'Start_Lon': -73.989923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-27 02:46:00', 'Trip_Pickup_DateTime': '2009-06-27 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756597, 'End_Lon': -73.967317, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716445, 'Start_Lon': -74.004633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 4.47, 'Trip_Dropoff_DateTime': '2009-06-26 18:39:00', 'Trip_Pickup_DateTime': '2009-06-26 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718575, 'End_Lon': -73.974773, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709903, 'Start_Lon': -74.016223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-28 07:36:00', 'Trip_Pickup_DateTime': '2009-06-28 07:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784633, 'End_Lon': -73.949747, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761272, 'Start_Lon': -73.982703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-28 01:37:00', 'Trip_Pickup_DateTime': '2009-06-28 01:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78524, 'End_Lon': -73.979082, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748898, 'Start_Lon': -73.982142, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.55, 'Trip_Dropoff_DateTime': '2009-06-14 18:52:00', 'Trip_Pickup_DateTime': '2009-06-14 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755105, 'End_Lon': -73.972398, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783942, 'Start_Lon': -73.958672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-28 16:56:00', 'Trip_Pickup_DateTime': '2009-06-28 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769733, 'End_Lon': -73.957685, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779565, 'Start_Lon': -73.955692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-27 14:58:00', 'Trip_Pickup_DateTime': '2009-06-27 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74951, 'End_Lon': -74.002997, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714003, 'Start_Lon': -73.97999, 'Tip_Amt': 3.32, 'Tolls_Amt': 0.0, 'Total_Amt': 19.92, 'Trip_Distance': 5.94, 'Trip_Dropoff_DateTime': '2009-06-27 23:54:00', 'Trip_Pickup_DateTime': '2009-06-27 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788227, 'End_Lon': -73.94909, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74334, 'Start_Lon': -73.978725, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-28 03:48:00', 'Trip_Pickup_DateTime': '2009-06-28 03:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799597, 'End_Lon': -73.938883, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781792, 'Start_Lon': -73.95206, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.13, 'Trip_Dropoff_DateTime': '2009-06-27 01:05:00', 'Trip_Pickup_DateTime': '2009-06-27 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741643, 'End_Lon': -73.917123, 'Fare_Amt': 18.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76029, 'Start_Lon': -73.985145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.21, 'Trip_Dropoff_DateTime': '2009-06-28 04:06:00', 'Trip_Pickup_DateTime': '2009-06-28 03:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767372, 'End_Lon': -73.970683, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77317, 'Start_Lon': -73.952053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-28 09:42:00', 'Trip_Pickup_DateTime': '2009-06-28 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730012, 'End_Lon': -73.98666, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743967, 'Start_Lon': -73.97929, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-26 18:41:00', 'Trip_Pickup_DateTime': '2009-06-26 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757762, 'End_Lon': -73.96901, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766567, 'Start_Lon': -73.95277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-29 09:34:00', 'Trip_Pickup_DateTime': '2009-06-29 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738755, 'End_Lon': -73.990363, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743463, 'Start_Lon': -73.983997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-24 10:55:00', 'Trip_Pickup_DateTime': '2009-06-24 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758157, 'End_Lon': -73.992712, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764053, 'Start_Lon': -73.973428, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-04 23:15:00', 'Trip_Pickup_DateTime': '2009-06-04 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706218, 'End_Lon': -74.003418, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743607, 'Start_Lon': -73.976782, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-29 09:29:00', 'Trip_Pickup_DateTime': '2009-06-29 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750058, 'End_Lon': -73.988542, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742927, 'Start_Lon': -73.980292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-26 16:20:00', 'Trip_Pickup_DateTime': '2009-06-26 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71347, 'End_Lon': -74.011265, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.704957, 'Start_Lon': -74.013308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-25 18:16:00', 'Trip_Pickup_DateTime': '2009-06-25 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76353, 'End_Lon': -73.971893, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751438, 'Start_Lon': -73.974317, 'Tip_Amt': 0.6, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-29 09:06:00', 'Trip_Pickup_DateTime': '2009-06-29 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739282, 'End_Lon': -73.99534, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7318, 'Start_Lon': -73.991592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-26 19:28:00', 'Trip_Pickup_DateTime': '2009-06-26 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744052, 'End_Lon': -73.992047, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740775, 'Start_Lon': -73.986057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-26 08:23:00', 'Trip_Pickup_DateTime': '2009-06-26 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785518, 'End_Lon': -73.972877, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746523, 'Start_Lon': -73.97989, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-27 00:45:00', 'Trip_Pickup_DateTime': '2009-06-27 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.808782, 'End_Lon': -73.959595, 'Fare_Amt': 17.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748112, 'Start_Lon': -73.987105, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.2, 'Trip_Distance': 6.07, 'Trip_Dropoff_DateTime': '2009-06-27 03:21:00', 'Trip_Pickup_DateTime': '2009-06-27 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682088, 'End_Lon': -73.977357, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.673988, 'Start_Lon': -73.971917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-27 05:17:00', 'Trip_Pickup_DateTime': '2009-06-27 05:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7379, 'End_Lon': -73.988033, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759515, 'Start_Lon': -73.965317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-26 13:02:00', 'Trip_Pickup_DateTime': '2009-06-26 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74579, 'End_Lon': -73.977912, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7469, 'Start_Lon': -73.973263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-24 19:09:00', 'Trip_Pickup_DateTime': '2009-06-24 19:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763848, 'End_Lon': -73.971145, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755718, 'Start_Lon': -73.991082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-26 11:50:00', 'Trip_Pickup_DateTime': '2009-06-26 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758113, 'End_Lon': -73.973465, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771982, 'Start_Lon': -73.965405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-23 14:02:00', 'Trip_Pickup_DateTime': '2009-06-23 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733493, 'End_Lon': -73.986923, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749557, 'Start_Lon': -73.99219, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-02 11:01:00', 'Trip_Pickup_DateTime': '2009-06-02 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747768, 'End_Lon': -73.980772, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759377, 'Start_Lon': -73.962083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-26 09:57:00', 'Trip_Pickup_DateTime': '2009-06-26 09:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704732, 'End_Lon': -74.016765, 'Fare_Amt': 16.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759663, 'Start_Lon': -73.984323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 5.23, 'Trip_Dropoff_DateTime': '2009-06-02 12:32:00', 'Trip_Pickup_DateTime': '2009-06-02 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760317, 'End_Lon': -73.990938, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71418, 'Start_Lon': -73.989555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.25, 'Trip_Dropoff_DateTime': '2009-06-25 23:52:00', 'Trip_Pickup_DateTime': '2009-06-25 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757862, 'End_Lon': -73.989057, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75601, 'Start_Lon': -73.975207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-02 00:25:00', 'Trip_Pickup_DateTime': '2009-06-02 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694177, 'End_Lon': -73.991397, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757352, 'Start_Lon': -73.982078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 6.9, 'Trip_Dropoff_DateTime': '2009-06-24 23:31:00', 'Trip_Pickup_DateTime': '2009-06-24 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-05 20:11:00', 'Trip_Pickup_DateTime': '2009-06-05 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758018, 'End_Lon': -73.984877, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748387, 'Start_Lon': -73.987007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-26 04:04:00', 'Trip_Pickup_DateTime': '2009-06-26 04:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719942, 'End_Lon': -73.987637, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7181, 'Start_Lon': -73.957492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-26 20:27:00', 'Trip_Pickup_DateTime': '2009-06-26 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729425, 'End_Lon': -73.980933, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779985, 'Start_Lon': -73.946515, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.59, 'Trip_Dropoff_DateTime': '2009-06-26 18:26:00', 'Trip_Pickup_DateTime': '2009-06-26 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75586, 'End_Lon': -73.982805, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774163, 'Start_Lon': -73.874532, 'Tip_Amt': 5.98, 'Tolls_Amt': 4.15, 'Total_Amt': 40.03, 'Trip_Distance': 11.49, 'Trip_Dropoff_DateTime': '2009-06-26 19:43:00', 'Trip_Pickup_DateTime': '2009-06-26 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7328, 'End_Lon': -73.99988, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746917, 'Start_Lon': -73.98515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-27 17:50:00', 'Trip_Pickup_DateTime': '2009-06-27 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770236, 'End_Lon': -73.960341, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783967, 'Start_Lon': -73.954684, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-22 18:34:05', 'Trip_Pickup_DateTime': '2009-06-22 18:28:25', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75591, 'End_Lon': -73.973852, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763467, 'Start_Lon': -73.98655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-03 14:12:00', 'Trip_Pickup_DateTime': '2009-06-03 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761375, 'End_Lon': -73.95773, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753392, 'Start_Lon': -73.966393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-02 18:40:00', 'Trip_Pickup_DateTime': '2009-06-02 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754237, 'End_Lon': -73.995858, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720357, 'Start_Lon': -73.9884, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-06 02:33:00', 'Trip_Pickup_DateTime': '2009-06-06 02:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737848, 'End_Lon': -73.983998, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760092, 'Start_Lon': -73.987183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-06 22:18:00', 'Trip_Pickup_DateTime': '2009-06-06 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75185, 'End_Lon': -73.98912, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750997, 'Start_Lon': -73.98811, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-08 09:21:00', 'Trip_Pickup_DateTime': '2009-06-08 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773432, 'End_Lon': -73.9493, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740002, 'Start_Lon': -73.982247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-04 20:25:00', 'Trip_Pickup_DateTime': '2009-06-04 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72116, 'End_Lon': -74.000508, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7446, 'Start_Lon': -73.98093, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-04 07:41:00', 'Trip_Pickup_DateTime': '2009-06-04 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730243, 'End_Lon': -74.006963, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76272, 'Start_Lon': -73.97505, 'Tip_Amt': 3.02, 'Tolls_Amt': 0.0, 'Total_Amt': 18.12, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-04 18:59:00', 'Trip_Pickup_DateTime': '2009-06-04 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749952, 'End_Lon': -73.993233, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756357, 'Start_Lon': -73.974623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-04 17:05:00', 'Trip_Pickup_DateTime': '2009-06-04 16:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787093, 'End_Lon': -73.954527, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77569, 'Start_Lon': -73.96252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-08 09:04:00', 'Trip_Pickup_DateTime': '2009-06-08 09:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756537, 'End_Lon': -73.98673, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765463, 'Start_Lon': -73.9823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-07 14:12:00', 'Trip_Pickup_DateTime': '2009-06-07 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70762, 'End_Lon': -73.940025, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731498, 'Start_Lon': -73.982755, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-02 00:57:00', 'Trip_Pickup_DateTime': '2009-06-02 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750178, 'End_Lon': -73.994372, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751385, 'Start_Lon': -73.981825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-02 09:41:00', 'Trip_Pickup_DateTime': '2009-06-02 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758515, 'End_Lon': -73.98866, 'Fare_Amt': 26.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774, 'Start_Lon': -73.87235, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.55, 'Trip_Distance': 11.52, 'Trip_Dropoff_DateTime': '2009-06-05 23:54:00', 'Trip_Pickup_DateTime': '2009-06-05 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763542, 'End_Lon': -73.971445, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780987, 'Start_Lon': -73.972572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-05 14:12:00', 'Trip_Pickup_DateTime': '2009-06-05 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76097, 'End_Lon': -73.974758, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769325, 'Start_Lon': -73.961332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-05 15:29:00', 'Trip_Pickup_DateTime': '2009-06-05 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779812, 'End_Lon': -73.958542, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775853, 'Start_Lon': -73.96027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-07 00:51:00', 'Trip_Pickup_DateTime': '2009-06-07 00:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767998, 'End_Lon': -73.981568, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75595, 'Start_Lon': -73.990527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-02 17:57:00', 'Trip_Pickup_DateTime': '2009-06-02 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762763, 'End_Lon': -73.974073, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780098, 'Start_Lon': -73.976867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-06 17:29:00', 'Trip_Pickup_DateTime': '2009-06-06 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753585, 'End_Lon': -73.970155, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750965, 'Start_Lon': -73.986985, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-02 11:17:00', 'Trip_Pickup_DateTime': '2009-06-02 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803647, 'End_Lon': -73.96518, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749903, 'Start_Lon': -73.995508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-06 01:30:00', 'Trip_Pickup_DateTime': '2009-06-06 01:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749612, 'End_Lon': -73.972157, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743963, 'Start_Lon': -73.981457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-02 10:30:00', 'Trip_Pickup_DateTime': '2009-06-02 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731527, 'End_Lon': -73.990323, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747148, 'Start_Lon': -73.993323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-05 15:05:00', 'Trip_Pickup_DateTime': '2009-06-05 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-04 17:48:00', 'Trip_Pickup_DateTime': '2009-06-04 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73735, 'End_Lon': -73.981318, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767092, 'Start_Lon': -73.962577, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-07 21:29:00', 'Trip_Pickup_DateTime': '2009-06-07 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752405, 'End_Lon': -73.978352, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742695, 'Start_Lon': -74.007262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-04 18:33:00', 'Trip_Pickup_DateTime': '2009-06-04 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759398, 'End_Lon': -73.98243, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78448, 'Start_Lon': -73.952018, 'Tip_Amt': 3.14, 'Tolls_Amt': 0.0, 'Total_Amt': 18.84, 'Trip_Distance': 3.09, 'Trip_Dropoff_DateTime': '2009-06-02 09:25:00', 'Trip_Pickup_DateTime': '2009-06-02 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784323, 'End_Lon': -73.949878, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755978, 'Start_Lon': -73.976287, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-02 21:39:00', 'Trip_Pickup_DateTime': '2009-06-02 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75855, 'End_Lon': -73.980267, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75041, 'Start_Lon': -73.987332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-04 14:39:00', 'Trip_Pickup_DateTime': '2009-06-04 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775972, 'End_Lon': -73.960305, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77705, 'Start_Lon': -73.98234, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-08 08:15:00', 'Trip_Pickup_DateTime': '2009-06-08 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74476, 'End_Lon': -73.987338, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7434, 'Start_Lon': -73.976878, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-05 20:11:00', 'Trip_Pickup_DateTime': '2009-06-05 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729702, 'End_Lon': -73.987303, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781348, 'Start_Lon': -73.985628, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.4, 'Trip_Distance': 4.56, 'Trip_Dropoff_DateTime': '2009-06-06 01:40:00', 'Trip_Pickup_DateTime': '2009-06-06 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750127, 'End_Lon': -73.994872, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74068, 'Start_Lon': -74.001543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-02 14:39:00', 'Trip_Pickup_DateTime': '2009-06-02 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73974, 'End_Lon': -73.976398, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713875, 'Start_Lon': -73.997603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-02 09:24:00', 'Trip_Pickup_DateTime': '2009-06-02 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762982, 'End_Lon': -73.97699, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728217, 'Start_Lon': -73.99456, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-08 09:47:00', 'Trip_Pickup_DateTime': '2009-06-08 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695355, 'End_Lon': -73.972295, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71843, 'Start_Lon': -73.987378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-02 22:48:00', 'Trip_Pickup_DateTime': '2009-06-02 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744382, 'End_Lon': -73.99417, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766027, 'Start_Lon': -73.985435, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-03 21:02:00', 'Trip_Pickup_DateTime': '2009-06-03 20:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785655, 'End_Lon': -73.95517, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770492, 'Start_Lon': -73.966223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-06 21:10:00', 'Trip_Pickup_DateTime': '2009-06-06 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730008, 'End_Lon': -73.987295, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742287, 'Start_Lon': -73.9889, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-06 21:59:00', 'Trip_Pickup_DateTime': '2009-06-06 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752515, 'End_Lon': -73.9253, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753635, 'Start_Lon': -73.932322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-02 22:19:00', 'Trip_Pickup_DateTime': '2009-06-02 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774313, 'End_Lon': -73.87161, 'Fare_Amt': 29.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765467, 'Start_Lon': -73.983152, 'Tip_Amt': 5.86, 'Tolls_Amt': 4.15, 'Total_Amt': 39.31, 'Trip_Distance': 9.66, 'Trip_Dropoff_DateTime': '2009-06-05 15:22:00', 'Trip_Pickup_DateTime': '2009-06-05 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738462, 'End_Lon': -73.991643, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76229, 'Start_Lon': -73.993605, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.1, 'Trip_Distance': 4.69, 'Trip_Dropoff_DateTime': '2009-06-04 10:34:00', 'Trip_Pickup_DateTime': '2009-06-04 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773222, 'End_Lon': -73.980957, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748268, 'Start_Lon': -73.976607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-07 01:52:00', 'Trip_Pickup_DateTime': '2009-06-07 01:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743233, 'End_Lon': -73.997377, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764005, 'Start_Lon': -73.97302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-03 22:22:00', 'Trip_Pickup_DateTime': '2009-06-03 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765298, 'End_Lon': -73.979637, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781017, 'Start_Lon': -73.949482, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-03 15:39:00', 'Trip_Pickup_DateTime': '2009-06-03 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706392, 'End_Lon': -74.003105, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765328, 'Start_Lon': -73.96432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.67, 'Trip_Dropoff_DateTime': '2009-06-06 20:21:00', 'Trip_Pickup_DateTime': '2009-06-06 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.808875, 'End_Lon': -73.952978, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773508, 'Start_Lon': -73.98907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.57, 'Trip_Dropoff_DateTime': '2009-06-03 12:01:00', 'Trip_Pickup_DateTime': '2009-06-03 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743787, 'End_Lon': -74.006045, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743888, 'Start_Lon': -74.00615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-02 02:36:00', 'Trip_Pickup_DateTime': '2009-06-02 02:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732455, 'End_Lon': -74.000452, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720613, 'Start_Lon': -73.997237, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-06 13:33:00', 'Trip_Pickup_DateTime': '2009-06-06 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749825, 'End_Lon': -74.005463, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736108, 'Start_Lon': -73.997623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-02 09:25:00', 'Trip_Pickup_DateTime': '2009-06-02 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7504, 'End_Lon': -73.999185, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749778, 'Start_Lon': -73.999875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-04 10:48:00', 'Trip_Pickup_DateTime': '2009-06-04 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.669188, 'End_Lon': -73.896847, 'Fare_Amt': 39.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757403, 'Start_Lon': -73.98077, 'Tip_Amt': 7.86, 'Tolls_Amt': 0.0, 'Total_Amt': 47.16, 'Trip_Distance': 12.97, 'Trip_Dropoff_DateTime': '2009-06-26 15:26:00', 'Trip_Pickup_DateTime': '2009-06-26 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715413, 'End_Lon': -73.985123, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724358, 'Start_Lon': -73.992525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-25 17:44:00', 'Trip_Pickup_DateTime': '2009-06-25 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701445, 'End_Lon': -74.012168, 'Fare_Amt': 12.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736807, 'Start_Lon': -73.978097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 4.18, 'Trip_Dropoff_DateTime': '2009-06-07 11:30:00', 'Trip_Pickup_DateTime': '2009-06-07 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750373, 'End_Lon': -73.991565, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751275, 'Start_Lon': -73.983305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-07 01:21:00', 'Trip_Pickup_DateTime': '2009-06-07 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747572, 'End_Lon': -74.008147, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745393, 'Start_Lon': -73.998538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-06 14:20:00', 'Trip_Pickup_DateTime': '2009-06-06 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723888, 'End_Lon': -74.002542, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739353, 'Start_Lon': -73.999177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-07 21:06:00', 'Trip_Pickup_DateTime': '2009-06-07 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764645, 'End_Lon': -73.956708, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74669, 'Start_Lon': -73.98163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-02 13:11:00', 'Trip_Pickup_DateTime': '2009-06-02 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779907, 'End_Lon': -73.911493, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786128, 'Start_Lon': -73.916102, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-08 11:18:00', 'Trip_Pickup_DateTime': '2009-06-08 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763325, 'End_Lon': -73.933582, 'Fare_Amt': 13.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784922, 'Start_Lon': -73.951503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.63, 'Trip_Dropoff_DateTime': '2009-06-04 22:49:00', 'Trip_Pickup_DateTime': '2009-06-04 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 17.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 6.47, 'Trip_Dropoff_DateTime': '2009-06-03 14:32:00', 'Trip_Pickup_DateTime': '2009-06-03 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734462, 'End_Lon': -73.983262, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734275, 'Start_Lon': -73.989877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-08 00:13:00', 'Trip_Pickup_DateTime': '2009-06-08 00:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748893, 'End_Lon': -73.991495, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724512, 'Start_Lon': -73.98465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-06 19:30:00', 'Trip_Pickup_DateTime': '2009-06-06 19:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749602, 'End_Lon': -73.99288, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734748, 'Start_Lon': -73.984743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-03 10:52:00', 'Trip_Pickup_DateTime': '2009-06-03 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752003, 'End_Lon': -73.977955, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73225, 'Start_Lon': -74.007827, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-07 08:39:00', 'Trip_Pickup_DateTime': '2009-06-07 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741475, 'End_Lon': -73.981122, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735327, 'Start_Lon': -74.004893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-03 23:27:00', 'Trip_Pickup_DateTime': '2009-06-03 23:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792253, 'End_Lon': -73.965992, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756902, 'Start_Lon': -74.001017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-07 17:21:00', 'Trip_Pickup_DateTime': '2009-06-07 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757783, 'End_Lon': -73.982662, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738607, 'Start_Lon': -73.995912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-07 04:28:00', 'Trip_Pickup_DateTime': '2009-06-07 04:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755637, 'End_Lon': -73.973053, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73273, 'Start_Lon': -73.987557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-05 07:41:00', 'Trip_Pickup_DateTime': '2009-06-05 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-03 21:34:00', 'Trip_Pickup_DateTime': '2009-06-03 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784128, 'End_Lon': -73.94996, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762612, 'Start_Lon': -73.974412, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-04 20:32:00', 'Trip_Pickup_DateTime': '2009-06-04 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76129, 'End_Lon': -73.99955, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75839, 'Start_Lon': -73.978765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-06 08:54:00', 'Trip_Pickup_DateTime': '2009-06-06 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730297, 'End_Lon': -74.004268, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725398, 'Start_Lon': -73.977942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-04 02:45:00', 'Trip_Pickup_DateTime': '2009-06-04 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770907, 'End_Lon': -73.982267, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786392, 'Start_Lon': -73.97213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-07 23:24:00', 'Trip_Pickup_DateTime': '2009-06-07 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763808, 'End_Lon': -73.964735, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757502, 'Start_Lon': -73.986107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-19 16:16:00', 'Trip_Pickup_DateTime': '2009-06-19 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766792, 'End_Lon': -73.99294, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765523, 'Start_Lon': -73.995142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-05 14:46:00', 'Trip_Pickup_DateTime': '2009-06-05 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728068, 'End_Lon': -74.002395, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723032, 'Start_Lon': -74.007912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-03 20:57:00', 'Trip_Pickup_DateTime': '2009-06-03 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744, 'End_Lon': -74.006512, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743777, 'Start_Lon': -73.995703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-23 06:56:00', 'Trip_Pickup_DateTime': '2009-06-23 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72372, 'End_Lon': -73.998538, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723742, 'Start_Lon': -73.99846, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-08 14:07:00', 'Trip_Pickup_DateTime': '2009-06-08 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725537, 'End_Lon': -74.004817, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733275, 'Start_Lon': -73.996893, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-05 10:10:00', 'Trip_Pickup_DateTime': '2009-06-05 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762248, 'End_Lon': -73.96361, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740737, 'Start_Lon': -73.989448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-19 16:07:00', 'Trip_Pickup_DateTime': '2009-06-19 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76083, 'End_Lon': -73.98005, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750573, 'Start_Lon': -73.973443, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-17 12:40:00', 'Trip_Pickup_DateTime': '2009-06-17 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755777, 'End_Lon': -73.9834, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724718, 'Start_Lon': -73.99875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-03 19:29:00', 'Trip_Pickup_DateTime': '2009-06-03 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774173, 'End_Lon': -73.95952, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763167, 'Start_Lon': -73.96591, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-08 07:27:00', 'Trip_Pickup_DateTime': '2009-06-08 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76823, 'End_Lon': -73.97025, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771058, 'Start_Lon': -73.968013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-05 15:54:00', 'Trip_Pickup_DateTime': '2009-06-05 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765727, 'End_Lon': -73.980415, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778357, 'Start_Lon': -73.9817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-05 01:20:00', 'Trip_Pickup_DateTime': '2009-06-05 01:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747428, 'End_Lon': -73.993812, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769473, 'Start_Lon': -73.982128, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-02 15:57:00', 'Trip_Pickup_DateTime': '2009-06-02 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757535, 'End_Lon': -73.974933, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749045, 'Start_Lon': -73.981152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-02 12:02:00', 'Trip_Pickup_DateTime': '2009-06-02 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749418, 'End_Lon': -73.991905, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757297, 'Start_Lon': -73.984112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-05 08:40:00', 'Trip_Pickup_DateTime': '2009-06-05 08:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77383, 'End_Lon': -73.87055, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784993, 'Start_Lon': -73.969502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.3, 'Trip_Distance': 8.85, 'Trip_Dropoff_DateTime': '2009-06-07 13:38:00', 'Trip_Pickup_DateTime': '2009-06-07 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734582, 'End_Lon': -73.99082, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744502, 'Start_Lon': -73.99164, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-04 12:48:00', 'Trip_Pickup_DateTime': '2009-06-04 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752597, 'End_Lon': -73.978375, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764008, 'Start_Lon': -73.998595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-04 15:43:00', 'Trip_Pickup_DateTime': '2009-06-04 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771495, 'End_Lon': -73.961438, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.772327, 'Start_Lon': -73.955718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-13 01:22:40', 'Trip_Pickup_DateTime': '2009-06-13 01:19:51', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.690932, 'End_Lon': -73.957367, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739255, 'Start_Lon': -73.995183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.52, 'Trip_Dropoff_DateTime': '2009-06-05 04:06:00', 'Trip_Pickup_DateTime': '2009-06-05 03:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771527, 'End_Lon': -73.908823, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771547, 'Start_Lon': -73.908837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-05 08:53:00', 'Trip_Pickup_DateTime': '2009-06-05 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736503, 'End_Lon': -73.990768, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727875, 'Start_Lon': -73.993187, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-28 00:23:00', 'Trip_Pickup_DateTime': '2009-06-28 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740273, 'End_Lon': -73.986398, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746188, 'Start_Lon': -74.000728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-03 21:12:00', 'Trip_Pickup_DateTime': '2009-06-03 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777283, 'End_Lon': -73.952112, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74767, 'Start_Lon': -73.985027, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-03 20:41:00', 'Trip_Pickup_DateTime': '2009-06-03 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729093, 'End_Lon': -73.984963, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738097, 'Start_Lon': -73.983713, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-05 04:51:00', 'Trip_Pickup_DateTime': '2009-06-05 04:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.813628, 'End_Lon': -73.951647, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744438, 'Start_Lon': -73.92774, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.17, 'Trip_Dropoff_DateTime': '2009-06-03 20:38:00', 'Trip_Pickup_DateTime': '2009-06-03 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734268, 'End_Lon': -74.006213, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72412, 'Start_Lon': -74.004493, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-04 22:10:00', 'Trip_Pickup_DateTime': '2009-06-04 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730232, 'End_Lon': -73.989785, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76271, 'Start_Lon': -73.967815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-05 20:52:00', 'Trip_Pickup_DateTime': '2009-06-05 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732508, 'End_Lon': -73.984665, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761707, 'Start_Lon': -73.974882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-03 21:51:00', 'Trip_Pickup_DateTime': '2009-06-03 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74328, 'End_Lon': -74.004898, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734398, 'Start_Lon': -73.989797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-06 00:46:00', 'Trip_Pickup_DateTime': '2009-06-06 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757048, 'End_Lon': -73.989787, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7411, 'Start_Lon': -74.001488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-02 21:58:00', 'Trip_Pickup_DateTime': '2009-06-02 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776643, 'End_Lon': -73.975485, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767957, 'Start_Lon': -73.983145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-05 07:42:00', 'Trip_Pickup_DateTime': '2009-06-05 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644957, 'End_Lon': -73.776482, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720288, 'Start_Lon': -74.005343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.56, 'Trip_Dropoff_DateTime': '2009-06-04 09:12:00', 'Trip_Pickup_DateTime': '2009-06-04 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759113, 'End_Lon': -73.981572, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754967, 'Start_Lon': -73.983948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-03 12:03:00', 'Trip_Pickup_DateTime': '2009-06-03 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742783, 'End_Lon': -73.9831, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740815, 'Start_Lon': -73.990227, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-02 19:57:00', 'Trip_Pickup_DateTime': '2009-06-02 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720228, 'End_Lon': -73.98824, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750412, 'Start_Lon': -73.978603, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-04 19:34:00', 'Trip_Pickup_DateTime': '2009-06-04 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752383, 'End_Lon': -73.97541, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782022, 'Start_Lon': -73.953832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-05 09:10:00', 'Trip_Pickup_DateTime': '2009-06-05 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720165, 'End_Lon': -73.988288, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744832, 'Start_Lon': -73.987598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-04 20:06:00', 'Trip_Pickup_DateTime': '2009-06-04 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749482, 'End_Lon': -73.996747, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759345, 'Start_Lon': -73.986737, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-08 06:36:00', 'Trip_Pickup_DateTime': '2009-06-08 06:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737227, 'End_Lon': -73.997083, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723938, 'Start_Lon': -73.991658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-06 04:44:00', 'Trip_Pickup_DateTime': '2009-06-06 04:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78141, 'End_Lon': -73.98284, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729225, 'Start_Lon': -74.003825, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.85, 'Trip_Dropoff_DateTime': '2009-06-05 23:19:00', 'Trip_Pickup_DateTime': '2009-06-05 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.808303, 'End_Lon': -73.960072, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771068, 'Start_Lon': -73.865872, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 24.35, 'Trip_Distance': 7.82, 'Trip_Dropoff_DateTime': '2009-06-04 20:58:00', 'Trip_Pickup_DateTime': '2009-06-04 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.83079, 'End_Lon': -73.922088, 'Fare_Amt': 22.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755863, 'Start_Lon': -73.991233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 8.56, 'Trip_Dropoff_DateTime': '2009-06-06 08:09:00', 'Trip_Pickup_DateTime': '2009-06-06 07:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752695, 'End_Lon': -73.968232, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768543, 'Start_Lon': -73.983158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-04 16:33:00', 'Trip_Pickup_DateTime': '2009-06-04 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747467, 'End_Lon': -74.008228, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745648, 'Start_Lon': -73.999383, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-24 14:06:00', 'Trip_Pickup_DateTime': '2009-06-24 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77033, 'End_Lon': -73.991167, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777435, 'Start_Lon': -73.985602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-03 06:54:00', 'Trip_Pickup_DateTime': '2009-06-03 06:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.643788, 'End_Lon': -73.783465, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782982, 'Start_Lon': -73.974813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 20.39, 'Trip_Dropoff_DateTime': '2009-06-26 06:01:00', 'Trip_Pickup_DateTime': '2009-06-26 05:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760108, 'End_Lon': -73.990933, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764397, 'Start_Lon': -73.981508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-03 10:55:00', 'Trip_Pickup_DateTime': '2009-06-03 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720015, 'End_Lon': -73.978678, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723488, 'Start_Lon': -73.99108, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-05 13:07:00', 'Trip_Pickup_DateTime': '2009-06-05 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750823, 'End_Lon': -73.980248, 'Fare_Amt': 16.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706638, 'Start_Lon': -74.006918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 5.07, 'Trip_Dropoff_DateTime': '2009-06-08 16:26:00', 'Trip_Pickup_DateTime': '2009-06-08 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798738, 'End_Lon': -73.961643, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790483, 'Start_Lon': -73.94756, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-05 22:22:00', 'Trip_Pickup_DateTime': '2009-06-05 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79373, 'End_Lon': -73.970843, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76249, 'Start_Lon': -73.97843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-04 23:06:00', 'Trip_Pickup_DateTime': '2009-06-04 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.81334, 'End_Lon': -73.953868, 'Fare_Amt': 17.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813338, 'Start_Lon': -73.953877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-07 20:45:00', 'Trip_Pickup_DateTime': '2009-06-07 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789358, 'End_Lon': -73.952682, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733357, 'Start_Lon': -73.981215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.82, 'Trip_Dropoff_DateTime': '2009-06-24 06:46:00', 'Trip_Pickup_DateTime': '2009-06-24 06:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742, 'End_Lon': -73.98116, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765182, 'Start_Lon': -73.979592, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-06 21:41:00', 'Trip_Pickup_DateTime': '2009-06-06 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}]\n",
            "got page number 8 with 1000 records\n",
            "[{'End_Lat': 40.76042, 'End_Lon': -73.960093, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763818, 'Start_Lon': -73.977737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-04 09:54:00', 'Trip_Pickup_DateTime': '2009-06-04 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761785, 'End_Lon': -73.971315, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73997, 'Start_Lon': -73.986597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-05 12:49:00', 'Trip_Pickup_DateTime': '2009-06-05 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726755, 'End_Lon': -74.000028, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760355, 'Start_Lon': -73.964478, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.5, 'Trip_Dropoff_DateTime': '2009-06-04 15:55:00', 'Trip_Pickup_DateTime': '2009-06-04 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734982, 'End_Lon': -74.001817, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75161, 'Start_Lon': -73.990563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-05 06:54:00', 'Trip_Pickup_DateTime': '2009-06-05 06:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768168, 'End_Lon': -73.956292, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781923, 'Start_Lon': -73.955727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-04 16:18:00', 'Trip_Pickup_DateTime': '2009-06-04 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768308, 'End_Lon': -73.861653, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757263, 'Start_Lon': -73.985237, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.85, 'Trip_Distance': 10.0, 'Trip_Dropoff_DateTime': '2009-06-04 18:48:00', 'Trip_Pickup_DateTime': '2009-06-04 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7883, 'End_Lon': -73.974453, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780675, 'Start_Lon': -73.976288, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-05 16:28:00', 'Trip_Pickup_DateTime': '2009-06-05 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747607, 'End_Lon': -73.992903, 'Fare_Amt': 5.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747612, 'Start_Lon': -73.992897, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-06 00:22:00', 'Trip_Pickup_DateTime': '2009-06-06 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78872, 'End_Lon': -73.945648, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76064, 'Start_Lon': -73.987368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-24 14:14:00', 'Trip_Pickup_DateTime': '2009-06-24 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741283, 'End_Lon': -73.996363, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749838, 'Start_Lon': -73.993597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-07 18:44:00', 'Trip_Pickup_DateTime': '2009-06-07 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775133, 'End_Lon': -73.963283, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770527, 'Start_Lon': -73.962242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-05 16:10:00', 'Trip_Pickup_DateTime': '2009-06-05 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75867, 'End_Lon': -73.971323, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737208, 'Start_Lon': -73.979508, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-02 09:22:00', 'Trip_Pickup_DateTime': '2009-06-02 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77998, 'End_Lon': -73.95949, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769448, 'Start_Lon': -73.96721, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-04 11:34:00', 'Trip_Pickup_DateTime': '2009-06-04 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738485, 'End_Lon': -73.980745, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775295, 'Start_Lon': -73.95364, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-04 12:27:00', 'Trip_Pickup_DateTime': '2009-06-04 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731608, 'End_Lon': -73.99034, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734163, 'Start_Lon': -74.006283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-08 08:06:00', 'Trip_Pickup_DateTime': '2009-06-08 07:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782463, 'End_Lon': -73.95555, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775162, 'Start_Lon': -73.96108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-08 13:39:00', 'Trip_Pickup_DateTime': '2009-06-08 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755483, 'End_Lon': -73.993457, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709667, 'Start_Lon': -74.016503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.21, 'Trip_Dropoff_DateTime': '2009-06-05 08:04:00', 'Trip_Pickup_DateTime': '2009-06-05 07:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74653, 'End_Lon': -73.997073, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.763636, 'Start_Lon': -73.975635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-30 13:35:10', 'Trip_Pickup_DateTime': '2009-06-30 13:19:46', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.756315, 'End_Lon': -73.989747, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761148, 'Start_Lon': -73.971087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-04 19:05:00', 'Trip_Pickup_DateTime': '2009-06-04 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704923, 'End_Lon': -74.015547, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731113, 'Start_Lon': -73.982673, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-02 00:15:00', 'Trip_Pickup_DateTime': '2009-06-02 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740338, 'End_Lon': -74.00572, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769765, 'Start_Lon': -73.977408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-06 11:30:00', 'Trip_Pickup_DateTime': '2009-06-06 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786718, 'End_Lon': -73.95471, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77963, 'Start_Lon': -73.956565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-08 12:02:00', 'Trip_Pickup_DateTime': '2009-06-08 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772547, 'End_Lon': -73.97912, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763748, 'Start_Lon': -73.965057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-03 18:55:00', 'Trip_Pickup_DateTime': '2009-06-03 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748278, 'End_Lon': -73.992972, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765095, 'Start_Lon': -73.987792, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 9.85, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-04 14:48:00', 'Trip_Pickup_DateTime': '2009-06-04 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718985, 'End_Lon': -73.989807, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723007, 'Start_Lon': -73.988557, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-07 03:52:00', 'Trip_Pickup_DateTime': '2009-06-07 03:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745182, 'End_Lon': -73.982643, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748122, 'Start_Lon': -73.98026, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-03 10:52:00', 'Trip_Pickup_DateTime': '2009-06-03 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756005, 'End_Lon': -73.979593, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7322, 'Start_Lon': -73.996312, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-04 10:32:00', 'Trip_Pickup_DateTime': '2009-06-04 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749083, 'End_Lon': -73.98638, 'Fare_Amt': 15.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79864, 'Start_Lon': -73.969023, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-02 16:46:00', 'Trip_Pickup_DateTime': '2009-06-02 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765167, 'End_Lon': -73.913125, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740033, 'Start_Lon': -74.005692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 8.32, 'Trip_Dropoff_DateTime': '2009-06-06 04:17:00', 'Trip_Pickup_DateTime': '2009-06-06 03:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768487, 'End_Lon': -73.957463, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762347, 'Start_Lon': -73.965978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-07 18:39:00', 'Trip_Pickup_DateTime': '2009-06-07 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.62868, 'End_Lon': -74.025912, 'Fare_Amt': 32.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724628, 'Start_Lon': -73.990658, 'Tip_Amt': 6.0, 'Tolls_Amt': 0.0, 'Total_Amt': 38.6, 'Trip_Distance': 13.88, 'Trip_Dropoff_DateTime': '2009-06-07 03:08:00', 'Trip_Pickup_DateTime': '2009-06-07 02:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775453, 'End_Lon': -73.983932, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776598, 'Start_Lon': -73.98923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-05 15:43:00', 'Trip_Pickup_DateTime': '2009-06-05 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73702, 'End_Lon': -73.988402, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756402, 'Start_Lon': -73.990572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-04 09:48:00', 'Trip_Pickup_DateTime': '2009-06-04 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728118, 'End_Lon': -74.005277, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730978, 'Start_Lon': -73.992135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-03 13:18:00', 'Trip_Pickup_DateTime': '2009-06-03 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75105, 'End_Lon': -73.979493, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738513, 'Start_Lon': -73.993705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-03 14:49:00', 'Trip_Pickup_DateTime': '2009-06-03 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75348, 'End_Lon': -73.804332, 'Fare_Amt': 28.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770057, 'Start_Lon': -73.917205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.5, 'Trip_Distance': 11.88, 'Trip_Dropoff_DateTime': '2009-06-04 11:16:00', 'Trip_Pickup_DateTime': '2009-06-04 10:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768577, 'End_Lon': -73.98154, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743825, 'Start_Lon': -73.999502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-06 22:27:00', 'Trip_Pickup_DateTime': '2009-06-06 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749623, 'End_Lon': -73.987818, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725087, 'Start_Lon': -73.995573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-06 18:11:00', 'Trip_Pickup_DateTime': '2009-06-06 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718948, 'End_Lon': -74.005157, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751907, 'Start_Lon': -73.993057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-03 15:14:00', 'Trip_Pickup_DateTime': '2009-06-03 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745627, 'End_Lon': -73.904058, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747943, 'Start_Lon': -73.88231, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-07 01:30:00', 'Trip_Pickup_DateTime': '2009-06-07 01:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776057, 'End_Lon': -73.947498, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778742, 'Start_Lon': -73.981438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-06 10:08:00', 'Trip_Pickup_DateTime': '2009-06-06 09:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766212, 'End_Lon': -73.957458, 'Fare_Amt': 10.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72466, 'Start_Lon': -73.987363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-03 15:03:00', 'Trip_Pickup_DateTime': '2009-06-03 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771413, 'End_Lon': -73.982177, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751207, 'Start_Lon': -73.994158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-06 17:08:00', 'Trip_Pickup_DateTime': '2009-06-06 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741483, 'End_Lon': -73.975127, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727738, 'Start_Lon': -73.994543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-04 11:30:00', 'Trip_Pickup_DateTime': '2009-06-04 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74257, 'End_Lon': -73.984655, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769423, 'Start_Lon': -73.951843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-05 21:26:00', 'Trip_Pickup_DateTime': '2009-06-05 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727848, 'End_Lon': -73.946178, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729413, 'Start_Lon': -73.981867, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-04 23:47:00', 'Trip_Pickup_DateTime': '2009-06-04 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727573, 'End_Lon': -74.000697, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73056, 'Start_Lon': -74.001012, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-03 01:04:00', 'Trip_Pickup_DateTime': '2009-06-03 00:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.646957, 'End_Lon': -73.790068, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646958, 'Start_Lon': -73.790062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-06 19:56:00', 'Trip_Pickup_DateTime': '2009-06-06 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76175, 'End_Lon': -73.98647, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753173, 'Start_Lon': -73.97844, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-02 10:50:00', 'Trip_Pickup_DateTime': '2009-06-02 10:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788215, 'End_Lon': -73.978452, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773857, 'Start_Lon': -73.871882, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.45, 'Trip_Distance': 9.45, 'Trip_Dropoff_DateTime': '2009-06-03 13:44:00', 'Trip_Pickup_DateTime': '2009-06-03 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716148, 'End_Lon': -74.016985, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71077, 'Start_Lon': -74.024592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-04 11:03:00', 'Trip_Pickup_DateTime': '2009-06-04 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71282, 'End_Lon': -73.965412, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728897, 'Start_Lon': -74.000705, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-03 23:48:00', 'Trip_Pickup_DateTime': '2009-06-03 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767893, 'End_Lon': -73.980795, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764908, 'Start_Lon': -73.97206, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-02 14:37:00', 'Trip_Pickup_DateTime': '2009-06-02 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761675, 'End_Lon': -73.966423, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733432, 'Start_Lon': -73.986987, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-06 15:52:00', 'Trip_Pickup_DateTime': '2009-06-06 15:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71139, 'End_Lon': -74.015182, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746488, 'Start_Lon': -73.979773, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.62, 'Trip_Dropoff_DateTime': '2009-06-05 10:35:00', 'Trip_Pickup_DateTime': '2009-06-05 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752253, 'End_Lon': -73.967088, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75267, 'Start_Lon': -73.975043, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-02 09:06:00', 'Trip_Pickup_DateTime': '2009-06-02 09:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744468, 'End_Lon': -73.991147, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743518, 'Start_Lon': -73.999742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-02 13:40:00', 'Trip_Pickup_DateTime': '2009-06-02 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748278, 'End_Lon': -73.984625, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717862, 'Start_Lon': -74.000108, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-06 16:31:00', 'Trip_Pickup_DateTime': '2009-06-06 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740682, 'End_Lon': -73.997173, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745183, 'Start_Lon': -73.994802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-05 19:21:00', 'Trip_Pickup_DateTime': '2009-06-05 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739155, 'End_Lon': -73.980193, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731632, 'Start_Lon': -73.982297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-03 11:49:00', 'Trip_Pickup_DateTime': '2009-06-03 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778668, 'End_Lon': -73.945482, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748653, 'Start_Lon': -73.992193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.31, 'Trip_Dropoff_DateTime': '2009-06-06 19:56:00', 'Trip_Pickup_DateTime': '2009-06-06 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723873, 'End_Lon': -73.990967, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786035, 'Start_Lon': -73.972545, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 5.41, 'Trip_Dropoff_DateTime': '2009-06-06 20:47:00', 'Trip_Pickup_DateTime': '2009-06-06 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754952, 'End_Lon': -73.984397, 'Fare_Amt': 14.9, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708605, 'Start_Lon': -74.007332, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.47, 'Trip_Dropoff_DateTime': '2009-06-05 06:36:00', 'Trip_Pickup_DateTime': '2009-06-05 06:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72389, 'End_Lon': -73.991862, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724152, 'Start_Lon': -74.00452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-05 12:54:00', 'Trip_Pickup_DateTime': '2009-06-05 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748822, 'End_Lon': -73.991945, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75141, 'Start_Lon': -73.996155, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-07 01:44:00', 'Trip_Pickup_DateTime': '2009-06-07 01:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769462, 'End_Lon': -73.992072, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76201, 'Start_Lon': -73.986635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-04 21:08:00', 'Trip_Pickup_DateTime': '2009-06-04 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764813, 'End_Lon': -73.966273, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76883, 'Start_Lon': -73.952453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-02 08:08:00', 'Trip_Pickup_DateTime': '2009-06-02 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800228, 'End_Lon': -73.971125, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793342, 'Start_Lon': -73.972687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-07 12:59:00', 'Trip_Pickup_DateTime': '2009-06-07 12:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782025, 'End_Lon': -73.955585, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78029, 'Start_Lon': -73.979445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-06 23:11:00', 'Trip_Pickup_DateTime': '2009-06-06 23:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764252, 'End_Lon': -73.980805, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722362, 'Start_Lon': -74.003643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-08 01:20:00', 'Trip_Pickup_DateTime': '2009-06-08 01:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753717, 'End_Lon': -73.986833, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750063, 'Start_Lon': -73.978063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-08 12:37:00', 'Trip_Pickup_DateTime': '2009-06-08 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748781, 'End_Lon': -73.984887, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.753765, 'Start_Lon': -73.974502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-08 17:46:49', 'Trip_Pickup_DateTime': '2009-06-08 17:38:55', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.775479, 'End_Lon': -73.92003, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.730568, 'Start_Lon': -74.000319, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 7.1, 'Trip_Dropoff_DateTime': '2009-06-09 01:52:21', 'Trip_Pickup_DateTime': '2009-06-09 01:31:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.77841, 'End_Lon': -73.975038, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.749806, 'Start_Lon': -73.981438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-08 20:50:32', 'Trip_Pickup_DateTime': '2009-06-08 20:40:03', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.781725, 'End_Lon': -73.956047, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789497, 'Start_Lon': -73.977525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-02 10:25:00', 'Trip_Pickup_DateTime': '2009-06-02 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743208, 'End_Lon': -73.973895, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73678, 'Start_Lon': -73.995377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-06 16:20:00', 'Trip_Pickup_DateTime': '2009-06-06 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743132, 'End_Lon': -73.98948, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785187, 'Start_Lon': -73.949467, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-06 15:41:00', 'Trip_Pickup_DateTime': '2009-06-06 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711833, 'End_Lon': -74.011917, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729917, 'Start_Lon': -73.985122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-02 03:34:00', 'Trip_Pickup_DateTime': '2009-06-02 03:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72976, 'End_Lon': -73.99869, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736008, 'Start_Lon': -73.989585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-06 21:53:00', 'Trip_Pickup_DateTime': '2009-06-06 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681798, 'End_Lon': -73.994377, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74962, 'Start_Lon': -73.987877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.84, 'Trip_Dropoff_DateTime': '2009-06-07 23:06:00', 'Trip_Pickup_DateTime': '2009-06-07 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682037, 'End_Lon': -73.903628, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690613, 'Start_Lon': -73.95529, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-03 23:20:00', 'Trip_Pickup_DateTime': '2009-06-03 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768375, 'End_Lon': -73.861705, 'Fare_Amt': 30.1, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74789, 'Start_Lon': -74.003935, 'Tip_Amt': 4.9, 'Tolls_Amt': 5.0, 'Total_Amt': 40.0, 'Trip_Distance': 10.88, 'Trip_Dropoff_DateTime': '2009-06-04 09:59:00', 'Trip_Pickup_DateTime': '2009-06-04 09:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77948, 'End_Lon': -73.921137, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781932, 'Start_Lon': -73.916858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-02 12:15:00', 'Trip_Pickup_DateTime': '2009-06-02 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760572, 'End_Lon': -73.974595, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74035, 'Start_Lon': -74.005802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-03 00:29:00', 'Trip_Pickup_DateTime': '2009-06-03 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757807, 'End_Lon': -73.979237, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751298, 'Start_Lon': -73.99415, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-02 07:22:00', 'Trip_Pickup_DateTime': '2009-06-02 07:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760135, 'End_Lon': -73.974152, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734033, 'Start_Lon': -73.976908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-05 08:43:00', 'Trip_Pickup_DateTime': '2009-06-05 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751075, 'End_Lon': -73.972753, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781987, 'Start_Lon': -73.953852, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-02 10:11:00', 'Trip_Pickup_DateTime': '2009-06-02 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804958, 'End_Lon': -73.954885, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762168, 'Start_Lon': -73.98342, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.55, 'Trip_Dropoff_DateTime': '2009-06-05 01:35:00', 'Trip_Pickup_DateTime': '2009-06-05 01:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-03 20:41:00', 'Trip_Pickup_DateTime': '2009-06-03 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749438, 'End_Lon': -73.992752, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780247, 'Start_Lon': -73.957008, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-07 14:37:00', 'Trip_Pickup_DateTime': '2009-06-07 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751335, 'End_Lon': -73.99048, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762212, 'Start_Lon': -73.972305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-06 18:35:00', 'Trip_Pickup_DateTime': '2009-06-06 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739342, 'End_Lon': -73.993143, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784053, 'Start_Lon': -73.981672, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-06 21:59:00', 'Trip_Pickup_DateTime': '2009-06-06 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732533, 'End_Lon': -73.983232, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751053, 'Start_Lon': -73.991047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-08 02:03:00', 'Trip_Pickup_DateTime': '2009-06-08 01:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741153, 'End_Lon': -74.005315, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740852, 'Start_Lon': -73.990083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-03 10:35:00', 'Trip_Pickup_DateTime': '2009-06-03 10:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782032, 'End_Lon': -73.963323, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781743, 'Start_Lon': -73.951855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-02 20:39:00', 'Trip_Pickup_DateTime': '2009-06-02 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715927, 'End_Lon': -74.004903, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737482, 'Start_Lon': -74.000703, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-08 07:33:00', 'Trip_Pickup_DateTime': '2009-06-08 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766642, 'End_Lon': -73.953183, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755383, 'Start_Lon': -73.977112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-02 16:40:00', 'Trip_Pickup_DateTime': '2009-06-02 16:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733017, 'End_Lon': -73.97535, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764205, 'Start_Lon': -73.964907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-02 21:26:00', 'Trip_Pickup_DateTime': '2009-06-02 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783777, 'End_Lon': -73.969747, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796358, 'Start_Lon': -73.972598, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-08 02:29:00', 'Trip_Pickup_DateTime': '2009-06-08 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804528, 'End_Lon': -73.966473, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800497, 'Start_Lon': -73.96782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-02 11:17:00', 'Trip_Pickup_DateTime': '2009-06-02 11:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759635, 'End_Lon': -73.99548, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792273, 'Start_Lon': -73.976022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-04 07:39:00', 'Trip_Pickup_DateTime': '2009-06-04 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754917, 'End_Lon': -73.96466, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773612, 'Start_Lon': -73.962063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-05 11:48:00', 'Trip_Pickup_DateTime': '2009-06-05 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7353, 'End_Lon': -73.984155, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72615, 'Start_Lon': -73.991832, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 6.45, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-04 10:25:00', 'Trip_Pickup_DateTime': '2009-06-04 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783843, 'End_Lon': -73.957963, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78547, 'Start_Lon': -73.950035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-04 10:13:00', 'Trip_Pickup_DateTime': '2009-06-04 10:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759063, 'End_Lon': -73.97693, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76443, 'Start_Lon': -73.979515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-04 14:06:00', 'Trip_Pickup_DateTime': '2009-06-04 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755613, 'End_Lon': -73.980258, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765113, 'Start_Lon': -73.961103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-05 21:15:00', 'Trip_Pickup_DateTime': '2009-06-05 21:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772967, 'End_Lon': -73.966753, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794112, 'Start_Lon': -73.972307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-07 18:16:00', 'Trip_Pickup_DateTime': '2009-06-07 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7573, 'End_Lon': -73.974023, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75805, 'Start_Lon': -73.969315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-08 10:14:00', 'Trip_Pickup_DateTime': '2009-06-08 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760742, 'End_Lon': -74.002627, 'Fare_Amt': 10.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765838, 'Start_Lon': -73.980848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-02 17:47:00', 'Trip_Pickup_DateTime': '2009-06-02 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745303, 'End_Lon': -73.99491, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749663, 'Start_Lon': -73.983763, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-07 14:32:00', 'Trip_Pickup_DateTime': '2009-06-07 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763632, 'End_Lon': -73.971012, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736225, 'Start_Lon': -74.006715, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-07 15:37:00', 'Trip_Pickup_DateTime': '2009-06-07 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780148, 'End_Lon': -73.956532, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781672, 'Start_Lon': -73.946017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-03 12:45:00', 'Trip_Pickup_DateTime': '2009-06-03 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778185, 'End_Lon': -73.956795, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77348, 'Start_Lon': -73.962233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-03 13:09:00', 'Trip_Pickup_DateTime': '2009-06-03 13:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703277, 'End_Lon': -73.994022, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763583, 'Start_Lon': -73.962475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 8.58, 'Trip_Dropoff_DateTime': '2009-06-03 11:06:00', 'Trip_Pickup_DateTime': '2009-06-03 10:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74257, 'End_Lon': -73.996908, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737768, 'Start_Lon': -73.98812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-05 19:36:00', 'Trip_Pickup_DateTime': '2009-06-05 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721822, 'End_Lon': -74.004145, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714883, 'Start_Lon': -73.958792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.22, 'Trip_Dropoff_DateTime': '2009-06-04 23:17:00', 'Trip_Pickup_DateTime': '2009-06-04 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778842, 'End_Lon': -73.974095, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774378, 'Start_Lon': -73.954343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-27 14:47:00', 'Trip_Pickup_DateTime': '2009-06-27 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750492, 'End_Lon': -73.977452, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736918, 'Start_Lon': -74.005415, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-03 10:54:00', 'Trip_Pickup_DateTime': '2009-06-03 10:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777385, 'End_Lon': -73.943205, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773312, 'Start_Lon': -73.960673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-27 15:10:00', 'Trip_Pickup_DateTime': '2009-06-27 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748975, 'End_Lon': -74.004945, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771695, 'Start_Lon': -73.956392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 5.63, 'Trip_Dropoff_DateTime': '2009-06-05 10:59:00', 'Trip_Pickup_DateTime': '2009-06-05 10:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728115, 'End_Lon': -73.987983, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741858, 'Start_Lon': -73.990268, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-06 19:05:00', 'Trip_Pickup_DateTime': '2009-06-06 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756988, 'End_Lon': -73.983348, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754948, 'Start_Lon': -73.968383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-02 17:41:00', 'Trip_Pickup_DateTime': '2009-06-02 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727203, 'End_Lon': -73.982793, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734012, 'Start_Lon': -73.989448, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-05 00:35:00', 'Trip_Pickup_DateTime': '2009-06-05 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732428, 'End_Lon': -73.994127, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726463, 'Start_Lon': -74.000253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-05 07:21:00', 'Trip_Pickup_DateTime': '2009-06-05 07:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7882, 'End_Lon': -73.978168, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780583, 'Start_Lon': -73.98391, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-02 07:58:00', 'Trip_Pickup_DateTime': '2009-06-02 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744842, 'End_Lon': -73.978267, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728012, 'Start_Lon': -73.984975, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-07 02:16:00', 'Trip_Pickup_DateTime': '2009-06-07 02:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74056, 'End_Lon': -73.979047, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739858, 'Start_Lon': -74.006953, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-06 01:22:00', 'Trip_Pickup_DateTime': '2009-06-06 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.861668, 'End_Lon': -73.928142, 'Fare_Amt': 26.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741638, 'Start_Lon': -73.907425, 'Tip_Amt': 1.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.75, 'Trip_Distance': 10.96, 'Trip_Dropoff_DateTime': '2009-06-07 20:46:00', 'Trip_Pickup_DateTime': '2009-06-07 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728632, 'End_Lon': -74.000517, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722148, 'Start_Lon': -73.997188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-06 17:56:00', 'Trip_Pickup_DateTime': '2009-06-06 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.872993, 'End_Lon': -73.913082, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784975, 'Start_Lon': -73.976953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.99, 'Trip_Dropoff_DateTime': '2009-06-04 05:53:00', 'Trip_Pickup_DateTime': '2009-06-04 05:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73716, 'End_Lon': -73.993877, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75019, 'Start_Lon': -73.99137, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-04 20:22:00', 'Trip_Pickup_DateTime': '2009-06-04 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758833, 'End_Lon': -73.984308, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789902, 'Start_Lon': -73.947963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-07 11:58:00', 'Trip_Pickup_DateTime': '2009-06-07 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715083, 'End_Lon': -74.011498, 'Fare_Amt': 36.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771325, 'Start_Lon': -73.865632, 'Tip_Amt': 12.0, 'Tolls_Amt': 0.0, 'Total_Amt': 48.5, 'Trip_Distance': 13.79, 'Trip_Dropoff_DateTime': '2009-06-07 17:28:00', 'Trip_Pickup_DateTime': '2009-06-07 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793243, 'End_Lon': -73.974527, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787313, 'Start_Lon': -73.967883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-05 15:25:00', 'Trip_Pickup_DateTime': '2009-06-05 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750477, 'End_Lon': -73.991403, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750525, 'Start_Lon': -73.991475, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-06 17:54:00', 'Trip_Pickup_DateTime': '2009-06-06 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766273, 'End_Lon': -73.9811, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768045, 'Start_Lon': -73.968465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-02 13:58:00', 'Trip_Pickup_DateTime': '2009-06-02 13:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742765, 'End_Lon': -73.992747, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760155, 'Start_Lon': -73.994938, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-02 07:47:00', 'Trip_Pickup_DateTime': '2009-06-02 07:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789612, 'End_Lon': -73.950555, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804187, 'Start_Lon': -73.937645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-06 20:54:00', 'Trip_Pickup_DateTime': '2009-06-06 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.645073, 'End_Lon': -73.776442, 'Fare_Amt': 31.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773823, 'Start_Lon': -73.871925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 32.3, 'Trip_Distance': 13.64, 'Trip_Dropoff_DateTime': '2009-06-03 19:12:00', 'Trip_Pickup_DateTime': '2009-06-03 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735803, 'End_Lon': -73.981745, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727463, 'Start_Lon': -73.979388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-08 10:34:00', 'Trip_Pickup_DateTime': '2009-06-08 10:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779497, 'End_Lon': -73.96216, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766577, 'Start_Lon': -73.983153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-05 14:24:00', 'Trip_Pickup_DateTime': '2009-06-05 14:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740683, 'End_Lon': -73.99825, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763623, 'Start_Lon': -73.997907, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-07 04:21:00', 'Trip_Pickup_DateTime': '2009-06-07 04:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758702, 'End_Lon': -73.969355, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76627, 'Start_Lon': -73.983162, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-08 10:14:00', 'Trip_Pickup_DateTime': '2009-06-08 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730897, 'End_Lon': -74.002802, 'Fare_Amt': 6.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734787, 'Start_Lon': -73.990788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-06 20:23:00', 'Trip_Pickup_DateTime': '2009-06-06 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.795048, 'End_Lon': -73.944302, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704552, 'Start_Lon': -74.013362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 9.23, 'Trip_Dropoff_DateTime': '2009-06-05 01:01:00', 'Trip_Pickup_DateTime': '2009-06-05 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740743, 'End_Lon': -74.004722, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725288, 'Start_Lon': -73.984033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-04 23:10:00', 'Trip_Pickup_DateTime': '2009-06-04 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762778, 'End_Lon': -73.9894, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77231, 'Start_Lon': -73.982617, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-06 19:27:00', 'Trip_Pickup_DateTime': '2009-06-06 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762893, 'End_Lon': -73.986912, 'Fare_Amt': 10.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79202, 'Start_Lon': -73.968125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-04 18:51:00', 'Trip_Pickup_DateTime': '2009-06-04 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7507, 'End_Lon': -73.990643, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763562, 'Start_Lon': -73.985415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-02 21:54:00', 'Trip_Pickup_DateTime': '2009-06-02 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.707742, 'End_Lon': -74.012442, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718947, 'Start_Lon': -73.994635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-26 12:04:00', 'Trip_Pickup_DateTime': '2009-06-26 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759645, 'End_Lon': -73.98498, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760217, 'Start_Lon': -73.994812, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-06 16:58:00', 'Trip_Pickup_DateTime': '2009-06-06 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736612, 'End_Lon': -73.990695, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732807, 'Start_Lon': -73.981562, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-06 10:42:00', 'Trip_Pickup_DateTime': '2009-06-06 10:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723148, 'End_Lon': -74.046475, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72567, 'Start_Lon': -74.045685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-07 17:34:00', 'Trip_Pickup_DateTime': '2009-06-07 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739138, 'End_Lon': -73.98273, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73874, 'Start_Lon': -73.992027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-04 22:21:00', 'Trip_Pickup_DateTime': '2009-06-04 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721993, 'End_Lon': -73.99972, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72478, 'Start_Lon': -73.984407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-04 19:44:00', 'Trip_Pickup_DateTime': '2009-06-04 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705375, 'End_Lon': -74.017163, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7273, 'Start_Lon': -73.995305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-03 00:26:00', 'Trip_Pickup_DateTime': '2009-06-03 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743235, 'End_Lon': -74.006608, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709522, 'Start_Lon': -74.009647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-06 19:51:00', 'Trip_Pickup_DateTime': '2009-06-06 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779628, 'End_Lon': -73.9559, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763787, 'Start_Lon': -73.982255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-06 15:46:00', 'Trip_Pickup_DateTime': '2009-06-06 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762612, 'End_Lon': -73.976978, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768522, 'Start_Lon': -73.984617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-03 21:07:00', 'Trip_Pickup_DateTime': '2009-06-03 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76728, 'End_Lon': -73.96678, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778312, 'Start_Lon': -73.960985, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-07 15:04:00', 'Trip_Pickup_DateTime': '2009-06-07 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742107, 'End_Lon': -74.000767, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73535, 'Start_Lon': -73.99827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-02 15:02:00', 'Trip_Pickup_DateTime': '2009-06-02 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7307, 'End_Lon': -73.987152, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74387, 'Start_Lon': -73.981318, 'Tip_Amt': 7.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-06 23:50:00', 'Trip_Pickup_DateTime': '2009-06-06 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763255, 'End_Lon': -73.976578, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80318, 'Start_Lon': -73.967442, 'Tip_Amt': 2.35, 'Tolls_Amt': 0.0, 'Total_Amt': 14.05, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-08 10:08:00', 'Trip_Pickup_DateTime': '2009-06-08 09:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-05 19:35:00', 'Trip_Pickup_DateTime': '2009-06-05 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759825, 'End_Lon': -73.976965, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751425, 'Start_Lon': -73.994272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-02 14:17:00', 'Trip_Pickup_DateTime': '2009-06-02 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.839415, 'End_Lon': -73.941503, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774253, 'Start_Lon': -73.981107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 5.66, 'Trip_Dropoff_DateTime': '2009-06-29 06:41:00', 'Trip_Pickup_DateTime': '2009-06-29 06:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785683, 'End_Lon': -73.945995, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793615, 'Start_Lon': -73.940245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-02 07:26:00', 'Trip_Pickup_DateTime': '2009-06-02 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757432, 'End_Lon': -73.972297, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770635, 'Start_Lon': -73.962003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-08 09:35:00', 'Trip_Pickup_DateTime': '2009-06-08 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742058, 'End_Lon': -73.997187, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751642, 'Start_Lon': -73.99019, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-03 12:08:00', 'Trip_Pickup_DateTime': '2009-06-03 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75581, 'End_Lon': -73.978535, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763002, 'Start_Lon': -73.981283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-05 20:37:00', 'Trip_Pickup_DateTime': '2009-06-05 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738767, 'End_Lon': -73.986882, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73911, 'Start_Lon': -73.979783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-05 08:01:00', 'Trip_Pickup_DateTime': '2009-06-05 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737125, 'End_Lon': -73.903495, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746805, 'Start_Lon': -73.893798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-26 23:58:00', 'Trip_Pickup_DateTime': '2009-06-26 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715488, 'End_Lon': -73.985217, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739182, 'Start_Lon': -73.994312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-02 22:33:00', 'Trip_Pickup_DateTime': '2009-06-02 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.67903, 'End_Lon': -73.966085, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726117, 'Start_Lon': -74.006095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.7, 'Trip_Dropoff_DateTime': '2009-06-07 09:16:00', 'Trip_Pickup_DateTime': '2009-06-07 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742503, 'End_Lon': -73.991778, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75783, 'Start_Lon': -73.962872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-03 10:56:00', 'Trip_Pickup_DateTime': '2009-06-03 10:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771632, 'End_Lon': -73.95896, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771745, 'Start_Lon': -73.950282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-05 12:10:00', 'Trip_Pickup_DateTime': '2009-06-05 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762893, 'End_Lon': -73.991373, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754413, 'Start_Lon': -73.968602, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 9.15, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-05 01:49:00', 'Trip_Pickup_DateTime': '2009-06-05 01:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777527, 'End_Lon': -73.959057, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762127, 'Start_Lon': -73.966063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-06 16:43:00', 'Trip_Pickup_DateTime': '2009-06-06 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736148, 'End_Lon': -73.994095, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749412, 'Start_Lon': -73.979127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-05 23:53:00', 'Trip_Pickup_DateTime': '2009-06-05 23:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73214, 'End_Lon': -74.002285, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743077, 'Start_Lon': -73.977167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-26 22:53:00', 'Trip_Pickup_DateTime': '2009-06-26 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7947, 'End_Lon': -73.971662, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79455, 'Start_Lon': -73.971553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-07 00:20:00', 'Trip_Pickup_DateTime': '2009-06-07 00:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774082, 'End_Lon': -73.96588, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741035, 'Start_Lon': -74.00791, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.08, 'Trip_Dropoff_DateTime': '2009-06-05 10:49:00', 'Trip_Pickup_DateTime': '2009-06-05 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7567, 'End_Lon': -73.973922, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745813, 'Start_Lon': -73.977903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-03 07:00:00', 'Trip_Pickup_DateTime': '2009-06-03 06:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724737, 'End_Lon': -73.997433, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729253, 'Start_Lon': -73.993713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-02 13:47:00', 'Trip_Pickup_DateTime': '2009-06-02 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762418, 'End_Lon': -73.968852, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760393, 'Start_Lon': -73.973087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-04 13:42:00', 'Trip_Pickup_DateTime': '2009-06-04 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765887, 'End_Lon': -73.955272, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.788792, 'Start_Lon': -73.977678, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-06 07:02:00', 'Trip_Pickup_DateTime': '2009-06-06 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755683, 'End_Lon': -73.987813, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762477, 'Start_Lon': -73.985813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-02 11:45:00', 'Trip_Pickup_DateTime': '2009-06-02 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750215, 'End_Lon': -73.991333, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753105, 'Start_Lon': -73.984922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-04 13:36:00', 'Trip_Pickup_DateTime': '2009-06-04 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749593, 'End_Lon': -73.991805, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739798, 'Start_Lon': -73.989617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-03 22:44:00', 'Trip_Pickup_DateTime': '2009-06-03 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779355, 'End_Lon': -73.988387, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775397, 'Start_Lon': -73.980037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-03 22:09:00', 'Trip_Pickup_DateTime': '2009-06-03 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749353, 'End_Lon': -73.980745, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761288, 'Start_Lon': -73.972223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-03 12:32:00', 'Trip_Pickup_DateTime': '2009-06-03 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738537, 'End_Lon': -73.987658, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770067, 'Start_Lon': -73.863588, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 9.82, 'Trip_Dropoff_DateTime': '2009-06-08 15:20:00', 'Trip_Pickup_DateTime': '2009-06-08 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759207, 'End_Lon': -73.980715, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755932, 'Start_Lon': -73.990853, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-04 08:19:00', 'Trip_Pickup_DateTime': '2009-06-04 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75179, 'End_Lon': -73.977652, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73735, 'Start_Lon': -73.988618, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-03 21:38:00', 'Trip_Pickup_DateTime': '2009-06-03 21:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774947, 'End_Lon': -73.956713, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767572, 'Start_Lon': -73.962088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-03 19:42:00', 'Trip_Pickup_DateTime': '2009-06-03 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706785, 'End_Lon': -73.949422, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735637, 'Start_Lon': -73.98982, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.2, 'Trip_Distance': 3.92, 'Trip_Dropoff_DateTime': '2009-06-02 05:47:00', 'Trip_Pickup_DateTime': '2009-06-02 05:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758128, 'End_Lon': -73.981815, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744738, 'Start_Lon': -73.978852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-04 08:43:00', 'Trip_Pickup_DateTime': '2009-06-04 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75308, 'End_Lon': -73.893365, 'Fare_Amt': 17.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7642, 'Start_Lon': -73.98098, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-07 19:32:00', 'Trip_Pickup_DateTime': '2009-06-07 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.69425, 'End_Lon': -73.995077, 'Fare_Amt': 36.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648642, 'Start_Lon': -73.783495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 36.1, 'Trip_Distance': 14.31, 'Trip_Dropoff_DateTime': '2009-06-07 18:31:00', 'Trip_Pickup_DateTime': '2009-06-07 17:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764652, 'End_Lon': -73.973778, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761927, 'Start_Lon': -73.98638, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-04 13:27:00', 'Trip_Pickup_DateTime': '2009-06-04 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.88744, 'End_Lon': -73.905455, 'Fare_Amt': 24.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772735, 'Start_Lon': -73.977465, 'Tip_Amt': 6.37, 'Tolls_Amt': 1.9, 'Total_Amt': 33.77, 'Trip_Distance': 9.81, 'Trip_Dropoff_DateTime': '2009-06-04 20:10:00', 'Trip_Pickup_DateTime': '2009-06-04 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748653, 'End_Lon': -73.986995, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769095, 'Start_Lon': -73.95856, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-04 14:48:00', 'Trip_Pickup_DateTime': '2009-06-04 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76128, 'End_Lon': -73.98991, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724845, 'Start_Lon': -73.987322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-08 03:27:00', 'Trip_Pickup_DateTime': '2009-06-08 03:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78519, 'End_Lon': -73.978635, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769822, 'Start_Lon': -73.982547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-04 15:41:00', 'Trip_Pickup_DateTime': '2009-06-04 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737925, 'End_Lon': -73.988263, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773187, 'Start_Lon': -73.958083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-04 09:05:00', 'Trip_Pickup_DateTime': '2009-06-04 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736152, 'End_Lon': -73.993357, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760212, 'Start_Lon': -73.985012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-06 19:17:00', 'Trip_Pickup_DateTime': '2009-06-06 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722822, 'End_Lon': -73.980017, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737715, 'Start_Lon': -73.988988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-03 21:34:00', 'Trip_Pickup_DateTime': '2009-06-03 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76175, 'End_Lon': -73.970682, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7543, 'Start_Lon': -73.968788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-02 16:23:00', 'Trip_Pickup_DateTime': '2009-06-02 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754808, 'End_Lon': -73.99998, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76041, 'Start_Lon': -73.995048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-08 10:05:00', 'Trip_Pickup_DateTime': '2009-06-08 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748937, 'End_Lon': -73.991698, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759662, 'Start_Lon': -73.979772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-02 21:06:00', 'Trip_Pickup_DateTime': '2009-06-02 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763628, 'End_Lon': -73.926142, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.64654, 'Start_Lon': -73.788277, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 37.4, 'Trip_Distance': 14.69, 'Trip_Dropoff_DateTime': '2009-06-05 23:14:00', 'Trip_Pickup_DateTime': '2009-06-05 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756185, 'End_Lon': -73.975528, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779425, 'Start_Lon': -73.944768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-02 08:16:00', 'Trip_Pickup_DateTime': '2009-06-02 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730392, 'End_Lon': -73.990253, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732762, 'Start_Lon': -73.99592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-03 09:30:00', 'Trip_Pickup_DateTime': '2009-06-03 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757565, 'End_Lon': -73.993335, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779572, 'Start_Lon': -73.981783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-05 09:07:00', 'Trip_Pickup_DateTime': '2009-06-05 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732383, 'End_Lon': -73.999038, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769285, 'Start_Lon': -73.982733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-05 23:05:00', 'Trip_Pickup_DateTime': '2009-06-05 22:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738465, 'End_Lon': -73.999787, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735997, 'Start_Lon': -73.987402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-04 09:08:00', 'Trip_Pickup_DateTime': '2009-06-04 09:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72785, 'End_Lon': -73.999202, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747573, 'Start_Lon': -73.9849, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-08 09:27:00', 'Trip_Pickup_DateTime': '2009-06-08 09:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78218, 'End_Lon': -73.945363, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774647, 'Start_Lon': -73.945145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-05 06:56:00', 'Trip_Pickup_DateTime': '2009-06-05 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742763, 'End_Lon': -73.98733, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755097, 'Start_Lon': -73.983635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-05 14:18:00', 'Trip_Pickup_DateTime': '2009-06-05 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761348, 'End_Lon': -73.989218, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751455, 'Start_Lon': -73.976962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-02 21:50:00', 'Trip_Pickup_DateTime': '2009-06-02 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782577, 'End_Lon': -73.947233, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786005, 'Start_Lon': -73.952668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-02 09:51:00', 'Trip_Pickup_DateTime': '2009-06-02 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76379, 'End_Lon': -73.970408, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746258, 'Start_Lon': -73.997797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-07 03:07:00', 'Trip_Pickup_DateTime': '2009-06-07 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740062, 'End_Lon': -73.99002, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739273, 'Start_Lon': -73.976647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-06 13:36:00', 'Trip_Pickup_DateTime': '2009-06-06 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750795, 'End_Lon': -73.974367, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762792, 'Start_Lon': -73.98612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-08 14:09:00', 'Trip_Pickup_DateTime': '2009-06-08 13:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720542, 'End_Lon': -73.982448, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748892, 'Start_Lon': -73.99231, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-03 20:34:00', 'Trip_Pickup_DateTime': '2009-06-03 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.813427, 'End_Lon': -73.952163, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759555, 'Start_Lon': -73.981312, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 4.71, 'Trip_Dropoff_DateTime': '2009-06-04 03:14:00', 'Trip_Pickup_DateTime': '2009-06-04 02:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749295, 'End_Lon': -73.990328, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76529, 'Start_Lon': -73.98759, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-06 13:13:00', 'Trip_Pickup_DateTime': '2009-06-06 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755535, 'End_Lon': -73.970575, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74387, 'Start_Lon': -73.98575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-04 21:26:00', 'Trip_Pickup_DateTime': '2009-06-04 21:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750113, 'End_Lon': -73.93595, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750958, 'Start_Lon': -73.90166, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-04 06:32:00', 'Trip_Pickup_DateTime': '2009-06-04 06:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731647, 'End_Lon': -73.985557, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751062, 'Start_Lon': -73.97336, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-04 20:27:00', 'Trip_Pickup_DateTime': '2009-06-04 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746808, 'End_Lon': -73.983553, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751708, 'Start_Lon': -73.986812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-04 10:55:00', 'Trip_Pickup_DateTime': '2009-06-04 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7528, 'End_Lon': -73.975392, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76759, 'Start_Lon': -73.970985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-06 18:01:00', 'Trip_Pickup_DateTime': '2009-06-06 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749903, 'End_Lon': -73.976938, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76058, 'Start_Lon': -73.969653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-17 13:59:00', 'Trip_Pickup_DateTime': '2009-06-17 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757113, 'End_Lon': -73.987067, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755008, 'Start_Lon': -73.972218, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-02 18:20:00', 'Trip_Pickup_DateTime': '2009-06-02 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803972, 'End_Lon': -73.936375, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788508, 'Start_Lon': -73.949005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-08 08:19:00', 'Trip_Pickup_DateTime': '2009-06-08 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.661737, 'End_Lon': -73.979257, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.697172, 'Start_Lon': -73.993207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.6, 'Trip_Dropoff_DateTime': '2009-06-08 01:25:00', 'Trip_Pickup_DateTime': '2009-06-08 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72268, 'End_Lon': -73.979887, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735602, 'Start_Lon': -73.979415, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-06 14:25:00', 'Trip_Pickup_DateTime': '2009-06-06 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.614912, 'End_Lon': -73.980322, 'Fare_Amt': 42.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756188, 'Start_Lon': -73.990612, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 47.05, 'Trip_Distance': 16.58, 'Trip_Dropoff_DateTime': '2009-06-17 12:50:00', 'Trip_Pickup_DateTime': '2009-06-17 11:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732237, 'End_Lon': -74.001608, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761715, 'Start_Lon': -73.97505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-06 20:48:00', 'Trip_Pickup_DateTime': '2009-06-06 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769735, 'End_Lon': -73.9684, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782108, 'Start_Lon': -73.951845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-08 15:17:00', 'Trip_Pickup_DateTime': '2009-06-08 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735063, 'End_Lon': -73.99339, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71592, 'Start_Lon': -73.986673, 'Tip_Amt': 0.02, 'Tolls_Amt': 0.0, 'Total_Amt': 8.62, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-04 20:46:00', 'Trip_Pickup_DateTime': '2009-06-04 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775922, 'End_Lon': -73.947417, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770495, 'Start_Lon': -73.980138, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-08 11:56:00', 'Trip_Pickup_DateTime': '2009-06-08 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751623, 'End_Lon': -73.990855, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757245, 'Start_Lon': -73.990775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-03 11:28:00', 'Trip_Pickup_DateTime': '2009-06-03 11:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740427, 'End_Lon': -73.990428, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760212, 'Start_Lon': -73.969985, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-05 11:14:00', 'Trip_Pickup_DateTime': '2009-06-05 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780732, 'End_Lon': -73.976642, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761685, 'Start_Lon': -73.973638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-02 22:50:00', 'Trip_Pickup_DateTime': '2009-06-02 22:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747433, 'End_Lon': -73.970593, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764132, 'Start_Lon': -73.992085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-17 13:14:00', 'Trip_Pickup_DateTime': '2009-06-17 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762208, 'End_Lon': -73.982043, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767292, 'Start_Lon': -73.982917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-05 11:52:00', 'Trip_Pickup_DateTime': '2009-06-05 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735883, 'End_Lon': -73.997845, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724823, 'Start_Lon': -73.994732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-05 23:52:00', 'Trip_Pickup_DateTime': '2009-06-05 23:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731027, 'End_Lon': -73.991728, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717358, 'Start_Lon': -73.991098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-05 12:01:00', 'Trip_Pickup_DateTime': '2009-06-05 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773055, 'End_Lon': -73.953375, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772182, 'Start_Lon': -73.982517, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-07 02:02:00', 'Trip_Pickup_DateTime': '2009-06-07 01:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.811372, 'End_Lon': -73.962237, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.818037, 'Start_Lon': -73.9565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-08 06:36:00', 'Trip_Pickup_DateTime': '2009-06-08 06:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80616, 'End_Lon': -73.961433, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781987, 'Start_Lon': -73.979203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-03 08:42:00', 'Trip_Pickup_DateTime': '2009-06-03 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741835, 'End_Lon': -73.975017, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743938, 'Start_Lon': -73.991832, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-03 03:47:00', 'Trip_Pickup_DateTime': '2009-06-03 03:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75479, 'End_Lon': -73.977805, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71978, 'Start_Lon': -73.998445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-03 18:31:00', 'Trip_Pickup_DateTime': '2009-06-03 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774692, 'End_Lon': -73.950983, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756887, 'Start_Lon': -73.969882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-08 11:42:00', 'Trip_Pickup_DateTime': '2009-06-08 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786182, 'End_Lon': -73.979787, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795542, 'Start_Lon': -73.972865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-02 22:35:00', 'Trip_Pickup_DateTime': '2009-06-02 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777603, 'End_Lon': -73.988775, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773887, 'Start_Lon': -73.960542, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-05 13:57:00', 'Trip_Pickup_DateTime': '2009-06-05 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779622, 'End_Lon': -73.949535, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77439, 'Start_Lon': -73.948495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-07 02:43:00', 'Trip_Pickup_DateTime': '2009-06-07 02:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727332, 'End_Lon': -73.979453, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737018, 'Start_Lon': -74.000778, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-04 23:39:00', 'Trip_Pickup_DateTime': '2009-06-04 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778195, 'End_Lon': -73.948407, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768817, 'Start_Lon': -73.984498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.86, 'Trip_Dropoff_DateTime': '2009-06-03 18:11:00', 'Trip_Pickup_DateTime': '2009-06-03 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736857, 'End_Lon': -73.99056, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721667, 'Start_Lon': -73.997272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-08 16:11:00', 'Trip_Pickup_DateTime': '2009-06-08 16:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745115, 'End_Lon': -73.984798, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70255, 'Start_Lon': -74.012407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.04, 'Trip_Dropoff_DateTime': '2009-06-06 20:10:00', 'Trip_Pickup_DateTime': '2009-06-06 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778527, 'End_Lon': -73.954133, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749958, 'Start_Lon': -73.9918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-06 10:10:00', 'Trip_Pickup_DateTime': '2009-06-06 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765943, 'End_Lon': -73.963607, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769092, 'Start_Lon': -73.961382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-03 12:56:00', 'Trip_Pickup_DateTime': '2009-06-03 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773538, 'End_Lon': -73.956013, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790615, 'Start_Lon': -73.974787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-07 21:49:00', 'Trip_Pickup_DateTime': '2009-06-07 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770028, 'End_Lon': -73.984492, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779243, 'Start_Lon': -73.980957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-03 18:05:00', 'Trip_Pickup_DateTime': '2009-06-03 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777838, 'End_Lon': -73.961265, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766635, 'Start_Lon': -73.97987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-06 14:20:00', 'Trip_Pickup_DateTime': '2009-06-06 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758177, 'End_Lon': -73.991112, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748822, 'Start_Lon': -73.988708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-06 16:29:00', 'Trip_Pickup_DateTime': '2009-06-06 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726688, 'End_Lon': -73.994517, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7365, 'Start_Lon': -73.99741, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-06 23:48:00', 'Trip_Pickup_DateTime': '2009-06-06 23:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753548, 'End_Lon': -73.967502, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760523, 'Start_Lon': -73.97391, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-27 15:12:00', 'Trip_Pickup_DateTime': '2009-06-27 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741305, 'End_Lon': -74.007298, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70983, 'Start_Lon': -74.014635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-06 20:08:00', 'Trip_Pickup_DateTime': '2009-06-06 19:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75149, 'End_Lon': -73.978097, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757595, 'Start_Lon': -73.982388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-02 16:42:00', 'Trip_Pickup_DateTime': '2009-06-02 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708745, 'End_Lon': -74.007688, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727032, 'Start_Lon': -73.99168, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-05 01:32:00', 'Trip_Pickup_DateTime': '2009-06-05 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742915, 'End_Lon': -74.003908, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750222, 'Start_Lon': -73.998627, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-05 18:30:00', 'Trip_Pickup_DateTime': '2009-06-05 18:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749665, 'End_Lon': -73.982117, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741858, 'Start_Lon': -73.975152, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-12 14:13:00', 'Trip_Pickup_DateTime': '2009-06-12 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779047, 'End_Lon': -73.9613, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758593, 'Start_Lon': -73.973308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-12 15:18:00', 'Trip_Pickup_DateTime': '2009-06-12 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717305, 'End_Lon': -74.012822, 'Fare_Amt': 24.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762305, 'Start_Lon': -73.960017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.1, 'Trip_Distance': 7.27, 'Trip_Dropoff_DateTime': '2009-06-09 09:06:00', 'Trip_Pickup_DateTime': '2009-06-09 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75752, 'End_Lon': -73.98627, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769388, 'Start_Lon': -73.986567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-09 08:27:00', 'Trip_Pickup_DateTime': '2009-06-09 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757533, 'End_Lon': -73.96159, 'Fare_Amt': 8.1, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763167, 'Start_Lon': -73.983173, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-12 14:35:00', 'Trip_Pickup_DateTime': '2009-06-12 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759928, 'End_Lon': -73.976748, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768422, 'Start_Lon': -73.955643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-12 11:18:00', 'Trip_Pickup_DateTime': '2009-06-12 11:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730027, 'End_Lon': -74.002299, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.742763, 'Start_Lon': -73.996611, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-22 06:42:01', 'Trip_Pickup_DateTime': '2009-06-22 06:38:57', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.750467, 'End_Lon': -73.990928, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76356, 'Start_Lon': -73.98663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-02 22:17:00', 'Trip_Pickup_DateTime': '2009-06-02 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75786, 'End_Lon': -73.971393, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750622, 'Start_Lon': -73.97812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-12 12:14:00', 'Trip_Pickup_DateTime': '2009-06-12 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753235, 'End_Lon': -73.970712, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774618, 'Start_Lon': -73.948125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-12 11:06:00', 'Trip_Pickup_DateTime': '2009-06-12 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733842, 'End_Lon': -74.002582, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746743, 'Start_Lon': -73.985927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-04 20:04:00', 'Trip_Pickup_DateTime': '2009-06-04 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751358, 'End_Lon': -74.006732, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744922, 'Start_Lon': -73.997895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-09 08:17:00', 'Trip_Pickup_DateTime': '2009-06-09 08:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757503, 'End_Lon': -73.972222, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772593, 'Start_Lon': -73.949175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-09 06:36:00', 'Trip_Pickup_DateTime': '2009-06-09 06:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791673, 'End_Lon': -73.940837, 'Fare_Amt': 2.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.791673, 'Start_Lon': -73.940837, 'Tip_Amt': 13.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-30 15:21:00', 'Trip_Pickup_DateTime': '2009-06-30 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758478, 'End_Lon': -73.9707, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7697, 'Start_Lon': -73.95152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-09 07:00:00', 'Trip_Pickup_DateTime': '2009-06-09 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761132, 'End_Lon': -73.969148, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764647, 'Start_Lon': -73.927235, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-12 09:51:00', 'Trip_Pickup_DateTime': '2009-06-12 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779128, 'End_Lon': -73.960115, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758043, 'Start_Lon': -73.989203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-12 11:39:00', 'Trip_Pickup_DateTime': '2009-06-12 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76308, 'End_Lon': -73.969533, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776265, 'Start_Lon': -73.97626, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-30 15:08:00', 'Trip_Pickup_DateTime': '2009-06-30 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727937, 'End_Lon': -73.98245, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72719, 'Start_Lon': -73.991867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-09 00:27:00', 'Trip_Pickup_DateTime': '2009-06-09 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758927, 'End_Lon': -73.978728, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754182, 'Start_Lon': -73.992175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-12 09:53:00', 'Trip_Pickup_DateTime': '2009-06-12 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734168, 'End_Lon': -74.0081, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729258, 'Start_Lon': -73.987432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-08 23:45:00', 'Trip_Pickup_DateTime': '2009-06-08 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75377, 'End_Lon': -73.98486, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716235, 'Start_Lon': -74.004727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-12 10:36:00', 'Trip_Pickup_DateTime': '2009-06-12 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7385, 'End_Lon': -73.985915, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765335, 'Start_Lon': -73.978858, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-19 16:23:00', 'Trip_Pickup_DateTime': '2009-06-19 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75018, 'End_Lon': -73.994882, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738707, 'Start_Lon': -74.003482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-12 11:39:00', 'Trip_Pickup_DateTime': '2009-06-12 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746427, 'End_Lon': -73.978007, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735775, 'Start_Lon': -74.000732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-08 23:36:00', 'Trip_Pickup_DateTime': '2009-06-08 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736852, 'End_Lon': -73.98878, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726042, 'Start_Lon': -73.994612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-19 20:45:00', 'Trip_Pickup_DateTime': '2009-06-19 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782117, 'End_Lon': -73.953907, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798183, 'Start_Lon': -73.952363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-12 10:18:00', 'Trip_Pickup_DateTime': '2009-06-12 10:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74843, 'End_Lon': -73.988667, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750893, 'Start_Lon': -73.971667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-12 10:59:00', 'Trip_Pickup_DateTime': '2009-06-12 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755552, 'End_Lon': -73.991092, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73815, 'Start_Lon': -74.007542, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-05 09:17:00', 'Trip_Pickup_DateTime': '2009-06-05 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720253, 'End_Lon': -73.988982, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738338, 'Start_Lon': -73.99981, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-19 20:07:00', 'Trip_Pickup_DateTime': '2009-06-19 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77131, 'End_Lon': -73.98227, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75691, 'Start_Lon': -73.988517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-19 19:13:00', 'Trip_Pickup_DateTime': '2009-06-19 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78044, 'End_Lon': -73.945988, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747977, 'Start_Lon': -73.976738, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-19 20:01:00', 'Trip_Pickup_DateTime': '2009-06-19 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714637, 'End_Lon': -73.977343, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759037, 'Start_Lon': -73.989563, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-05 21:20:00', 'Trip_Pickup_DateTime': '2009-06-05 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747178, 'End_Lon': -73.984445, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767903, 'Start_Lon': -73.95915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-06 02:44:00', 'Trip_Pickup_DateTime': '2009-06-06 02:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741133, 'End_Lon': -74.0007, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76521, 'Start_Lon': -73.981713, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-06 02:18:00', 'Trip_Pickup_DateTime': '2009-06-06 02:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736832, 'End_Lon': -73.990233, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773075, 'Start_Lon': -73.982433, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-06 15:41:00', 'Trip_Pickup_DateTime': '2009-06-06 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76727, 'End_Lon': -73.97896, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770245, 'Start_Lon': -73.991442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-19 19:08:00', 'Trip_Pickup_DateTime': '2009-06-19 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797738, 'End_Lon': -73.969373, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728567, 'Start_Lon': -74.005993, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.89, 'Trip_Dropoff_DateTime': '2009-06-08 15:37:00', 'Trip_Pickup_DateTime': '2009-06-08 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783985, 'End_Lon': -73.972395, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774002, 'Start_Lon': -73.872273, 'Tip_Amt': 4.6, 'Tolls_Amt': 5.0, 'Total_Amt': 32.6, 'Trip_Distance': 9.19, 'Trip_Dropoff_DateTime': '2009-06-08 00:16:00', 'Trip_Pickup_DateTime': '2009-06-07 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788715, 'End_Lon': -73.947685, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779935, 'Start_Lon': -73.953288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-06 18:07:00', 'Trip_Pickup_DateTime': '2009-06-06 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772342, 'End_Lon': -73.953073, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780792, 'Start_Lon': -73.98296, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-03 12:03:00', 'Trip_Pickup_DateTime': '2009-06-03 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764825, 'End_Lon': -73.960758, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643603, 'Start_Lon': -73.790283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 21.29, 'Trip_Dropoff_DateTime': '2009-06-08 15:38:00', 'Trip_Pickup_DateTime': '2009-06-08 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761902, 'End_Lon': -73.979955, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76851, 'Start_Lon': -73.983922, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-05 14:05:00', 'Trip_Pickup_DateTime': '2009-06-05 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79036, 'End_Lon': -73.941863, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805553, 'Start_Lon': -73.961925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-19 18:56:00', 'Trip_Pickup_DateTime': '2009-06-19 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753045, 'End_Lon': -73.977375, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759925, 'Start_Lon': -73.972102, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-19 18:13:00', 'Trip_Pickup_DateTime': '2009-06-19 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782203, 'End_Lon': -73.80021, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769875, 'Start_Lon': -73.863207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.82, 'Trip_Dropoff_DateTime': '2009-06-08 15:41:00', 'Trip_Pickup_DateTime': '2009-06-08 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756247, 'End_Lon': -73.990197, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753577, 'Start_Lon': -73.97871, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-19 19:55:00', 'Trip_Pickup_DateTime': '2009-06-19 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752197, 'End_Lon': -74.005023, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707855, 'Start_Lon': -74.011582, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-07 01:11:00', 'Trip_Pickup_DateTime': '2009-06-07 00:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78782, 'End_Lon': -73.955675, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775435, 'Start_Lon': -73.976505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-05 08:18:00', 'Trip_Pickup_DateTime': '2009-06-05 08:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73577, 'End_Lon': -73.993713, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73577, 'Start_Lon': -73.993713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-19 17:30:00', 'Trip_Pickup_DateTime': '2009-06-19 17:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78025, 'End_Lon': -73.98407, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788738, 'Start_Lon': -73.977895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-19 18:17:00', 'Trip_Pickup_DateTime': '2009-06-19 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804305, 'End_Lon': -73.9652, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7847, 'Start_Lon': -73.969657, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-04 15:01:00', 'Trip_Pickup_DateTime': '2009-06-04 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709682, 'End_Lon': -74.013262, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718877, 'Start_Lon': -73.988792, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 0.19, 'Trip_Dropoff_DateTime': '2009-06-05 17:26:00', 'Trip_Pickup_DateTime': '2009-06-05 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767275, 'End_Lon': -73.982075, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77741, 'Start_Lon': -73.98643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-07 09:58:00', 'Trip_Pickup_DateTime': '2009-06-07 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736027, 'End_Lon': -73.98564, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758307, 'Start_Lon': -73.977427, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-06 18:32:00', 'Trip_Pickup_DateTime': '2009-06-06 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75569, 'End_Lon': -73.971587, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769023, 'Start_Lon': -73.955075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-05 08:52:00', 'Trip_Pickup_DateTime': '2009-06-05 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.634447, 'End_Lon': -74.014447, 'Fare_Amt': 20.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732268, 'Start_Lon': -74.003758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 8.7, 'Trip_Dropoff_DateTime': '2009-06-06 06:04:00', 'Trip_Pickup_DateTime': '2009-06-06 05:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765415, 'End_Lon': -73.968048, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773733, 'Start_Lon': -73.963968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-07 12:25:00', 'Trip_Pickup_DateTime': '2009-06-07 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735923, 'End_Lon': -74.000727, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751743, 'Start_Lon': -74.007738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-07 00:14:00', 'Trip_Pickup_DateTime': '2009-06-06 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.61956, 'End_Lon': -73.97098, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713998, 'Start_Lon': -74.00631, 'Tip_Amt': 6.77, 'Tolls_Amt': 0.0, 'Total_Amt': 33.87, 'Trip_Distance': 8.62, 'Trip_Dropoff_DateTime': '2009-06-04 17:36:00', 'Trip_Pickup_DateTime': '2009-06-04 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764505, 'End_Lon': -73.9685, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752117, 'Start_Lon': -73.96769, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-08 08:42:00', 'Trip_Pickup_DateTime': '2009-06-08 08:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731395, 'End_Lon': -74.008433, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732723, 'Start_Lon': -73.924752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 18.92, 'Trip_Dropoff_DateTime': '2009-06-19 16:27:00', 'Trip_Pickup_DateTime': '2009-06-19 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773098, 'End_Lon': -73.948875, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72408, 'Start_Lon': -73.978905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-06 00:47:00', 'Trip_Pickup_DateTime': '2009-06-06 00:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746025, 'End_Lon': -73.97783, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739208, 'Start_Lon': -73.999315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-02 11:20:00', 'Trip_Pickup_DateTime': '2009-06-02 11:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75792, 'End_Lon': -73.973227, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749545, 'Start_Lon': -73.9732, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-17 13:16:00', 'Trip_Pickup_DateTime': '2009-06-17 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.868045, 'End_Lon': -73.923793, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.806177, 'Start_Lon': -73.96549, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.33, 'Trip_Dropoff_DateTime': '2009-06-05 22:43:00', 'Trip_Pickup_DateTime': '2009-06-05 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743353, 'End_Lon': -73.993767, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736988, 'Start_Lon': -73.978748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-03 23:26:00', 'Trip_Pickup_DateTime': '2009-06-03 23:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761343, 'End_Lon': -73.968328, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775955, 'Start_Lon': -73.98225, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-03 11:53:00', 'Trip_Pickup_DateTime': '2009-06-03 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759108, 'End_Lon': -73.972763, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77057, 'Start_Lon': -73.962417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-07 17:22:00', 'Trip_Pickup_DateTime': '2009-06-07 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785782, 'End_Lon': -73.956822, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.645277, 'Start_Lon': -73.776885, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 59.15, 'Trip_Distance': 19.72, 'Trip_Dropoff_DateTime': '2009-06-07 13:20:00', 'Trip_Pickup_DateTime': '2009-06-07 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759317, 'End_Lon': -73.967338, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761883, 'Start_Lon': -73.965377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-05 19:41:00', 'Trip_Pickup_DateTime': '2009-06-05 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710917, 'End_Lon': -74.015923, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711327, 'Start_Lon': -74.008752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-04 18:56:00', 'Trip_Pickup_DateTime': '2009-06-04 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725583, 'End_Lon': -74.004052, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702195, 'Start_Lon': -74.012687, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-03 17:51:00', 'Trip_Pickup_DateTime': '2009-06-03 17:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78732, 'End_Lon': -73.954073, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764812, 'Start_Lon': -73.970283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-04 18:52:00', 'Trip_Pickup_DateTime': '2009-06-04 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739827, 'End_Lon': -73.995063, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755923, 'Start_Lon': -73.981932, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-04 14:48:00', 'Trip_Pickup_DateTime': '2009-06-04 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744323, 'End_Lon': -73.976185, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769757, 'Start_Lon': -73.957613, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-07 20:48:00', 'Trip_Pickup_DateTime': '2009-06-07 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747505, 'End_Lon': -73.981982, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751375, 'Start_Lon': -73.991087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-07 23:21:00', 'Trip_Pickup_DateTime': '2009-06-07 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790897, 'End_Lon': -73.951493, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765947, 'Start_Lon': -73.983395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 0.31, 'Trip_Dropoff_DateTime': '2009-06-05 18:29:00', 'Trip_Pickup_DateTime': '2009-06-05 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735035, 'End_Lon': -73.991805, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70958, 'Start_Lon': -74.010325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-07 22:26:00', 'Trip_Pickup_DateTime': '2009-06-07 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72124, 'End_Lon': -73.996792, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753228, 'Start_Lon': -73.98735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-04 16:28:00', 'Trip_Pickup_DateTime': '2009-06-04 16:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725192, 'End_Lon': -73.983183, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730905, 'Start_Lon': -74.001477, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-06 16:04:00', 'Trip_Pickup_DateTime': '2009-06-06 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.691207, 'End_Lon': -73.989717, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717127, 'Start_Lon': -73.95858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-07 02:18:00', 'Trip_Pickup_DateTime': '2009-06-07 02:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.684185, 'End_Lon': -73.977853, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725602, 'Start_Lon': -73.983885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.93, 'Trip_Dropoff_DateTime': '2009-06-03 00:40:00', 'Trip_Pickup_DateTime': '2009-06-03 00:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755008, 'End_Lon': -73.971932, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757787, 'Start_Lon': -73.986715, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-03 10:56:00', 'Trip_Pickup_DateTime': '2009-06-03 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757618, 'End_Lon': -73.974388, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758202, 'Start_Lon': -73.986947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-04 17:43:00', 'Trip_Pickup_DateTime': '2009-06-04 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756365, 'End_Lon': -73.97327, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749877, 'Start_Lon': -73.991333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-05 19:37:00', 'Trip_Pickup_DateTime': '2009-06-05 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78056, 'End_Lon': -73.97613, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750898, 'Start_Lon': -73.994465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-06 17:30:00', 'Trip_Pickup_DateTime': '2009-06-06 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759555, 'End_Lon': -73.971297, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751502, 'Start_Lon': -73.993923, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-03 06:47:00', 'Trip_Pickup_DateTime': '2009-06-03 06:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778203, 'End_Lon': -73.948693, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730888, 'Start_Lon': -74.00149, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 5.1, 'Trip_Dropoff_DateTime': '2009-06-07 03:10:00', 'Trip_Pickup_DateTime': '2009-06-07 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76057, 'End_Lon': -73.977512, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778047, 'Start_Lon': -73.988747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-02 07:39:00', 'Trip_Pickup_DateTime': '2009-06-02 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730533, 'End_Lon': -74.006868, 'Fare_Amt': 18.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767877, 'Start_Lon': -73.983145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-08 11:21:00', 'Trip_Pickup_DateTime': '2009-06-08 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751468, 'End_Lon': -73.978178, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746907, 'Start_Lon': -73.981855, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-03 12:50:00', 'Trip_Pickup_DateTime': '2009-06-03 12:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781797, 'End_Lon': -73.956192, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777545, 'Start_Lon': -73.974878, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-04 13:30:00', 'Trip_Pickup_DateTime': '2009-06-04 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744693, 'End_Lon': -73.9788, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73453, 'Start_Lon': -74.001295, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-02 23:08:00', 'Trip_Pickup_DateTime': '2009-06-02 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802308, 'End_Lon': -73.96222, 'Fare_Amt': 12.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763638, 'Start_Lon': -73.97748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-05 11:41:00', 'Trip_Pickup_DateTime': '2009-06-05 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766662, 'End_Lon': -73.984692, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764735, 'Start_Lon': -73.991838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-04 10:58:00', 'Trip_Pickup_DateTime': '2009-06-04 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750448, 'End_Lon': -73.987745, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708148, 'Start_Lon': -74.011783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-04 16:08:00', 'Trip_Pickup_DateTime': '2009-06-04 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730492, 'End_Lon': -73.980617, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742963, 'Start_Lon': -73.977077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-04 22:20:00', 'Trip_Pickup_DateTime': '2009-06-04 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72862, 'End_Lon': -73.995205, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729697, 'Start_Lon': -74.001815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-19 17:06:00', 'Trip_Pickup_DateTime': '2009-06-19 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774515, 'End_Lon': -73.981675, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77889, 'Start_Lon': -73.960322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-05 15:27:00', 'Trip_Pickup_DateTime': '2009-06-05 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729993, 'End_Lon': -74.008267, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727138, 'Start_Lon': -73.99995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-09 13:46:00', 'Trip_Pickup_DateTime': '2009-06-09 13:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769458, 'End_Lon': -73.959962, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772438, 'Start_Lon': -73.952812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-09 13:31:00', 'Trip_Pickup_DateTime': '2009-06-09 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764727, 'End_Lon': -73.970605, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764682, 'Start_Lon': -73.970687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-19 19:59:00', 'Trip_Pickup_DateTime': '2009-06-19 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743315, 'End_Lon': -74.00008, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753263, 'Start_Lon': -73.978307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-01 19:13:00', 'Trip_Pickup_DateTime': '2009-06-01 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768432, 'End_Lon': -73.86174, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755212, 'Start_Lon': -73.977367, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.25, 'Trip_Distance': 11.28, 'Trip_Dropoff_DateTime': '2009-06-09 14:14:00', 'Trip_Pickup_DateTime': '2009-06-09 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772315, 'End_Lon': -73.946675, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779398, 'Start_Lon': -73.95138, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-12 16:44:00', 'Trip_Pickup_DateTime': '2009-06-12 16:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718318, 'End_Lon': -73.996937, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74029, 'Start_Lon': -74.008005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-12 19:58:00', 'Trip_Pickup_DateTime': '2009-06-12 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711355, 'End_Lon': -73.947103, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7308, 'Start_Lon': -74.002802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.04, 'Trip_Dropoff_DateTime': '2009-06-12 20:34:00', 'Trip_Pickup_DateTime': '2009-06-12 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76192, 'End_Lon': -73.979798, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754163, 'Start_Lon': -73.978448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-09 08:15:00', 'Trip_Pickup_DateTime': '2009-06-09 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757512, 'End_Lon': -73.990505, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781685, 'Start_Lon': -73.981107, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-12 19:59:00', 'Trip_Pickup_DateTime': '2009-06-12 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.698117, 'End_Lon': -73.814118, 'Fare_Amt': 2.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.698117, 'Start_Lon': -73.814118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-01 15:59:00', 'Trip_Pickup_DateTime': '2009-06-01 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73707, 'End_Lon': -73.978892, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731208, 'Start_Lon': -73.986463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-09 13:23:00', 'Trip_Pickup_DateTime': '2009-06-09 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.827918, 'End_Lon': -73.925623, 'Fare_Amt': 26.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752753, 'Start_Lon': -73.972882, 'Tip_Amt': 8.25, 'Tolls_Amt': 0.0, 'Total_Amt': 35.75, 'Trip_Distance': 7.32, 'Trip_Dropoff_DateTime': '2009-06-12 18:29:00', 'Trip_Pickup_DateTime': '2009-06-12 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805033, 'End_Lon': -73.945277, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765768, 'Start_Lon': -73.976383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-19 18:59:00', 'Trip_Pickup_DateTime': '2009-06-19 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76824, 'End_Lon': -73.95706, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764, 'Start_Lon': -73.968917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-09 12:39:00', 'Trip_Pickup_DateTime': '2009-06-09 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705018, 'End_Lon': -74.017698, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703275, 'Start_Lon': -74.011868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-12 18:08:00', 'Trip_Pickup_DateTime': '2009-06-12 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76491, 'End_Lon': -73.95302, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751188, 'Start_Lon': -73.974527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-09 13:13:00', 'Trip_Pickup_DateTime': '2009-06-09 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75534, 'End_Lon': -73.963757, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768725, 'Start_Lon': -73.959973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-09 12:04:00', 'Trip_Pickup_DateTime': '2009-06-09 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787268, 'End_Lon': -73.944788, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778947, 'Start_Lon': -73.953905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-01 19:20:00', 'Trip_Pickup_DateTime': '2009-06-01 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779268, 'End_Lon': -73.954618, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776073, 'Start_Lon': -73.950213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-09 13:21:00', 'Trip_Pickup_DateTime': '2009-06-09 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742418, 'End_Lon': -73.891253, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745432, 'Start_Lon': -73.896588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-09 13:27:00', 'Trip_Pickup_DateTime': '2009-06-09 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75794, 'End_Lon': -73.985187, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754863, 'Start_Lon': -73.97354, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-12 18:52:00', 'Trip_Pickup_DateTime': '2009-06-12 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750193, 'End_Lon': -73.990885, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762, 'Start_Lon': -73.982508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-05 23:10:00', 'Trip_Pickup_DateTime': '2009-06-05 23:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72653, 'End_Lon': -74.005618, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752323, 'Start_Lon': -73.96727, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-06 02:53:00', 'Trip_Pickup_DateTime': '2009-06-06 02:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722122, 'End_Lon': -73.985972, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802755, 'Start_Lon': -73.967737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 7.93, 'Trip_Dropoff_DateTime': '2009-06-01 21:08:00', 'Trip_Pickup_DateTime': '2009-06-01 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752465, 'End_Lon': -73.989612, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749165, 'Start_Lon': -73.977917, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-03 08:04:00', 'Trip_Pickup_DateTime': '2009-06-03 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753537, 'End_Lon': -73.980933, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781772, 'Start_Lon': -73.96031, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-01 15:24:00', 'Trip_Pickup_DateTime': '2009-06-01 15:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725927, 'End_Lon': -74.000727, 'Fare_Amt': 20.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780617, 'Start_Lon': -73.94994, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 5.24, 'Trip_Dropoff_DateTime': '2009-06-09 12:43:00', 'Trip_Pickup_DateTime': '2009-06-09 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773375, 'End_Lon': -73.954877, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749988, 'Start_Lon': -73.991578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-01 22:59:00', 'Trip_Pickup_DateTime': '2009-06-01 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760552, 'End_Lon': -73.97546, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775822, 'Start_Lon': -73.964453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-09 13:24:00', 'Trip_Pickup_DateTime': '2009-06-09 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749292, 'End_Lon': -73.97478, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74093, 'Start_Lon': -73.985673, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-01 22:18:00', 'Trip_Pickup_DateTime': '2009-06-01 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.692418, 'End_Lon': -73.996608, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789183, 'Start_Lon': -73.973958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.4, 'Trip_Distance': 8.28, 'Trip_Dropoff_DateTime': '2009-06-01 21:21:00', 'Trip_Pickup_DateTime': '2009-06-01 20:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763715, 'End_Lon': -73.985382, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749573, 'Start_Lon': -73.988028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-07 13:30:00', 'Trip_Pickup_DateTime': '2009-06-07 13:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765915, 'End_Lon': -73.983502, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757843, 'Start_Lon': -73.989338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-01 19:49:00', 'Trip_Pickup_DateTime': '2009-06-01 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760372, 'End_Lon': -73.959285, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.807975, 'Start_Lon': -73.964117, 'Tip_Amt': 3.14, 'Tolls_Amt': 0.0, 'Total_Amt': 18.84, 'Trip_Distance': 4.83, 'Trip_Dropoff_DateTime': '2009-06-17 13:41:00', 'Trip_Pickup_DateTime': '2009-06-17 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752983, 'End_Lon': -73.965645, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760082, 'Start_Lon': -73.965753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-01 22:21:00', 'Trip_Pickup_DateTime': '2009-06-01 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758867, 'End_Lon': -73.966148, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717042, 'Start_Lon': -74.006282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-01 21:28:00', 'Trip_Pickup_DateTime': '2009-06-01 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750095, 'End_Lon': -73.968712, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725892, 'Start_Lon': -74.00843, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-12 13:13:00', 'Trip_Pickup_DateTime': '2009-06-12 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762025, 'End_Lon': -73.978678, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747902, 'Start_Lon': -73.980748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-12 18:44:00', 'Trip_Pickup_DateTime': '2009-06-12 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772837, 'End_Lon': -73.967892, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764308, 'Start_Lon': -73.986795, 'Tip_Amt': 8.01, 'Tolls_Amt': 0.0, 'Total_Amt': 34.71, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-12 16:58:00', 'Trip_Pickup_DateTime': '2009-06-12 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74855, 'End_Lon': -74.000212, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736133, 'Start_Lon': -74.008268, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-06 01:37:00', 'Trip_Pickup_DateTime': '2009-06-06 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.847323, 'End_Lon': -73.942962, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765628, 'Start_Lon': -73.989213, 'Tip_Amt': 3.62, 'Tolls_Amt': 0.0, 'Total_Amt': 21.72, 'Trip_Distance': 7.09, 'Trip_Dropoff_DateTime': '2009-06-01 14:25:00', 'Trip_Pickup_DateTime': '2009-06-01 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76225, 'End_Lon': -73.97886, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753177, 'Start_Lon': -73.969743, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-01 15:21:00', 'Trip_Pickup_DateTime': '2009-06-01 15:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752695, 'End_Lon': -73.9932, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738597, 'Start_Lon': -73.989615, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-12 17:23:00', 'Trip_Pickup_DateTime': '2009-06-12 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76932, 'End_Lon': -73.983002, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75341, 'Start_Lon': -73.966605, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-08 09:21:00', 'Trip_Pickup_DateTime': '2009-06-08 09:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752438, 'End_Lon': -73.993565, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756563, 'Start_Lon': -73.98777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-01 14:54:00', 'Trip_Pickup_DateTime': '2009-06-01 14:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.857073, 'End_Lon': -73.932445, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749845, 'Start_Lon': -73.987962, 'Tip_Amt': 4.84, 'Tolls_Amt': 0.0, 'Total_Amt': 29.04, 'Trip_Distance': 9.22, 'Trip_Dropoff_DateTime': '2009-06-06 23:25:00', 'Trip_Pickup_DateTime': '2009-06-06 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76488, 'End_Lon': -73.974033, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709648, 'Start_Lon': -74.016502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.79, 'Trip_Dropoff_DateTime': '2009-06-01 15:45:00', 'Trip_Pickup_DateTime': '2009-06-01 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77156, 'End_Lon': -73.959345, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782562, 'Start_Lon': -73.953245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-01 20:48:00', 'Trip_Pickup_DateTime': '2009-06-01 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7504, 'End_Lon': -73.994643, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73958, 'Start_Lon': -74.004082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-05 16:59:00', 'Trip_Pickup_DateTime': '2009-06-05 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75454, 'End_Lon': -73.984695, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750885, 'Start_Lon': -73.971287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-01 13:58:00', 'Trip_Pickup_DateTime': '2009-06-01 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713423, 'End_Lon': -73.994858, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773652, 'Start_Lon': -73.870642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.5, 'Trip_Distance': 9.8, 'Trip_Dropoff_DateTime': '2009-06-01 18:22:00', 'Trip_Pickup_DateTime': '2009-06-01 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726808, 'End_Lon': -73.985735, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725042, 'Start_Lon': -73.99014, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-09 11:11:00', 'Trip_Pickup_DateTime': '2009-06-09 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751283, 'End_Lon': -73.991143, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74066, 'Start_Lon': -74.004998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-01 22:22:00', 'Trip_Pickup_DateTime': '2009-06-01 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763682, 'End_Lon': -73.98134, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769018, 'Start_Lon': -73.98198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-01 13:58:00', 'Trip_Pickup_DateTime': '2009-06-01 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750142, 'End_Lon': -73.979907, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736568, 'Start_Lon': -73.977927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-01 16:50:00', 'Trip_Pickup_DateTime': '2009-06-01 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739375, 'End_Lon': -73.991245, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771098, 'Start_Lon': -73.987105, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 16.8, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-08 11:01:00', 'Trip_Pickup_DateTime': '2009-06-08 10:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753452, 'End_Lon': -73.98853, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780742, 'Start_Lon': -73.952698, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-12 17:44:00', 'Trip_Pickup_DateTime': '2009-06-12 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738788, 'End_Lon': -73.987103, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760117, 'Start_Lon': -73.979672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-12 17:12:00', 'Trip_Pickup_DateTime': '2009-06-12 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770087, 'End_Lon': -73.960243, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780707, 'Start_Lon': -73.958722, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-01 14:51:00', 'Trip_Pickup_DateTime': '2009-06-01 14:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787153, 'End_Lon': -73.977477, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800893, 'Start_Lon': -73.969052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-12 13:14:00', 'Trip_Pickup_DateTime': '2009-06-12 13:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779347, 'End_Lon': -73.961942, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791585, 'Start_Lon': -73.953302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-06 15:22:00', 'Trip_Pickup_DateTime': '2009-06-06 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729123, 'End_Lon': -73.985053, 'Fare_Amt': 22.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774112, 'Start_Lon': -73.874513, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.65, 'Trip_Distance': 9.44, 'Trip_Dropoff_DateTime': '2009-06-01 17:47:00', 'Trip_Pickup_DateTime': '2009-06-01 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746392, 'End_Lon': -73.986027, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746392, 'Start_Lon': -73.986027, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-09 09:52:00', 'Trip_Pickup_DateTime': '2009-06-09 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75125, 'End_Lon': -73.990363, 'Fare_Amt': 18.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783438, 'Start_Lon': -73.947555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 4.18, 'Trip_Dropoff_DateTime': '2009-06-12 16:24:00', 'Trip_Pickup_DateTime': '2009-06-12 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76054, 'End_Lon': -73.980412, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732233, 'Start_Lon': -73.998803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-01 12:06:00', 'Trip_Pickup_DateTime': '2009-06-01 11:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760108, 'End_Lon': -73.979352, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77736, 'Start_Lon': -73.96125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-09 10:00:00', 'Trip_Pickup_DateTime': '2009-06-09 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782742, 'End_Lon': -73.951075, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76632, 'Start_Lon': -73.963023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-04 19:27:00', 'Trip_Pickup_DateTime': '2009-06-04 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725047, 'End_Lon': -73.992405, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.732048, 'Start_Lon': -73.988183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-06 19:37:55', 'Trip_Pickup_DateTime': '2009-06-06 19:35:48', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.728753, 'End_Lon': -74.005908, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759062, 'Start_Lon': -73.977795, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-01 12:32:00', 'Trip_Pickup_DateTime': '2009-06-01 12:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744775, 'End_Lon': -73.979637, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762028, 'Start_Lon': -73.974552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-01 18:02:00', 'Trip_Pickup_DateTime': '2009-06-01 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764742, 'End_Lon': -73.980423, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647283, 'Start_Lon': -73.78949, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 17.81, 'Trip_Dropoff_DateTime': '2009-06-06 20:43:00', 'Trip_Pickup_DateTime': '2009-06-06 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769642, 'End_Lon': -73.968563, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77276, 'Start_Lon': -73.958243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-01 13:02:00', 'Trip_Pickup_DateTime': '2009-06-01 12:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728265, 'End_Lon': -74.005343, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750672, 'Start_Lon': -73.973622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-09 09:51:00', 'Trip_Pickup_DateTime': '2009-06-09 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771407, 'End_Lon': -73.959348, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767718, 'Start_Lon': -73.980468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-03 17:39:00', 'Trip_Pickup_DateTime': '2009-06-03 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784412, 'End_Lon': -73.953093, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773522, 'Start_Lon': -73.962015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-01 12:34:00', 'Trip_Pickup_DateTime': '2009-06-01 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778612, 'End_Lon': -73.951735, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770928, 'Start_Lon': -73.979867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-03 15:39:00', 'Trip_Pickup_DateTime': '2009-06-03 15:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731507, 'End_Lon': -73.982712, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739828, 'Start_Lon': -73.994802, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-06 15:41:00', 'Trip_Pickup_DateTime': '2009-06-06 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712655, 'End_Lon': -74.166142, 'Fare_Amt': 67.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758053, 'Start_Lon': -73.981992, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.0, 'Total_Amt': 75.5, 'Trip_Distance': 21.52, 'Trip_Dropoff_DateTime': '2009-06-12 16:50:00', 'Trip_Pickup_DateTime': '2009-06-12 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775408, 'End_Lon': -73.964007, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786262, 'Start_Lon': -73.950778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-09 09:47:00', 'Trip_Pickup_DateTime': '2009-06-09 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76976, 'End_Lon': -73.952313, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77341, 'Start_Lon': -73.959963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-12 16:24:00', 'Trip_Pickup_DateTime': '2009-06-12 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781125, 'End_Lon': -73.956477, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.790618, 'Start_Lon': -73.968338, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-12 14:25:00', 'Trip_Pickup_DateTime': '2009-06-12 14:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771478, 'End_Lon': -73.954828, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768695, 'Start_Lon': -73.952415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.31, 'Trip_Dropoff_DateTime': '2009-06-09 10:11:00', 'Trip_Pickup_DateTime': '2009-06-09 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76307, 'End_Lon': -73.98258, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76307, 'Start_Lon': -73.967752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-02 17:42:00', 'Trip_Pickup_DateTime': '2009-06-02 17:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753503, 'End_Lon': -73.979797, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762828, 'Start_Lon': -73.982807, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-09 09:10:00', 'Trip_Pickup_DateTime': '2009-06-09 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763888, 'End_Lon': -73.970687, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765497, 'Start_Lon': -73.954557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-29 09:48:00', 'Trip_Pickup_DateTime': '2009-06-29 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782078, 'End_Lon': -73.955857, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777553, 'Start_Lon': -73.957183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-03 13:32:00', 'Trip_Pickup_DateTime': '2009-06-03 13:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765347, 'End_Lon': -73.985445, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768528, 'Start_Lon': -73.981897, 'Tip_Amt': 3.7, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-09 09:09:00', 'Trip_Pickup_DateTime': '2009-06-09 09:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755038, 'End_Lon': -73.991582, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742985, 'Start_Lon': -74.000145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-04 21:47:00', 'Trip_Pickup_DateTime': '2009-06-04 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716633, 'End_Lon': -74.011663, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747667, 'Start_Lon': -73.985017, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-09 10:00:00', 'Trip_Pickup_DateTime': '2009-06-09 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791583, 'End_Lon': -73.952695, 'Fare_Amt': 15.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753612, 'Start_Lon': -73.98854, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.0, 'Trip_Dropoff_DateTime': '2009-06-03 15:20:00', 'Trip_Pickup_DateTime': '2009-06-03 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739758, 'End_Lon': -73.986712, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741197, 'Start_Lon': -73.994008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-09 10:05:00', 'Trip_Pickup_DateTime': '2009-06-09 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764972, 'End_Lon': -73.991673, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719373, 'Start_Lon': -74.001735, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-03 20:01:00', 'Trip_Pickup_DateTime': '2009-06-03 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757382, 'End_Lon': -73.990332, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735057, 'Start_Lon': -73.979743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-06 18:01:00', 'Trip_Pickup_DateTime': '2009-06-06 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776098, 'End_Lon': -73.989763, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752207, 'Start_Lon': -73.944082, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.94, 'Trip_Dropoff_DateTime': '2009-06-09 06:36:00', 'Trip_Pickup_DateTime': '2009-06-09 06:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760635, 'End_Lon': -74.002728, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769007, 'Start_Lon': -73.952225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 3.83, 'Trip_Dropoff_DateTime': '2009-06-04 18:50:00', 'Trip_Pickup_DateTime': '2009-06-04 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751457, 'End_Lon': -73.997798, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75701, 'Start_Lon': -73.993612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-26 22:11:00', 'Trip_Pickup_DateTime': '2009-06-26 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725423, 'End_Lon': -73.978043, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76742, 'Start_Lon': -73.980127, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.06, 'Trip_Dropoff_DateTime': '2009-06-09 01:16:00', 'Trip_Pickup_DateTime': '2009-06-09 01:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790015, 'End_Lon': -73.952302, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773122, 'Start_Lon': -73.964517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-12 12:05:00', 'Trip_Pickup_DateTime': '2009-06-12 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753, 'End_Lon': -73.979205, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807938, 'Start_Lon': -73.964157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-12 11:59:00', 'Trip_Pickup_DateTime': '2009-06-12 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752602, 'End_Lon': -73.978863, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74745, 'Start_Lon': -74.001377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-05 08:29:00', 'Trip_Pickup_DateTime': '2009-06-05 08:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-10 06:45:00', 'Trip_Pickup_DateTime': '2009-06-10 06:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789698, 'End_Lon': -73.966097, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76754, 'Start_Lon': -73.982387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-10 07:41:00', 'Trip_Pickup_DateTime': '2009-06-10 07:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805148, 'End_Lon': -73.939013, 'Fare_Amt': 10.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764928, 'Start_Lon': -73.97272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-13 14:05:00', 'Trip_Pickup_DateTime': '2009-06-13 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.795333, 'End_Lon': -73.94808, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797723, 'Start_Lon': -73.937328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-13 16:26:00', 'Trip_Pickup_DateTime': '2009-06-13 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753455, 'End_Lon': -73.978108, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774028, 'Start_Lon': -73.988995, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-03 16:10:00', 'Trip_Pickup_DateTime': '2009-06-03 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741733, 'End_Lon': -73.998568, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746027, 'Start_Lon': -73.994277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-09 22:57:00', 'Trip_Pickup_DateTime': '2009-06-09 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766715, 'End_Lon': -73.966932, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779313, 'Start_Lon': -73.977415, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-13 14:56:00', 'Trip_Pickup_DateTime': '2009-06-13 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777408, 'End_Lon': -73.960438, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773722, 'Start_Lon': -73.951987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-05 10:54:00', 'Trip_Pickup_DateTime': '2009-06-05 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77415, 'End_Lon': -73.982387, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738048, 'Start_Lon': -73.996263, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 2.91, 'Trip_Dropoff_DateTime': '2009-06-08 16:27:00', 'Trip_Pickup_DateTime': '2009-06-08 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753395, 'End_Lon': -73.97109, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749663, 'Start_Lon': -73.995202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-13 12:37:00', 'Trip_Pickup_DateTime': '2009-06-13 12:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738937, 'End_Lon': -73.977588, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720698, 'Start_Lon': -73.98765, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-09 23:38:00', 'Trip_Pickup_DateTime': '2009-06-09 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773053, 'End_Lon': -73.982368, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779587, 'Start_Lon': -73.988127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-02 16:52:00', 'Trip_Pickup_DateTime': '2009-06-02 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782988, 'End_Lon': -73.973795, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74212, 'Start_Lon': -73.993588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-06 01:11:00', 'Trip_Pickup_DateTime': '2009-06-06 01:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.64397, 'End_Lon': -73.782922, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801448, 'Start_Lon': -73.930555, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 50.0, 'Trip_Distance': 17.0, 'Trip_Dropoff_DateTime': '2009-06-02 15:21:00', 'Trip_Pickup_DateTime': '2009-06-02 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742443, 'End_Lon': -73.998753, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748477, 'Start_Lon': -74.005517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-07 14:27:00', 'Trip_Pickup_DateTime': '2009-06-07 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.91951, 'End_Lon': -73.850998, 'Fare_Amt': 89.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.655165, 'Start_Lon': -73.789815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 89.0, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-05 21:23:00', 'Trip_Pickup_DateTime': '2009-06-05 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752788, 'End_Lon': -73.965817, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75807, 'Start_Lon': -73.972287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-09 20:13:00', 'Trip_Pickup_DateTime': '2009-06-09 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74749, 'End_Lon': -74.003767, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752413, 'Start_Lon': -73.979208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-09 21:24:00', 'Trip_Pickup_DateTime': '2009-06-09 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762168, 'End_Lon': -73.972697, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787918, 'Start_Lon': -73.976732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-13 09:41:00', 'Trip_Pickup_DateTime': '2009-06-13 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745952, 'End_Lon': -73.955587, 'Fare_Amt': 11.7, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763323, 'Start_Lon': -73.996272, 'Tip_Amt': 2.0, 'Tolls_Amt': 4.15, 'Total_Amt': 18.35, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-09 21:24:00', 'Trip_Pickup_DateTime': '2009-06-09 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779677, 'End_Lon': -74.014772, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.795688, 'Start_Lon': -74.002667, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-09 22:38:00', 'Trip_Pickup_DateTime': '2009-06-09 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721918, 'End_Lon': -73.991905, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725537, 'Start_Lon': -74.004308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-10 00:01:00', 'Trip_Pickup_DateTime': '2009-06-09 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774302, 'End_Lon': -73.978772, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787752, 'Start_Lon': -73.971227, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-04 14:04:00', 'Trip_Pickup_DateTime': '2009-06-04 13:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722788, 'End_Lon': -74.00443, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734033, 'Start_Lon': -73.998543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-06 22:17:00', 'Trip_Pickup_DateTime': '2009-06-06 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806962, 'End_Lon': -73.949683, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.800913, 'Start_Lon': -73.944118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-13 11:43:00', 'Trip_Pickup_DateTime': '2009-06-13 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756172, 'End_Lon': -73.983042, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740062, 'Start_Lon': -74.007288, 'Tip_Amt': 0.1, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-10 03:57:00', 'Trip_Pickup_DateTime': '2009-06-10 03:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754833, 'End_Lon': -73.97028, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746523, 'Start_Lon': -73.972587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-10 08:23:00', 'Trip_Pickup_DateTime': '2009-06-10 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773893, 'End_Lon': -73.870642, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751327, 'Start_Lon': -73.977093, 'Tip_Amt': 4.5, 'Tolls_Amt': 4.15, 'Total_Amt': 31.15, 'Trip_Distance': 9.25, 'Trip_Dropoff_DateTime': '2009-06-13 11:44:00', 'Trip_Pickup_DateTime': '2009-06-13 11:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716662, 'End_Lon': -73.954717, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72627, 'Start_Lon': -73.998277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-13 14:47:00', 'Trip_Pickup_DateTime': '2009-06-13 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75228, 'End_Lon': -73.989425, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760595, 'Start_Lon': -73.98579, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-03 19:42:00', 'Trip_Pickup_DateTime': '2009-06-03 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728742, 'End_Lon': -73.989907, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74425, 'Start_Lon': -73.976338, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 7.55, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-09 20:01:00', 'Trip_Pickup_DateTime': '2009-06-09 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722088, 'End_Lon': -74.00828, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733543, 'Start_Lon': -74.008157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-02 15:15:00', 'Trip_Pickup_DateTime': '2009-06-02 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.658897, 'End_Lon': -73.987842, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707605, 'Start_Lon': -73.94828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 8.04, 'Trip_Dropoff_DateTime': '2009-06-13 03:28:00', 'Trip_Pickup_DateTime': '2009-06-13 03:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749717, 'End_Lon': -73.913552, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749162, 'Start_Lon': -73.915612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.8, 'Trip_Distance': 5.71, 'Trip_Dropoff_DateTime': '2009-06-13 03:46:00', 'Trip_Pickup_DateTime': '2009-06-13 03:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73344, 'End_Lon': -73.991615, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732378, 'Start_Lon': -74.000397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-09 19:17:00', 'Trip_Pickup_DateTime': '2009-06-09 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742627, 'End_Lon': -73.984357, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72949, 'Start_Lon': -73.989993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-09 22:27:00', 'Trip_Pickup_DateTime': '2009-06-09 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720297, 'End_Lon': -73.987402, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732177, 'Start_Lon': -74.00372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-09 22:57:00', 'Trip_Pickup_DateTime': '2009-06-09 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755553, 'End_Lon': -73.974312, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753812, 'Start_Lon': -73.982475, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-09 22:51:00', 'Trip_Pickup_DateTime': '2009-06-09 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759502, 'End_Lon': -73.985372, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750695, 'Start_Lon': -73.987723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-09 20:43:00', 'Trip_Pickup_DateTime': '2009-06-09 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773235, 'End_Lon': -73.954798, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765507, 'Start_Lon': -73.975527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-09 21:49:00', 'Trip_Pickup_DateTime': '2009-06-09 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731477, 'End_Lon': -74.00107, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721623, 'Start_Lon': -73.993347, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-13 03:29:00', 'Trip_Pickup_DateTime': '2009-06-13 03:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777047, 'End_Lon': -73.950135, 'Fare_Amt': 12.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722667, 'Start_Lon': -73.985913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.56, 'Trip_Dropoff_DateTime': '2009-06-13 03:05:00', 'Trip_Pickup_DateTime': '2009-06-13 02:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76272, 'End_Lon': -73.875202, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.69732, 'Start_Lon': -73.85262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 7.46, 'Trip_Dropoff_DateTime': '2009-06-07 08:51:00', 'Trip_Pickup_DateTime': '2009-06-07 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772722, 'End_Lon': -73.953495, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775512, 'Start_Lon': -73.964793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-03 08:52:00', 'Trip_Pickup_DateTime': '2009-06-03 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688493, 'End_Lon': -73.863988, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733227, 'Start_Lon': -73.87105, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 3.93, 'Trip_Dropoff_DateTime': '2009-06-13 00:44:00', 'Trip_Pickup_DateTime': '2009-06-13 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745475, 'End_Lon': -74.002188, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741102, 'Start_Lon': -74.005515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-09 20:31:00', 'Trip_Pickup_DateTime': '2009-06-09 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749047, 'End_Lon': -73.974982, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74371, 'Start_Lon': -73.988433, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-09 19:07:00', 'Trip_Pickup_DateTime': '2009-06-09 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764063, 'End_Lon': -73.987312, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764637, 'Start_Lon': -73.9898, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-09 19:27:00', 'Trip_Pickup_DateTime': '2009-06-09 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81414, 'End_Lon': -73.944357, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766038, 'Start_Lon': -73.9537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-08 16:28:00', 'Trip_Pickup_DateTime': '2009-06-08 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708442, 'End_Lon': -74.004715, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772825, 'Start_Lon': -73.952225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 6.49, 'Trip_Dropoff_DateTime': '2009-06-09 19:16:00', 'Trip_Pickup_DateTime': '2009-06-09 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788528, 'End_Lon': -73.970857, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765888, 'Start_Lon': -73.990993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-13 00:18:00', 'Trip_Pickup_DateTime': '2009-06-13 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723703, 'End_Lon': -73.997105, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711408, 'Start_Lon': -74.016112, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-09 18:52:00', 'Trip_Pickup_DateTime': '2009-06-09 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761018, 'End_Lon': -73.968968, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771553, 'Start_Lon': -73.959007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-01 21:21:00', 'Trip_Pickup_DateTime': '2009-06-01 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78683, 'End_Lon': -73.977342, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774115, 'Start_Lon': -73.874655, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 30.0, 'Trip_Distance': 9.56, 'Trip_Dropoff_DateTime': '2009-06-13 01:02:00', 'Trip_Pickup_DateTime': '2009-06-13 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729578, 'End_Lon': -73.987095, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741067, 'Start_Lon': -74.005185, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-09 17:50:00', 'Trip_Pickup_DateTime': '2009-06-09 17:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738125, 'End_Lon': -73.991025, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741922, 'Start_Lon': -73.999717, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-09 17:54:00', 'Trip_Pickup_DateTime': '2009-06-09 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764188, 'End_Lon': -73.973897, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75279, 'Start_Lon': -73.983388, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-12 23:32:00', 'Trip_Pickup_DateTime': '2009-06-12 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765058, 'End_Lon': -73.982368, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740468, 'Start_Lon': -74.005597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-12 23:46:00', 'Trip_Pickup_DateTime': '2009-06-12 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780495, 'End_Lon': -73.98, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761483, 'Start_Lon': -73.966687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-19 21:43:00', 'Trip_Pickup_DateTime': '2009-06-19 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76769, 'End_Lon': -73.960052, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771853, 'Start_Lon': -73.982238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-01 21:04:00', 'Trip_Pickup_DateTime': '2009-06-01 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770432, 'End_Lon': -73.991253, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74854, 'Start_Lon': -74.003715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-09 18:09:00', 'Trip_Pickup_DateTime': '2009-06-09 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762932, 'End_Lon': -73.983117, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76423, 'Start_Lon': -73.973787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-09 18:18:00', 'Trip_Pickup_DateTime': '2009-06-09 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.820263, 'End_Lon': -73.955483, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.84758, 'Start_Lon': -73.939577, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-04 06:41:00', 'Trip_Pickup_DateTime': '2009-06-04 06:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761545, 'End_Lon': -73.960645, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771355, 'Start_Lon': -73.956558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-09 18:24:00', 'Trip_Pickup_DateTime': '2009-06-09 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.694967, 'End_Lon': -73.939418, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749845, 'Start_Lon': -74.008432, 'Tip_Amt': 5.15, 'Tolls_Amt': 0.0, 'Total_Amt': 25.75, 'Trip_Distance': 6.65, 'Trip_Dropoff_DateTime': '2009-06-13 01:15:00', 'Trip_Pickup_DateTime': '2009-06-13 00:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784112, 'End_Lon': -73.981208, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770505, 'Start_Lon': -73.991457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-01 15:08:00', 'Trip_Pickup_DateTime': '2009-06-01 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762675, 'End_Lon': -73.970392, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73226, 'Start_Lon': -74.003555, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-19 22:20:00', 'Trip_Pickup_DateTime': '2009-06-19 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757068, 'End_Lon': -73.96971, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724778, 'Start_Lon': -73.995608, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-09 19:46:00', 'Trip_Pickup_DateTime': '2009-06-09 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731253, 'End_Lon': -73.982392, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751558, 'Start_Lon': -73.97115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-09 17:04:00', 'Trip_Pickup_DateTime': '2009-06-09 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722497, 'End_Lon': -73.984602, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730065, 'Start_Lon': -73.99125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-07 18:19:00', 'Trip_Pickup_DateTime': '2009-06-07 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787927, 'End_Lon': -73.975707, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771437, 'Start_Lon': -73.950402, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-03 12:26:00', 'Trip_Pickup_DateTime': '2009-06-03 12:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751192, 'End_Lon': -73.97718, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732138, 'Start_Lon': -73.987922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-19 22:19:00', 'Trip_Pickup_DateTime': '2009-06-19 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751223, 'End_Lon': -73.976172, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709542, 'Start_Lon': -74.010082, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 5.23, 'Trip_Dropoff_DateTime': '2009-06-12 23:47:00', 'Trip_Pickup_DateTime': '2009-06-12 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742712, 'End_Lon': -73.988827, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742712, 'Start_Lon': -73.988827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-09 18:22:00', 'Trip_Pickup_DateTime': '2009-06-09 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75594, 'End_Lon': -73.990628, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749708, 'Start_Lon': -73.99338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-09 18:01:00', 'Trip_Pickup_DateTime': '2009-06-09 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769227, 'End_Lon': -73.98206, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80687, 'Start_Lon': -73.964865, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-03 11:01:00', 'Trip_Pickup_DateTime': '2009-06-03 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763505, 'End_Lon': -73.973655, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.810252, 'Start_Lon': -73.953545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-09 18:22:00', 'Trip_Pickup_DateTime': '2009-06-09 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735677, 'End_Lon': -74.005337, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73206, 'Start_Lon': -73.999543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-09 16:24:00', 'Trip_Pickup_DateTime': '2009-06-09 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774553, 'End_Lon': -73.998717, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750045, 'Start_Lon': -73.988678, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-12 22:58:00', 'Trip_Pickup_DateTime': '2009-06-12 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757055, 'End_Lon': -73.972292, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757032, 'Start_Lon': -73.972113, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-01 21:40:00', 'Trip_Pickup_DateTime': '2009-06-01 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756252, 'End_Lon': -73.973385, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781192, 'Start_Lon': -73.972425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-09 15:54:00', 'Trip_Pickup_DateTime': '2009-06-09 15:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756548, 'End_Lon': -73.990278, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784128, 'Start_Lon': -73.9564, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-09 17:28:00', 'Trip_Pickup_DateTime': '2009-06-09 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749943, 'End_Lon': -73.976182, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75931, 'Start_Lon': -73.972257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-09 16:49:00', 'Trip_Pickup_DateTime': '2009-06-09 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744088, 'End_Lon': -73.974035, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725078, 'Start_Lon': -73.98708, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-12 19:32:00', 'Trip_Pickup_DateTime': '2009-06-12 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75895, 'End_Lon': -73.972412, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77924, 'Start_Lon': -73.958148, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-04 17:07:00', 'Trip_Pickup_DateTime': '2009-06-04 16:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741282, 'End_Lon': -74.00516, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761407, 'Start_Lon': -73.997745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-12 20:57:00', 'Trip_Pickup_DateTime': '2009-06-12 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719648, 'End_Lon': -73.957953, 'Fare_Amt': 38.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.643842, 'Start_Lon': -73.78975, 'Tip_Amt': 8.0, 'Tolls_Amt': 0.0, 'Total_Amt': 46.6, 'Trip_Distance': 16.3, 'Trip_Dropoff_DateTime': '2009-06-12 20:54:00', 'Trip_Pickup_DateTime': '2009-06-12 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73171, 'End_Lon': -74.006142, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732222, 'Start_Lon': -73.994733, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-12 20:54:00', 'Trip_Pickup_DateTime': '2009-06-12 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771922, 'End_Lon': -73.982928, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746885, 'Start_Lon': -74.000498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-12 19:26:00', 'Trip_Pickup_DateTime': '2009-06-12 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767092, 'End_Lon': -73.956433, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751875, 'Start_Lon': -73.939408, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-12 20:11:00', 'Trip_Pickup_DateTime': '2009-06-12 20:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774793, 'End_Lon': -73.95691, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764938, 'Start_Lon': -73.968563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-01 14:56:00', 'Trip_Pickup_DateTime': '2009-06-01 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757977, 'End_Lon': -73.96327, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730322, 'Start_Lon': -73.97999, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-12 19:20:00', 'Trip_Pickup_DateTime': '2009-06-12 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767138, 'End_Lon': -73.987758, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750965, 'Start_Lon': -73.994312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-09 08:06:00', 'Trip_Pickup_DateTime': '2009-06-09 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767813, 'End_Lon': -73.96633, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776885, 'Start_Lon': -73.959647, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-12 19:17:00', 'Trip_Pickup_DateTime': '2009-06-12 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-09 14:18:00', 'Trip_Pickup_DateTime': '2009-06-09 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750925, 'End_Lon': -73.975033, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750978, 'Start_Lon': -73.991638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-12 21:08:00', 'Trip_Pickup_DateTime': '2009-06-12 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791823, 'End_Lon': -73.965118, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79923, 'Start_Lon': -73.970363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-12 18:26:00', 'Trip_Pickup_DateTime': '2009-06-12 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790612, 'End_Lon': -73.97782, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778542, 'Start_Lon': -73.981263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-05 09:42:00', 'Trip_Pickup_DateTime': '2009-06-05 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740047, 'End_Lon': -73.993548, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752625, 'Start_Lon': -73.971615, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-01 20:27:00', 'Trip_Pickup_DateTime': '2009-06-01 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.68772, 'End_Lon': -74.182583, 'Fare_Amt': 59.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771115, 'Start_Lon': -73.94739, 'Tip_Amt': 0.0, 'Tolls_Amt': 16.0, 'Total_Amt': 76.4, 'Trip_Distance': 20.34, 'Trip_Dropoff_DateTime': '2009-06-16 06:07:00', 'Trip_Pickup_DateTime': '2009-06-16 05:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76176, 'End_Lon': -73.98306, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760072, 'Start_Lon': -73.988873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-16 05:32:00', 'Trip_Pickup_DateTime': '2009-06-16 05:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769078, 'End_Lon': -73.982783, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76435, 'Start_Lon': -73.981153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-12 10:08:00', 'Trip_Pickup_DateTime': '2009-06-12 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759167, 'End_Lon': -73.982393, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760222, 'Start_Lon': -73.995077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 09:20:00', 'Trip_Pickup_DateTime': '2009-06-18 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739683, 'End_Lon': -73.982273, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.672723, 'Start_Lon': -73.801155, 'Tip_Amt': 8.85, 'Tolls_Amt': 4.15, 'Total_Amt': 58.0, 'Trip_Distance': 14.42, 'Trip_Dropoff_DateTime': '2009-06-08 23:49:00', 'Trip_Pickup_DateTime': '2009-06-08 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718502, 'End_Lon': -73.940643, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718772, 'Start_Lon': -73.988928, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-15 23:07:00', 'Trip_Pickup_DateTime': '2009-06-15 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738943, 'End_Lon': -73.984807, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74978, 'Start_Lon': -73.993527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-15 21:58:00', 'Trip_Pickup_DateTime': '2009-06-15 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732087, 'End_Lon': -74.007778, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763313, 'Start_Lon': -73.973925, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-15 21:18:00', 'Trip_Pickup_DateTime': '2009-06-15 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737717, 'End_Lon': -74.008133, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774342, 'Start_Lon': -73.988628, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-09 20:27:00', 'Trip_Pickup_DateTime': '2009-06-09 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.861572, 'End_Lon': -73.924953, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74601, 'Start_Lon': -73.971827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 9.27, 'Trip_Dropoff_DateTime': '2009-06-02 07:54:00', 'Trip_Pickup_DateTime': '2009-06-02 07:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736117, 'End_Lon': -73.98731, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747193, 'Start_Lon': -73.997108, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-15 22:36:00', 'Trip_Pickup_DateTime': '2009-06-15 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754882, 'End_Lon': -73.978138, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778348, 'Start_Lon': -73.954322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-12 09:54:00', 'Trip_Pickup_DateTime': '2009-06-12 09:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726805, 'End_Lon': -73.983333, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73366, 'Start_Lon': -74.002822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-15 23:03:00', 'Trip_Pickup_DateTime': '2009-06-15 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750928, 'End_Lon': -73.890817, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711258, 'Start_Lon': -73.960302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.72, 'Trip_Dropoff_DateTime': '2009-06-07 03:53:00', 'Trip_Pickup_DateTime': '2009-06-07 03:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736148, 'End_Lon': -74.004522, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72805, 'Start_Lon': -73.98845, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-08 23:34:00', 'Trip_Pickup_DateTime': '2009-06-08 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787047, 'End_Lon': -73.955705, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764158, 'Start_Lon': -73.96876, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-08 08:35:00', 'Trip_Pickup_DateTime': '2009-06-08 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741348, 'End_Lon': -73.993918, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727583, 'Start_Lon': -74.003147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-13 11:28:00', 'Trip_Pickup_DateTime': '2009-06-13 11:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.687035, 'End_Lon': -73.94928, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714462, 'Start_Lon': -73.957655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-08 23:11:00', 'Trip_Pickup_DateTime': '2009-06-08 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758998, 'End_Lon': -73.96463, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787563, 'Start_Lon': -73.97495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-15 20:51:00', 'Trip_Pickup_DateTime': '2009-06-15 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764473, 'End_Lon': -73.997123, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749907, 'Start_Lon': -73.995142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-13 18:15:00', 'Trip_Pickup_DateTime': '2009-06-13 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758583, 'End_Lon': -73.974667, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743568, 'Start_Lon': -73.986195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-03 10:48:00', 'Trip_Pickup_DateTime': '2009-06-03 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721557, 'End_Lon': -73.9784, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733188, 'Start_Lon': -74.006403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-13 15:27:00', 'Trip_Pickup_DateTime': '2009-06-13 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733555, 'End_Lon': -74.003237, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748055, 'Start_Lon': -74.005105, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-13 18:16:00', 'Trip_Pickup_DateTime': '2009-06-13 18:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777823, 'End_Lon': -73.978043, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736163, 'Start_Lon': -73.98877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-05 23:34:00', 'Trip_Pickup_DateTime': '2009-06-05 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765173, 'End_Lon': -73.974962, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773842, 'Start_Lon': -73.982443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-13 18:09:00', 'Trip_Pickup_DateTime': '2009-06-13 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756075, 'End_Lon': -73.98938, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759847, 'Start_Lon': -73.976523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-10 09:50:00', 'Trip_Pickup_DateTime': '2009-06-10 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76615, 'End_Lon': -73.990202, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766363, 'Start_Lon': -73.977905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-09 23:14:00', 'Trip_Pickup_DateTime': '2009-06-09 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74672, 'End_Lon': -74.004925, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739687, 'Start_Lon': -73.986045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-13 17:00:00', 'Trip_Pickup_DateTime': '2009-06-13 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788985, 'End_Lon': -73.948272, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725947, 'Start_Lon': -73.983605, 'Tip_Amt': 3.08, 'Tolls_Amt': 0.0, 'Total_Amt': 18.48, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-02 01:54:00', 'Trip_Pickup_DateTime': '2009-06-02 01:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737165, 'End_Lon': -73.981427, 'Fare_Amt': 10.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73816, 'Start_Lon': -73.973612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-13 16:22:00', 'Trip_Pickup_DateTime': '2009-06-13 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762567, 'End_Lon': -73.97699, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.811913, 'Start_Lon': -73.951732, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 4.45, 'Trip_Dropoff_DateTime': '2009-06-10 08:35:00', 'Trip_Pickup_DateTime': '2009-06-10 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748407, 'End_Lon': -73.984535, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761487, 'Start_Lon': -73.974307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-13 16:36:00', 'Trip_Pickup_DateTime': '2009-06-13 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740555, 'End_Lon': -73.989455, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729505, 'Start_Lon': -74.002207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-04 10:58:00', 'Trip_Pickup_DateTime': '2009-06-04 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79907, 'End_Lon': -73.962953, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752428, 'Start_Lon': -73.985897, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.91, 'Trip_Dropoff_DateTime': '2009-06-01 21:03:00', 'Trip_Pickup_DateTime': '2009-06-01 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793282, 'End_Lon': -73.970895, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77867, 'Start_Lon': -73.981513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-20 08:47:00', 'Trip_Pickup_DateTime': '2009-06-20 08:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733692, 'End_Lon': -74.002495, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776035, 'Start_Lon': -73.958127, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 4.39, 'Trip_Dropoff_DateTime': '2009-06-20 08:27:00', 'Trip_Pickup_DateTime': '2009-06-20 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70427, 'End_Lon': -74.011783, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716375, 'Start_Lon': -74.004673, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-20 09:10:00', 'Trip_Pickup_DateTime': '2009-06-20 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707997, 'End_Lon': -74.006232, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742273, 'Start_Lon': -74.000745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-13 17:40:00', 'Trip_Pickup_DateTime': '2009-06-13 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 41.156432, 'End_Lon': -73.42249, 'Fare_Amt': 194.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 41.156413, 'Start_Lon': -73.422487, 'Tip_Amt': 38.8, 'Tolls_Amt': 0.0, 'Total_Amt': 232.8, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-08 19:53:00', 'Trip_Pickup_DateTime': '2009-06-08 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.686415, 'End_Lon': -73.965515, 'Fare_Amt': 22.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774023, 'Start_Lon': -73.87234, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.1, 'Trip_Distance': 9.14, 'Trip_Dropoff_DateTime': '2009-06-08 19:59:00', 'Trip_Pickup_DateTime': '2009-06-08 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.803392, 'End_Lon': -73.952933, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80758, 'Start_Lon': -73.964452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-09 20:16:00', 'Trip_Pickup_DateTime': '2009-06-09 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765248, 'End_Lon': -73.960872, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70692, 'Start_Lon': -74.004318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.89, 'Trip_Dropoff_DateTime': '2009-06-10 00:55:00', 'Trip_Pickup_DateTime': '2009-06-10 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774365, 'End_Lon': -73.87185, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740868, 'Start_Lon': -74.007623, 'Tip_Amt': 5.08, 'Tolls_Amt': 4.15, 'Total_Amt': 34.63, 'Trip_Distance': 10.77, 'Trip_Dropoff_DateTime': '2009-06-12 05:54:00', 'Trip_Pickup_DateTime': '2009-06-12 05:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731375, 'End_Lon': -73.98848, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750398, 'Start_Lon': -73.972552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-20 04:23:00', 'Trip_Pickup_DateTime': '2009-06-20 04:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.697027, 'End_Lon': -73.813233, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.697037, 'Start_Lon': -73.81323, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-20 05:24:00', 'Trip_Pickup_DateTime': '2009-06-20 05:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76988, 'End_Lon': -73.987642, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76158, 'Start_Lon': -73.994155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-12 06:24:00', 'Trip_Pickup_DateTime': '2009-06-12 06:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725663, 'End_Lon': -73.994258, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761878, 'Start_Lon': -73.98476, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-12 02:38:00', 'Trip_Pickup_DateTime': '2009-06-12 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722033, 'End_Lon': -73.999787, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747162, 'Start_Lon': -73.989623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-17 17:33:00', 'Trip_Pickup_DateTime': '2009-06-17 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798473, 'End_Lon': -73.970788, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782405, 'Start_Lon': -73.980727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-17 17:12:00', 'Trip_Pickup_DateTime': '2009-06-17 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748082, 'End_Lon': -73.987483, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742387, 'Start_Lon': -73.984302, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-20 02:35:00', 'Trip_Pickup_DateTime': '2009-06-20 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763685, 'End_Lon': -73.972055, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751705, 'Start_Lon': -73.990088, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-17 15:13:00', 'Trip_Pickup_DateTime': '2009-06-17 14:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728533, 'End_Lon': -73.980015, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760432, 'Start_Lon': -73.994922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-20 10:14:00', 'Trip_Pickup_DateTime': '2009-06-20 09:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.629852, 'End_Lon': -74.000155, 'Fare_Amt': 33.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762822, 'Start_Lon': -73.98211, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 33.3, 'Trip_Distance': 14.09, 'Trip_Dropoff_DateTime': '2009-06-28 09:47:00', 'Trip_Pickup_DateTime': '2009-06-28 09:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708643, 'End_Lon': -74.09299, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708632, 'Start_Lon': -74.092973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-10 01:38:00', 'Trip_Pickup_DateTime': '2009-06-10 01:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719262, 'End_Lon': -74.002055, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686025, 'Start_Lon': -73.99645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-13 08:51:00', 'Trip_Pickup_DateTime': '2009-06-13 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72944, 'End_Lon': -73.998753, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73788, 'Start_Lon': -73.999895, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-23 13:31:00', 'Trip_Pickup_DateTime': '2009-06-23 13:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741922, 'End_Lon': -74.01212, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75051, 'Start_Lon': -74.002698, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-17 16:03:00', 'Trip_Pickup_DateTime': '2009-06-17 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788668, 'End_Lon': -73.970623, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792455, 'Start_Lon': -73.941055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-20 09:55:00', 'Trip_Pickup_DateTime': '2009-06-20 09:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746292, 'End_Lon': -73.997683, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743262, 'Start_Lon': -74.003795, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-20 03:05:00', 'Trip_Pickup_DateTime': '2009-06-20 03:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770373, 'End_Lon': -73.956952, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776528, 'Start_Lon': -73.957608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-17 14:56:00', 'Trip_Pickup_DateTime': '2009-06-17 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757922, 'End_Lon': -73.991557, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767033, 'Start_Lon': -73.983212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-20 03:31:00', 'Trip_Pickup_DateTime': '2009-06-20 03:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75062, 'End_Lon': -74.00212, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742327, 'Start_Lon': -74.004378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-20 03:17:00', 'Trip_Pickup_DateTime': '2009-06-20 03:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682443, 'End_Lon': -73.963567, 'Fare_Amt': 15.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733945, 'Start_Lon': -74.004473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.05, 'Trip_Dropoff_DateTime': '2009-06-20 03:53:00', 'Trip_Pickup_DateTime': '2009-06-20 03:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751032, 'End_Lon': -73.96816, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710837, 'Start_Lon': -74.01541, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.95, 'Trip_Dropoff_DateTime': '2009-06-17 13:42:00', 'Trip_Pickup_DateTime': '2009-06-17 13:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735097, 'End_Lon': -74.001787, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70775, 'Start_Lon': -74.013367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-20 11:03:00', 'Trip_Pickup_DateTime': '2009-06-20 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74384, 'End_Lon': -73.971552, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709148, 'Start_Lon': -73.996775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-17 18:12:00', 'Trip_Pickup_DateTime': '2009-06-17 18:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.673595, 'End_Lon': -73.9761, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.675562, 'Start_Lon': -73.97037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-17 18:23:00', 'Trip_Pickup_DateTime': '2009-06-17 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740737, 'End_Lon': -73.995618, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752067, 'Start_Lon': -73.98204, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-09 20:17:00', 'Trip_Pickup_DateTime': '2009-06-09 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71238, 'End_Lon': -74.008857, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766138, 'Start_Lon': -73.954382, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 6.38, 'Trip_Dropoff_DateTime': '2009-06-17 15:57:00', 'Trip_Pickup_DateTime': '2009-06-17 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-17 19:40:00', 'Trip_Pickup_DateTime': '2009-06-17 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751063, 'End_Lon': -73.99047, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753152, 'Start_Lon': -73.977715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-17 18:58:00', 'Trip_Pickup_DateTime': '2009-06-17 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725683, 'End_Lon': -74.005615, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738473, 'Start_Lon': -73.983485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-17 18:50:00', 'Trip_Pickup_DateTime': '2009-06-17 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749673, 'End_Lon': -73.979543, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756443, 'Start_Lon': -73.982907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-17 16:06:00', 'Trip_Pickup_DateTime': '2009-06-17 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799323, 'End_Lon': -73.945303, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76043, 'Start_Lon': -73.987648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-13 04:30:00', 'Trip_Pickup_DateTime': '2009-06-13 04:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76779, 'End_Lon': -73.967967, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737367, 'Start_Lon': -73.984163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-17 17:03:00', 'Trip_Pickup_DateTime': '2009-06-17 16:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733138, 'End_Lon': -73.994662, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769533, 'Start_Lon': -73.989312, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-17 14:13:00', 'Trip_Pickup_DateTime': '2009-06-17 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7153, 'End_Lon': -73.984693, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72512, 'Start_Lon': -73.981322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-17 16:52:00', 'Trip_Pickup_DateTime': '2009-06-17 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752418, 'End_Lon': -73.980143, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763548, 'Start_Lon': -73.971585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-17 14:50:00', 'Trip_Pickup_DateTime': '2009-06-17 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75557, 'End_Lon': -73.987345, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754428, 'Start_Lon': -73.99918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-09 20:01:00', 'Trip_Pickup_DateTime': '2009-06-09 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74794, 'End_Lon': -73.975343, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751207, 'Start_Lon': -74.006338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-10 10:12:00', 'Trip_Pickup_DateTime': '2009-06-10 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78018, 'End_Lon': -73.947268, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757777, 'Start_Lon': -73.989682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.8, 'Trip_Dropoff_DateTime': '2009-06-02 01:39:00', 'Trip_Pickup_DateTime': '2009-06-02 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718062, 'End_Lon': -73.990218, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716775, 'Start_Lon': -74.014565, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-10 10:50:00', 'Trip_Pickup_DateTime': '2009-06-10 10:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757608, 'End_Lon': -74.000737, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750545, 'Start_Lon': -73.991675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-10 09:12:00', 'Trip_Pickup_DateTime': '2009-06-10 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745303, 'End_Lon': -73.975215, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762503, 'Start_Lon': -73.959967, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-13 17:12:00', 'Trip_Pickup_DateTime': '2009-06-13 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644763, 'End_Lon': -73.777622, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755495, 'Start_Lon': -73.997193, 'Tip_Amt': 10.0, 'Tolls_Amt': 4.15, 'Total_Amt': 59.15, 'Trip_Distance': 17.61, 'Trip_Dropoff_DateTime': '2009-06-13 17:54:00', 'Trip_Pickup_DateTime': '2009-06-13 17:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755538, 'End_Lon': -73.967392, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74912, 'Start_Lon': -73.966495, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-10 09:32:00', 'Trip_Pickup_DateTime': '2009-06-10 09:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753465, 'End_Lon': -73.9726, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751218, 'Start_Lon': -73.994122, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-10 08:53:00', 'Trip_Pickup_DateTime': '2009-06-10 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773562, 'End_Lon': -73.96223, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798025, 'Start_Lon': -73.971285, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-10 09:43:00', 'Trip_Pickup_DateTime': '2009-06-10 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754903, 'End_Lon': -73.985955, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723487, 'Start_Lon': -73.985315, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-10 08:36:00', 'Trip_Pickup_DateTime': '2009-06-10 08:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752705, 'End_Lon': -73.97857, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743368, 'Start_Lon': -74.003383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-04 21:24:00', 'Trip_Pickup_DateTime': '2009-06-04 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.696693, 'End_Lon': -73.977432, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760893, 'Start_Lon': -73.969063, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.2, 'Trip_Distance': 7.75, 'Trip_Dropoff_DateTime': '2009-06-09 20:54:00', 'Trip_Pickup_DateTime': '2009-06-09 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745685, 'End_Lon': -73.988137, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725332, 'Start_Lon': -73.978085, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-13 14:35:00', 'Trip_Pickup_DateTime': '2009-06-13 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777683, 'End_Lon': -73.954635, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74054, 'Start_Lon': -73.975933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-13 14:11:00', 'Trip_Pickup_DateTime': '2009-06-13 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798012, 'End_Lon': -73.963698, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765728, 'Start_Lon': -73.983833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-10 02:39:00', 'Trip_Pickup_DateTime': '2009-06-10 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71717, 'End_Lon': -74.00374, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734025, 'Start_Lon': -73.98979, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-13 13:56:00', 'Trip_Pickup_DateTime': '2009-06-13 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739123, 'End_Lon': -73.976843, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762353, 'Start_Lon': -73.990023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-10 08:28:00', 'Trip_Pickup_DateTime': '2009-06-10 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760087, 'End_Lon': -73.974128, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752882, 'Start_Lon': -73.97951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-13 11:15:00', 'Trip_Pickup_DateTime': '2009-06-13 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757938, 'End_Lon': -73.991025, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736318, 'Start_Lon': -73.989288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-13 10:53:00', 'Trip_Pickup_DateTime': '2009-06-13 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.807283, 'End_Lon': -73.966063, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794792, 'Start_Lon': -73.971585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-13 13:50:00', 'Trip_Pickup_DateTime': '2009-06-13 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712302, 'End_Lon': -74.015117, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753767, 'Start_Lon': -73.98464, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-10 02:25:00', 'Trip_Pickup_DateTime': '2009-06-10 02:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710073, 'End_Lon': -74.009548, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721425, 'Start_Lon': -73.99998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-16 14:46:00', 'Trip_Pickup_DateTime': '2009-06-16 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756235, 'End_Lon': -73.983377, 'Fare_Amt': 31.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773703, 'Start_Lon': -73.870833, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 35.85, 'Trip_Distance': 11.97, 'Trip_Dropoff_DateTime': '2009-06-16 10:32:00', 'Trip_Pickup_DateTime': '2009-06-16 09:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748908, 'End_Lon': -73.970222, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745015, 'Start_Lon': -73.982458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.7, 'Trip_Dropoff_DateTime': '2009-06-18 15:16:00', 'Trip_Pickup_DateTime': '2009-06-18 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734615, 'End_Lon': -73.995903, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646757, 'Start_Lon': -73.778453, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.45, 'Trip_Dropoff_DateTime': '2009-06-18 12:05:00', 'Trip_Pickup_DateTime': '2009-06-18 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73847, 'End_Lon': -73.982335, 'Fare_Amt': 6.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756537, 'Start_Lon': -73.970183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-18 15:09:00', 'Trip_Pickup_DateTime': '2009-06-18 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77302, 'End_Lon': -73.95539, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776043, 'Start_Lon': -73.944058, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-18 13:53:00', 'Trip_Pickup_DateTime': '2009-06-18 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785, 'End_Lon': -73.97634, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78106, 'Start_Lon': -73.981468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-18 13:56:00', 'Trip_Pickup_DateTime': '2009-06-18 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772877, 'End_Lon': -73.94627, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784428, 'Start_Lon': -73.973647, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-16 10:08:00', 'Trip_Pickup_DateTime': '2009-06-16 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773987, 'End_Lon': -73.945297, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765497, 'Start_Lon': -73.954967, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 13:01:00', 'Trip_Pickup_DateTime': '2009-06-18 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714833, 'End_Lon': -74.005413, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75641, 'Start_Lon': -73.978923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-16 11:43:00', 'Trip_Pickup_DateTime': '2009-06-16 11:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761367, 'End_Lon': -73.987653, 'Fare_Amt': 2.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761368, 'Start_Lon': -73.988215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-12 11:37:00', 'Trip_Pickup_DateTime': '2009-06-12 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7687, 'End_Lon': -73.985177, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.793083, 'Start_Lon': -73.96739, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-16 11:06:00', 'Trip_Pickup_DateTime': '2009-06-16 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747582, 'End_Lon': -73.980732, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744378, 'Start_Lon': -73.973183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-19 21:03:00', 'Trip_Pickup_DateTime': '2009-06-19 20:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772335, 'End_Lon': -73.967307, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777487, 'Start_Lon': -73.956977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-26 07:04:00', 'Trip_Pickup_DateTime': '2009-06-26 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760598, 'End_Lon': -74.002747, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753892, 'Start_Lon': -73.977097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-08 22:28:00', 'Trip_Pickup_DateTime': '2009-06-08 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740507, 'End_Lon': -73.986518, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750983, 'Start_Lon': -73.974805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-12 12:06:00', 'Trip_Pickup_DateTime': '2009-06-12 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720428, 'End_Lon': -73.905012, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715472, 'Start_Lon': -73.912462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-17 20:58:00', 'Trip_Pickup_DateTime': '2009-06-17 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.800383, 'End_Lon': -73.967663, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770618, 'Start_Lon': -73.963577, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-18 14:21:00', 'Trip_Pickup_DateTime': '2009-06-18 14:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780873, 'End_Lon': -73.985428, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78463, 'Start_Lon': -73.958137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-16 11:30:00', 'Trip_Pickup_DateTime': '2009-06-16 11:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77397, 'End_Lon': -73.957245, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779685, 'Start_Lon': -73.955552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-12 11:34:00', 'Trip_Pickup_DateTime': '2009-06-12 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744552, 'End_Lon': -73.975252, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761332, 'Start_Lon': -73.97575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-17 16:40:00', 'Trip_Pickup_DateTime': '2009-06-17 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743063, 'End_Lon': -74.000037, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737353, 'Start_Lon': -74.000593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-16 09:59:00', 'Trip_Pickup_DateTime': '2009-06-16 09:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770617, 'End_Lon': -73.962358, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778667, 'Start_Lon': -73.958608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 13:37:00', 'Trip_Pickup_DateTime': '2009-06-18 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769478, 'End_Lon': -73.96579, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78089, 'Start_Lon': -73.95862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-18 09:00:00', 'Trip_Pickup_DateTime': '2009-06-18 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728957, 'End_Lon': -74.011055, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786877, 'Start_Lon': -73.977645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.84, 'Trip_Dropoff_DateTime': '2009-06-19 20:31:00', 'Trip_Pickup_DateTime': '2009-06-19 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741123, 'End_Lon': -73.98537, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744303, 'Start_Lon': -73.974683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-16 10:05:00', 'Trip_Pickup_DateTime': '2009-06-16 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747612, 'End_Lon': -74.001935, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74423, 'Start_Lon': -73.996047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-18 10:49:00', 'Trip_Pickup_DateTime': '2009-06-18 10:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759867, 'End_Lon': -73.97579, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773677, 'Start_Lon': -73.97803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-16 08:23:00', 'Trip_Pickup_DateTime': '2009-06-16 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767913, 'End_Lon': -73.993028, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755275, 'Start_Lon': -73.977008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-16 07:36:00', 'Trip_Pickup_DateTime': '2009-06-16 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719778, 'End_Lon': -73.990252, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71721, 'Start_Lon': -74.004887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-17 21:04:00', 'Trip_Pickup_DateTime': '2009-06-17 20:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780632, 'End_Lon': -73.976205, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758132, 'Start_Lon': -73.98635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-07 11:44:00', 'Trip_Pickup_DateTime': '2009-06-07 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770685, 'End_Lon': -73.903087, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761518, 'Start_Lon': -73.985052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.66, 'Trip_Dropoff_DateTime': '2009-06-09 00:45:00', 'Trip_Pickup_DateTime': '2009-06-09 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748895, 'End_Lon': -73.939625, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.79742, 'Start_Lon': -73.934643, 'Tip_Amt': 3.48, 'Tolls_Amt': 0.0, 'Total_Amt': 20.88, 'Trip_Distance': 5.73, 'Trip_Dropoff_DateTime': '2009-06-09 00:28:00', 'Trip_Pickup_DateTime': '2009-06-09 00:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732805, 'End_Lon': -73.999795, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742662, 'Start_Lon': -73.992087, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-18 13:28:00', 'Trip_Pickup_DateTime': '2009-06-18 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762408, 'End_Lon': -73.980062, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757153, 'Start_Lon': -73.973473, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-18 11:55:00', 'Trip_Pickup_DateTime': '2009-06-18 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800418, 'End_Lon': -73.957525, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.792065, 'Start_Lon': -73.950525, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-16 07:08:00', 'Trip_Pickup_DateTime': '2009-06-16 07:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77892, 'End_Lon': -73.956332, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778285, 'Start_Lon': -73.95468, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-16 09:31:00', 'Trip_Pickup_DateTime': '2009-06-16 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7543, 'End_Lon': -73.98858, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744087, 'Start_Lon': -73.983987, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-16 09:17:00', 'Trip_Pickup_DateTime': '2009-06-16 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734107, 'End_Lon': -73.995265, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797678, 'Start_Lon': -73.973513, 'Tip_Amt': 4.1, 'Tolls_Amt': 0.0, 'Total_Amt': 24.6, 'Trip_Distance': 5.37, 'Trip_Dropoff_DateTime': '2009-06-18 10:59:00', 'Trip_Pickup_DateTime': '2009-06-18 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762735, 'End_Lon': -73.985682, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715448, 'Start_Lon': -74.007407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 5.0, 'Trip_Dropoff_DateTime': '2009-06-18 11:18:00', 'Trip_Pickup_DateTime': '2009-06-18 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774353, 'End_Lon': -73.987253, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798007, 'Start_Lon': -73.969415, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-18 12:51:00', 'Trip_Pickup_DateTime': '2009-06-18 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734532, 'End_Lon': -73.994548, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737148, 'Start_Lon': -73.978497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-12 11:06:00', 'Trip_Pickup_DateTime': '2009-06-12 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77577, 'End_Lon': -73.983235, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76266, 'Start_Lon': -73.993163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-09 02:21:00', 'Trip_Pickup_DateTime': '2009-06-09 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749067, 'End_Lon': -73.98594, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752958, 'Start_Lon': -73.978458, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 10:47:00', 'Trip_Pickup_DateTime': '2009-06-18 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76264, 'End_Lon': -73.964978, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766965, 'Start_Lon': -73.979852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-12 11:09:00', 'Trip_Pickup_DateTime': '2009-06-12 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-27 23:54:00', 'Trip_Pickup_DateTime': '2009-06-27 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743212, 'End_Lon': -73.993555, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767113, 'Start_Lon': -73.98637, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-18 10:41:00', 'Trip_Pickup_DateTime': '2009-06-18 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77471, 'End_Lon': -73.980817, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782928, 'Start_Lon': -73.974787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-18 11:13:00', 'Trip_Pickup_DateTime': '2009-06-18 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780302, 'End_Lon': -73.81973, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759555, 'Start_Lon': -73.830208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-16 06:51:00', 'Trip_Pickup_DateTime': '2009-06-16 06:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714178, 'End_Lon': -73.957008, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725348, 'Start_Lon': -73.981017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-12 10:43:00', 'Trip_Pickup_DateTime': '2009-06-12 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757605, 'End_Lon': -73.985815, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75164, 'Start_Lon': -73.976685, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-18 11:27:00', 'Trip_Pickup_DateTime': '2009-06-18 11:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780422, 'End_Lon': -73.95707, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784595, 'Start_Lon': -73.954155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-16 06:01:00', 'Trip_Pickup_DateTime': '2009-06-16 06:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703927, 'End_Lon': -74.024693, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70157, 'Start_Lon': -74.02122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-18 09:29:00', 'Trip_Pickup_DateTime': '2009-06-18 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76041, 'End_Lon': -73.99112, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777202, 'Start_Lon': -73.978893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-08 23:33:00', 'Trip_Pickup_DateTime': '2009-06-08 23:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75815, 'End_Lon': -73.971395, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782603, 'Start_Lon': -73.951082, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-18 08:12:00', 'Trip_Pickup_DateTime': '2009-06-18 07:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742585, 'End_Lon': -73.986598, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761977, 'Start_Lon': -73.982288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-15 21:04:00', 'Trip_Pickup_DateTime': '2009-06-15 20:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727557, 'End_Lon': -73.992593, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747877, 'Start_Lon': -73.993268, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-12 10:30:00', 'Trip_Pickup_DateTime': '2009-06-12 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751542, 'End_Lon': -73.991182, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745668, 'Start_Lon': -73.985375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-16 04:56:00', 'Trip_Pickup_DateTime': '2009-06-16 04:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773313, 'End_Lon': -73.954773, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761947, 'Start_Lon': -73.960215, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-16 07:47:00', 'Trip_Pickup_DateTime': '2009-06-16 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70268, 'End_Lon': -74.011242, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70847, 'Start_Lon': -74.007532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-16 07:55:00', 'Trip_Pickup_DateTime': '2009-06-16 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794782, 'End_Lon': -73.973712, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78874, 'Start_Lon': -73.9777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-17 15:26:00', 'Trip_Pickup_DateTime': '2009-06-17 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704025, 'End_Lon': -74.008943, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748177, 'Start_Lon': -73.996343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.9, 'Trip_Distance': 5.99, 'Trip_Dropoff_DateTime': '2009-06-17 18:44:00', 'Trip_Pickup_DateTime': '2009-06-17 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761392, 'End_Lon': -73.98441, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758448, 'Start_Lon': -73.972608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-17 23:32:00', 'Trip_Pickup_DateTime': '2009-06-17 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772323, 'End_Lon': -73.978758, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771893, 'Start_Lon': -73.982118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.25, 'Trip_Dropoff_DateTime': '2009-06-17 19:53:00', 'Trip_Pickup_DateTime': '2009-06-17 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742535, 'End_Lon': -73.977587, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759553, 'Start_Lon': -73.965218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-17 19:16:00', 'Trip_Pickup_DateTime': '2009-06-17 19:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748118, 'End_Lon': -74.003377, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742925, 'Start_Lon': -73.992683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-01 23:17:00', 'Trip_Pickup_DateTime': '2009-06-01 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715413, 'End_Lon': -73.876255, 'Fare_Amt': 22.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764653, 'Start_Lon': -73.98789, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 28.0, 'Trip_Distance': 8.34, 'Trip_Dropoff_DateTime': '2009-06-13 02:22:00', 'Trip_Pickup_DateTime': '2009-06-13 01:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749453, 'End_Lon': -74.003025, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744375, 'Start_Lon': -73.996088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-20 11:07:00', 'Trip_Pickup_DateTime': '2009-06-20 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750178, 'End_Lon': -73.986138, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78382, 'Start_Lon': -73.947003, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.99, 'Trip_Dropoff_DateTime': '2009-06-06 05:34:00', 'Trip_Pickup_DateTime': '2009-06-06 05:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73877, 'End_Lon': -73.994448, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7264, 'Start_Lon': -74.005675, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-07 03:20:00', 'Trip_Pickup_DateTime': '2009-06-07 03:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739298, 'End_Lon': -73.982953, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752552, 'Start_Lon': -73.978233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-17 19:36:00', 'Trip_Pickup_DateTime': '2009-06-17 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732613, 'End_Lon': -73.995232, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704233, 'Start_Lon': -74.008513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 4.86, 'Trip_Dropoff_DateTime': '2009-06-17 19:02:00', 'Trip_Pickup_DateTime': '2009-06-17 18:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717655, 'End_Lon': -74.014287, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740268, 'Start_Lon': -73.998135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-13 02:22:00', 'Trip_Pickup_DateTime': '2009-06-13 02:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716422, 'End_Lon': -73.96375, 'Fare_Amt': 12.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.686703, 'Start_Lon': -73.979248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 4.14, 'Trip_Dropoff_DateTime': '2009-06-18 00:13:00', 'Trip_Pickup_DateTime': '2009-06-18 00:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786168, 'End_Lon': -73.972838, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737792, 'Start_Lon': -74.00968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-06 22:39:00', 'Trip_Pickup_DateTime': '2009-06-06 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724993, 'End_Lon': -74.007715, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76375, 'Start_Lon': -73.975398, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 4.64, 'Trip_Dropoff_DateTime': '2009-06-17 22:48:00', 'Trip_Pickup_DateTime': '2009-06-17 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730235, 'End_Lon': -74.007187, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761605, 'Start_Lon': -73.974898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-17 23:23:00', 'Trip_Pickup_DateTime': '2009-06-17 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757583, 'End_Lon': -73.963232, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771778, 'Start_Lon': -73.982898, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-17 22:01:00', 'Trip_Pickup_DateTime': '2009-06-17 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77289, 'End_Lon': -73.989523, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740067, 'Start_Lon': -74.005635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-17 22:18:00', 'Trip_Pickup_DateTime': '2009-06-17 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740438, 'End_Lon': -73.976015, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738582, 'Start_Lon': -73.999605, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-18 00:45:00', 'Trip_Pickup_DateTime': '2009-06-18 00:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.804193, 'End_Lon': -73.964863, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763433, 'Start_Lon': -73.985652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-18 00:12:00', 'Trip_Pickup_DateTime': '2009-06-18 00:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76952, 'End_Lon': -73.973142, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725268, 'Start_Lon': -74.007708, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.0, 'Trip_Distance': 4.77, 'Trip_Dropoff_DateTime': '2009-06-18 00:51:00', 'Trip_Pickup_DateTime': '2009-06-18 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779953, 'End_Lon': -73.953142, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773817, 'Start_Lon': -73.978212, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-15 19:45:00', 'Trip_Pickup_DateTime': '2009-06-15 19:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746693, 'End_Lon': -73.988235, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719132, 'Start_Lon': -74.005165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-17 23:19:00', 'Trip_Pickup_DateTime': '2009-06-17 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746177, 'End_Lon': -74.004533, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73589, 'Start_Lon': -73.997887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-09 20:28:00', 'Trip_Pickup_DateTime': '2009-06-09 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72942, 'End_Lon': -73.98978, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757142, 'Start_Lon': -73.98397, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-18 00:00:00', 'Trip_Pickup_DateTime': '2009-06-17 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.703443, 'End_Lon': -73.808598, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711993, 'Start_Lon': -73.809177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-17 23:37:00', 'Trip_Pickup_DateTime': '2009-06-17 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72119, 'End_Lon': -74.001222, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770263, 'Start_Lon': -73.98444, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-17 22:21:00', 'Trip_Pickup_DateTime': '2009-06-17 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736902, 'End_Lon': -73.90904, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723547, 'Start_Lon': -73.998367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.92, 'Trip_Dropoff_DateTime': '2009-06-18 03:10:00', 'Trip_Pickup_DateTime': '2009-06-18 02:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772037, 'End_Lon': -73.952047, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733328, 'Start_Lon': -74.004002, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.2, 'Trip_Dropoff_DateTime': '2009-06-13 05:27:00', 'Trip_Pickup_DateTime': '2009-06-13 05:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728868, 'End_Lon': -74.005168, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746083, 'Start_Lon': -73.994108, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-15 20:42:00', 'Trip_Pickup_DateTime': '2009-06-15 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745715, 'End_Lon': -73.972118, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739682, 'Start_Lon': -73.979372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-15 20:23:00', 'Trip_Pickup_DateTime': '2009-06-15 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75348, 'End_Lon': -73.977882, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760127, 'Start_Lon': -73.984628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-17 20:18:00', 'Trip_Pickup_DateTime': '2009-06-17 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71642, 'End_Lon': -73.991673, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726652, 'Start_Lon': -73.983383, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-08 22:56:00', 'Trip_Pickup_DateTime': '2009-06-08 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758072, 'End_Lon': -73.973453, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758072, 'Start_Lon': -73.973453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-20 11:24:00', 'Trip_Pickup_DateTime': '2009-06-20 11:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702288, 'End_Lon': -74.014342, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760345, 'Start_Lon': -73.987793, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 5.14, 'Trip_Dropoff_DateTime': '2009-06-16 05:35:00', 'Trip_Pickup_DateTime': '2009-06-16 05:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724893, 'End_Lon': -73.999312, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709173, 'Start_Lon': -74.010587, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-17 20:30:00', 'Trip_Pickup_DateTime': '2009-06-17 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766493, 'End_Lon': -73.952993, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767945, 'Start_Lon': -73.964495, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-18 07:42:00', 'Trip_Pickup_DateTime': '2009-06-18 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757023, 'End_Lon': -73.975843, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761793, 'Start_Lon': -73.985885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-18 07:44:00', 'Trip_Pickup_DateTime': '2009-06-18 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72741, 'End_Lon': -73.993612, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714812, 'Start_Lon': -74.008165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-18 07:39:00', 'Trip_Pickup_DateTime': '2009-06-18 07:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732278, 'End_Lon': -74.007719, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.716553, 'Start_Lon': -74.013018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-14 22:49:03', 'Trip_Pickup_DateTime': '2009-06-14 22:44:50', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.77037, 'End_Lon': -73.987463, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77637, 'Start_Lon': -73.975898, 'Tip_Amt': 1.52, 'Tolls_Amt': 0.0, 'Total_Amt': 7.62, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-14 19:04:51', 'Trip_Pickup_DateTime': '2009-06-14 18:58:02', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.731243, 'End_Lon': -73.991838, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761458, 'Start_Lon': -73.972077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-17 08:43:00', 'Trip_Pickup_DateTime': '2009-06-17 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797797, 'End_Lon': -73.960128, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.81804, 'Start_Lon': -73.938017, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-19 06:20:00', 'Trip_Pickup_DateTime': '2009-06-19 06:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774332, 'End_Lon': -73.957615, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783257, 'Start_Lon': -73.980305, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-19 09:53:00', 'Trip_Pickup_DateTime': '2009-06-19 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787202, 'End_Lon': -73.941993, 'Fare_Amt': 18.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734613, 'Start_Lon': -73.998845, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.0, 'Trip_Distance': 6.14, 'Trip_Dropoff_DateTime': '2009-06-16 23:33:00', 'Trip_Pickup_DateTime': '2009-06-16 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.67082, 'End_Lon': -73.865965, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644767, 'Start_Lon': -73.781853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.85, 'Trip_Dropoff_DateTime': '2009-06-16 22:28:00', 'Trip_Pickup_DateTime': '2009-06-16 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750227, 'End_Lon': -73.973187, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756515, 'Start_Lon': -73.97341, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-09 09:17:00', 'Trip_Pickup_DateTime': '2009-06-09 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70355, 'End_Lon': -74.012558, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709532, 'Start_Lon': -74.017833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-18 08:38:00', 'Trip_Pickup_DateTime': '2009-06-18 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774572, 'End_Lon': -73.982263, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750973, 'Start_Lon': -73.977577, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-16 23:24:00', 'Trip_Pickup_DateTime': '2009-06-16 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.688718, 'End_Lon': -73.973835, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749147, 'Start_Lon': -73.994475, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.0, 'Trip_Distance': 5.72, 'Trip_Dropoff_DateTime': '2009-06-19 02:23:00', 'Trip_Pickup_DateTime': '2009-06-19 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758488, 'End_Lon': -73.975048, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780568, 'Start_Lon': -73.98408, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-17 05:05:00', 'Trip_Pickup_DateTime': '2009-06-17 04:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767643, 'End_Lon': -73.96842, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760938, 'Start_Lon': -73.972445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-19 06:22:00', 'Trip_Pickup_DateTime': '2009-06-19 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768247, 'End_Lon': -73.963278, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758477, 'Start_Lon': -73.971125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-19 05:08:00', 'Trip_Pickup_DateTime': '2009-06-19 05:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75521, 'End_Lon': -73.971795, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760127, 'Start_Lon': -73.984797, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-09 08:59:00', 'Trip_Pickup_DateTime': '2009-06-09 08:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762282, 'End_Lon': -73.964995, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755682, 'Start_Lon': -73.98567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-16 23:18:00', 'Trip_Pickup_DateTime': '2009-06-16 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741315, 'End_Lon': -74.005008, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749602, 'Start_Lon': -73.995398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-19 02:07:00', 'Trip_Pickup_DateTime': '2009-06-19 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738372, 'End_Lon': -73.983667, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756143, 'Start_Lon': -73.980582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-19 04:18:00', 'Trip_Pickup_DateTime': '2009-06-19 04:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71734, 'End_Lon': -74.008088, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717788, 'Start_Lon': -74.004523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-19 01:26:00', 'Trip_Pickup_DateTime': '2009-06-19 01:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.668588, 'End_Lon': -73.974518, 'Fare_Amt': 26.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736458, 'Start_Lon': -74.001302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.0, 'Trip_Distance': 8.69, 'Trip_Dropoff_DateTime': '2009-06-20 00:00:00', 'Trip_Pickup_DateTime': '2009-06-19 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77091, 'End_Lon': -73.951433, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754875, 'Start_Lon': -73.991477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-16 21:17:00', 'Trip_Pickup_DateTime': '2009-06-16 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716368, 'End_Lon': -73.955488, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717788, 'Start_Lon': -73.957827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.16, 'Trip_Dropoff_DateTime': '2009-06-19 00:46:00', 'Trip_Pickup_DateTime': '2009-06-19 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730763, 'End_Lon': -73.953745, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731987, 'Start_Lon': -73.984855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.81, 'Trip_Dropoff_DateTime': '2009-06-19 03:06:00', 'Trip_Pickup_DateTime': '2009-06-19 02:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752028, 'End_Lon': -74.004605, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76267, 'Start_Lon': -73.98392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-19 01:40:00', 'Trip_Pickup_DateTime': '2009-06-19 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791705, 'End_Lon': -73.978477, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771162, 'Start_Lon': -73.961867, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-18 20:24:00', 'Trip_Pickup_DateTime': '2009-06-18 20:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719732, 'End_Lon': -74.004123, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762442, 'Start_Lon': -73.967945, 'Tip_Amt': 3.64, 'Tolls_Amt': 0.0, 'Total_Amt': 21.84, 'Trip_Distance': 6.53, 'Trip_Dropoff_DateTime': '2009-06-16 21:06:00', 'Trip_Pickup_DateTime': '2009-06-16 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.699025, 'End_Lon': -73.993358, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73743, 'Start_Lon': -74.004798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-16 21:23:00', 'Trip_Pickup_DateTime': '2009-06-16 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766698, 'End_Lon': -73.953725, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773237, 'Start_Lon': -73.958147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-16 21:28:00', 'Trip_Pickup_DateTime': '2009-06-16 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711397, 'End_Lon': -74.015623, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727727, 'Start_Lon': -74.001237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-18 23:05:00', 'Trip_Pickup_DateTime': '2009-06-18 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.62061, 'End_Lon': -74.02413, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719708, 'Start_Lon': -73.986897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.8, 'Trip_Distance': 10.48, 'Trip_Dropoff_DateTime': '2009-06-16 21:50:00', 'Trip_Pickup_DateTime': '2009-06-16 21:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.682718, 'End_Lon': -73.963648, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73595, 'Start_Lon': -73.992933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.9, 'Trip_Distance': 5.98, 'Trip_Dropoff_DateTime': '2009-06-18 17:19:00', 'Trip_Pickup_DateTime': '2009-06-18 16:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763505, 'End_Lon': -73.971357, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74901, 'Start_Lon': -73.988357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-05 11:46:00', 'Trip_Pickup_DateTime': '2009-06-05 11:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738907, 'End_Lon': -73.989732, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743683, 'Start_Lon': -73.989292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-16 20:45:00', 'Trip_Pickup_DateTime': '2009-06-16 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.811082, 'End_Lon': -73.946667, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803713, 'Start_Lon': -73.9672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-19 01:02:00', 'Trip_Pickup_DateTime': '2009-06-19 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.687693, 'End_Lon': -73.973735, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722238, 'Start_Lon': -73.98659, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-19 00:39:00', 'Trip_Pickup_DateTime': '2009-06-19 00:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781233, 'End_Lon': -73.956295, 'Fare_Amt': 4.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771115, 'Start_Lon': -73.959718, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-16 20:26:00', 'Trip_Pickup_DateTime': '2009-06-16 20:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74325, 'End_Lon': -74.007513, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758177, 'Start_Lon': -73.992703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-16 20:41:00', 'Trip_Pickup_DateTime': '2009-06-16 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.80615, 'End_Lon': -73.965075, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.797347, 'Start_Lon': -73.969757, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-14 17:30:40', 'Trip_Pickup_DateTime': '2009-06-14 17:28:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.732905, 'End_Lon': -74.005578, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730138, 'Start_Lon': -73.98047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-18 23:52:00', 'Trip_Pickup_DateTime': '2009-06-18 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73917, 'End_Lon': -74.001222, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755177, 'Start_Lon': -73.994887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-18 22:25:00', 'Trip_Pickup_DateTime': '2009-06-18 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769528, 'End_Lon': -73.989407, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728862, 'Start_Lon': -74.0069, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-19 00:06:00', 'Trip_Pickup_DateTime': '2009-06-18 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782333, 'End_Lon': -73.978573, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779223, 'Start_Lon': -73.984755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-09 08:34:00', 'Trip_Pickup_DateTime': '2009-06-09 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766293, 'End_Lon': -73.971777, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.789375, 'Start_Lon': -73.954652, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-16 09:06:00', 'Trip_Pickup_DateTime': '2009-06-16 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75076, 'End_Lon': -73.924875, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757607, 'Start_Lon': -73.916032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-09 08:03:00', 'Trip_Pickup_DateTime': '2009-06-09 07:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716882, 'End_Lon': -74.007985, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705853, 'Start_Lon': -74.007173, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-12 13:54:00', 'Trip_Pickup_DateTime': '2009-06-12 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740683, 'End_Lon': -73.980362, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753658, 'Start_Lon': -73.97469, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-16 19:39:00', 'Trip_Pickup_DateTime': '2009-06-16 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771755, 'End_Lon': -73.990388, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78117, 'Start_Lon': -73.979953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-12 12:28:00', 'Trip_Pickup_DateTime': '2009-06-12 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762477, 'End_Lon': -73.992302, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73902, 'Start_Lon': -73.98298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-18 22:48:00', 'Trip_Pickup_DateTime': '2009-06-18 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783613, 'End_Lon': -73.977338, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73606, 'Start_Lon': -73.997745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-16 19:17:00', 'Trip_Pickup_DateTime': '2009-06-16 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784138, 'End_Lon': -73.950962, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778812, 'Start_Lon': -73.977627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-02 00:07:00', 'Trip_Pickup_DateTime': '2009-06-01 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757277, 'End_Lon': -73.971517, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7712, 'Start_Lon': -73.98329, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-16 19:01:00', 'Trip_Pickup_DateTime': '2009-06-16 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757493, 'End_Lon': -73.978395, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775343, 'Start_Lon': -73.976658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-16 18:57:00', 'Trip_Pickup_DateTime': '2009-06-16 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724588, 'End_Lon': -73.981547, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705488, 'Start_Lon': -74.006755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-18 21:34:00', 'Trip_Pickup_DateTime': '2009-06-18 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749958, 'End_Lon': -73.989775, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734005, 'Start_Lon': -74.004522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-18 22:05:00', 'Trip_Pickup_DateTime': '2009-06-18 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70355, 'End_Lon': -74.012385, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754922, 'Start_Lon': -73.968485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 5.4, 'Trip_Dropoff_DateTime': '2009-06-18 23:39:00', 'Trip_Pickup_DateTime': '2009-06-18 23:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.680548, 'End_Lon': -73.974983, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72553, 'Start_Lon': -73.996597, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-19 23:24:00', 'Trip_Pickup_DateTime': '2009-06-19 23:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784242, 'End_Lon': -73.957898, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76276, 'Start_Lon': -73.972677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-09 07:50:00', 'Trip_Pickup_DateTime': '2009-06-09 07:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744123, 'End_Lon': -73.97921, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773925, 'Start_Lon': -73.872098, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 32.05, 'Trip_Distance': 8.38, 'Trip_Dropoff_DateTime': '2009-06-16 09:07:00', 'Trip_Pickup_DateTime': '2009-06-16 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783806, 'End_Lon': -73.954427, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.777843, 'Start_Lon': -73.951534, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-12 18:32:55', 'Trip_Pickup_DateTime': '2009-06-12 18:25:52', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.74476, 'End_Lon': -74.002602, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74937, 'Start_Lon': -73.999288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-16 18:40:00', 'Trip_Pickup_DateTime': '2009-06-16 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750765, 'End_Lon': -74.003485, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71872, 'Start_Lon': -74.005168, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-18 22:41:00', 'Trip_Pickup_DateTime': '2009-06-18 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777675, 'End_Lon': -73.9543, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757447, 'Start_Lon': -73.969507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-18 22:51:00', 'Trip_Pickup_DateTime': '2009-06-18 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733477, 'End_Lon': -73.974702, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763467, 'Start_Lon': -73.996508, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.25, 'Trip_Dropoff_DateTime': '2009-06-18 20:59:00', 'Trip_Pickup_DateTime': '2009-06-18 20:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774207, 'End_Lon': -73.94835, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755555, 'Start_Lon': -73.964913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-16 18:27:00', 'Trip_Pickup_DateTime': '2009-06-16 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782387, 'End_Lon': -73.971562, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782368, 'Start_Lon': -73.971525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-18 18:49:00', 'Trip_Pickup_DateTime': '2009-06-18 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73336, 'End_Lon': -73.997643, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734787, 'Start_Lon': -73.990755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-16 13:21:00', 'Trip_Pickup_DateTime': '2009-06-16 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780695, 'End_Lon': -73.958907, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738255, 'Start_Lon': -73.98777, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-16 18:00:00', 'Trip_Pickup_DateTime': '2009-06-16 17:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788613, 'End_Lon': -73.976285, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780825, 'Start_Lon': -73.981095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-12 12:49:00', 'Trip_Pickup_DateTime': '2009-06-12 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786103, 'End_Lon': -73.968762, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755853, 'Start_Lon': -73.982953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-16 18:02:00', 'Trip_Pickup_DateTime': '2009-06-16 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76545, 'End_Lon': -73.972267, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.808373, 'Start_Lon': -73.953023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-18 20:00:00', 'Trip_Pickup_DateTime': '2009-06-18 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751323, 'End_Lon': -74.003683, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757092, 'Start_Lon': -73.972343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-01 22:11:00', 'Trip_Pickup_DateTime': '2009-06-01 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763747, 'End_Lon': -73.985143, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776245, 'Start_Lon': -73.987138, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-18 19:36:00', 'Trip_Pickup_DateTime': '2009-06-18 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78687, 'End_Lon': -73.981143, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775742, 'Start_Lon': -73.958823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-16 16:18:00', 'Trip_Pickup_DateTime': '2009-06-16 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740282, 'End_Lon': -73.992493, 'Fare_Amt': 5.3, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743742, 'Start_Lon': -74.007068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-16 14:36:00', 'Trip_Pickup_DateTime': '2009-06-16 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779027, 'End_Lon': -73.960302, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743317, 'Start_Lon': -73.972305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-18 12:01:00', 'Trip_Pickup_DateTime': '2009-06-18 11:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753385, 'End_Lon': -73.975697, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762978, 'Start_Lon': -73.959358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-16 13:28:00', 'Trip_Pickup_DateTime': '2009-06-16 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710477, 'End_Lon': -74.009498, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724042, 'Start_Lon': -73.997888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-18 18:13:00', 'Trip_Pickup_DateTime': '2009-06-18 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769452, 'End_Lon': -73.95194, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765478, 'Start_Lon': -73.966115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 08:28:00', 'Trip_Pickup_DateTime': '2009-06-18 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667242, 'End_Lon': -73.793942, 'Fare_Amt': 29.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768977, 'Start_Lon': -73.862533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.7, 'Trip_Distance': 12.88, 'Trip_Dropoff_DateTime': '2009-06-16 15:16:00', 'Trip_Pickup_DateTime': '2009-06-16 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753787, 'End_Lon': -73.972215, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746407, 'Start_Lon': -73.974237, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-18 18:24:00', 'Trip_Pickup_DateTime': '2009-06-18 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722697, 'End_Lon': -73.988087, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740167, 'Start_Lon': -74.005312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-18 20:15:00', 'Trip_Pickup_DateTime': '2009-06-18 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764525, 'End_Lon': -73.980688, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756445, 'Start_Lon': -73.990307, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-18 18:25:00', 'Trip_Pickup_DateTime': '2009-06-18 18:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725562, 'End_Lon': -73.990018, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73399, 'Start_Lon': -73.980708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-18 20:13:00', 'Trip_Pickup_DateTime': '2009-06-18 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753317, 'End_Lon': -73.974122, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769458, 'Start_Lon': -73.95061, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-20 00:08:00', 'Trip_Pickup_DateTime': '2009-06-19 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736523, 'End_Lon': -73.974537, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745365, 'Start_Lon': -73.975525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-16 14:50:00', 'Trip_Pickup_DateTime': '2009-06-16 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72817, 'End_Lon': -73.993933, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735868, 'Start_Lon': -73.993848, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-26 23:35:00', 'Trip_Pickup_DateTime': '2009-06-26 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779802, 'End_Lon': -73.953127, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787835, 'Start_Lon': -73.971083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-18 18:07:00', 'Trip_Pickup_DateTime': '2009-06-18 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780553, 'End_Lon': -73.98089, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773743, 'Start_Lon': -73.983545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-18 19:20:00', 'Trip_Pickup_DateTime': '2009-06-18 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759243, 'End_Lon': -73.984492, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7371, 'Start_Lon': -73.988523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-20 00:25:00', 'Trip_Pickup_DateTime': '2009-06-20 00:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735822, 'End_Lon': -73.979238, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757713, 'Start_Lon': -73.969518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-16 13:14:00', 'Trip_Pickup_DateTime': '2009-06-16 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786112, 'End_Lon': -73.977442, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749915, 'Start_Lon': -73.986327, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-20 00:12:00', 'Trip_Pickup_DateTime': '2009-06-19 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746445, 'End_Lon': -73.979368, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732905, 'Start_Lon': -73.987542, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 16:03:00', 'Trip_Pickup_DateTime': '2009-06-18 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732143, 'End_Lon': -73.996652, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766938, 'Start_Lon': -73.953567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-18 15:32:00', 'Trip_Pickup_DateTime': '2009-06-18 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770548, 'End_Lon': -73.945057, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770683, 'Start_Lon': -73.950643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-03 18:15:00', 'Trip_Pickup_DateTime': '2009-06-03 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774295, 'End_Lon': -73.872725, 'Fare_Amt': 25.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75876, 'Start_Lon': -73.977018, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85, 'Trip_Distance': 10.76, 'Trip_Dropoff_DateTime': '2009-06-16 13:10:00', 'Trip_Pickup_DateTime': '2009-06-16 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773543, 'End_Lon': -73.95236, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749145, 'Start_Lon': -73.975838, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-17 21:14:00', 'Trip_Pickup_DateTime': '2009-06-17 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711397, 'End_Lon': -74.015875, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744182, 'Start_Lon': -73.97451, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 5.37, 'Trip_Dropoff_DateTime': '2009-06-18 14:27:00', 'Trip_Pickup_DateTime': '2009-06-18 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750245, 'End_Lon': -73.973087, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767262, 'Start_Lon': -73.959312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-26 05:17:00', 'Trip_Pickup_DateTime': '2009-06-26 05:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774127, 'End_Lon': -73.870915, 'Fare_Amt': 25.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755247, 'Start_Lon': -73.982007, 'Tip_Amt': 5.06, 'Tolls_Amt': 4.15, 'Total_Amt': 34.51, 'Trip_Distance': 10.79, 'Trip_Dropoff_DateTime': '2009-06-12 11:53:00', 'Trip_Pickup_DateTime': '2009-06-12 11:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78387, 'End_Lon': -73.974192, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760718, 'Start_Lon': -73.96119, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-16 11:18:00', 'Trip_Pickup_DateTime': '2009-06-16 11:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71472, 'End_Lon': -73.997113, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720827, 'Start_Lon': -74.000515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-09 06:40:00', 'Trip_Pickup_DateTime': '2009-06-09 06:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75004, 'End_Lon': -73.99164, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765553, 'Start_Lon': -73.982158, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-18 16:25:00', 'Trip_Pickup_DateTime': '2009-06-18 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762995, 'End_Lon': -73.96762, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779577, 'Start_Lon': -73.95542, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-18 08:36:00', 'Trip_Pickup_DateTime': '2009-06-18 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723788, 'End_Lon': -73.979055, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729223, 'Start_Lon': -73.986958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-12 17:04:00', 'Trip_Pickup_DateTime': '2009-06-12 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757375, 'End_Lon': -73.986323, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739852, 'Start_Lon': -74.002452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-20 02:33:00', 'Trip_Pickup_DateTime': '2009-06-20 02:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74477, 'End_Lon': -73.976245, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740268, 'Start_Lon': -74.005227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-20 02:16:00', 'Trip_Pickup_DateTime': '2009-06-20 02:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709347, 'End_Lon': -73.960948, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721598, 'Start_Lon': -73.988885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-20 00:17:00', 'Trip_Pickup_DateTime': '2009-06-20 00:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774552, 'End_Lon': -73.948043, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.64578, 'Start_Lon': -73.776887, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 19.58, 'Trip_Dropoff_DateTime': '2009-06-16 16:01:00', 'Trip_Pickup_DateTime': '2009-06-16 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751082, 'End_Lon': -73.991367, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760412, 'Start_Lon': -73.971302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-19 23:08:00', 'Trip_Pickup_DateTime': '2009-06-19 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72175, 'End_Lon': -73.993538, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760658, 'Start_Lon': -73.979738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-19 23:29:00', 'Trip_Pickup_DateTime': '2009-06-19 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764275, 'End_Lon': -73.971227, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705325, 'Start_Lon': -74.017147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.11, 'Trip_Dropoff_DateTime': '2009-06-20 14:27:00', 'Trip_Pickup_DateTime': '2009-06-20 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739172, 'End_Lon': -73.976828, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752377, 'Start_Lon': -73.975337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-17 08:00:00', 'Trip_Pickup_DateTime': '2009-06-17 07:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751318, 'End_Lon': -73.973232, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723127, 'Start_Lon': -73.982643, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-20 01:49:00', 'Trip_Pickup_DateTime': '2009-06-20 01:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780029, 'End_Lon': -73.961051, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783021, 'Start_Lon': -73.959411, 'Tip_Amt': 1.84, 'Tolls_Amt': 0.0, 'Total_Amt': 13.14, 'Trip_Distance': 3.3, 'Trip_Dropoff_DateTime': '2009-06-04 18:20:57', 'Trip_Pickup_DateTime': '2009-06-04 18:05:41', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.738845, 'End_Lon': -74.008138, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744485, 'Start_Lon': -73.977257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-19 20:08:00', 'Trip_Pickup_DateTime': '2009-06-19 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724223, 'End_Lon': -74.002968, 'Fare_Amt': 10.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739737, 'Start_Lon': -74.006283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-19 23:48:00', 'Trip_Pickup_DateTime': '2009-06-19 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734408, 'End_Lon': -73.999717, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723215, 'Start_Lon': -73.988245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-20 00:47:00', 'Trip_Pickup_DateTime': '2009-06-20 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774033, 'End_Lon': -73.957852, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755153, 'Start_Lon': -73.974005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-19 23:49:00', 'Trip_Pickup_DateTime': '2009-06-19 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744382, 'End_Lon': -73.976137, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76419, 'Start_Lon': -73.961862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-20 01:44:00', 'Trip_Pickup_DateTime': '2009-06-20 01:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72915, 'End_Lon': -73.985132, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753145, 'Start_Lon': -73.96971, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-19 23:42:00', 'Trip_Pickup_DateTime': '2009-06-19 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724632, 'End_Lon': -73.974202, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768522, 'Start_Lon': -73.955435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.83, 'Trip_Dropoff_DateTime': '2009-06-20 00:21:00', 'Trip_Pickup_DateTime': '2009-06-20 00:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773882, 'End_Lon': -73.95251, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749882, 'Start_Lon': -73.937927, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-19 22:06:00', 'Trip_Pickup_DateTime': '2009-06-19 21:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754343, 'End_Lon': -73.989037, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757468, 'Start_Lon': -73.97221, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-12 16:39:00', 'Trip_Pickup_DateTime': '2009-06-12 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761317, 'End_Lon': -74.000125, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758165, 'Start_Lon': -73.963907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-19 15:43:00', 'Trip_Pickup_DateTime': '2009-06-19 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772618, 'End_Lon': -73.951757, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761702, 'Start_Lon': -73.985782, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-19 20:35:00', 'Trip_Pickup_DateTime': '2009-06-19 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736162, 'End_Lon': -73.980888, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728957, 'Start_Lon': -73.988762, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 5.75, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-19 22:57:00', 'Trip_Pickup_DateTime': '2009-06-19 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710875, 'End_Lon': -73.986727, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714197, 'Start_Lon': -74.01576, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-19 22:00:00', 'Trip_Pickup_DateTime': '2009-06-19 21:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762583, 'End_Lon': -74.001227, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73122, 'Start_Lon': -73.992113, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-19 20:02:00', 'Trip_Pickup_DateTime': '2009-06-19 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.855028, 'End_Lon': -73.937992, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.825925, 'Start_Lon': -73.949397, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-19 20:55:00', 'Trip_Pickup_DateTime': '2009-06-19 20:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735532, 'End_Lon': -73.991797, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714873, 'Start_Lon': -74.008083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-19 21:10:00', 'Trip_Pickup_DateTime': '2009-06-19 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.709975, 'End_Lon': -74.010012, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773977, 'Start_Lon': -73.87211, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.1, 'Trip_Distance': 12.02, 'Trip_Dropoff_DateTime': '2009-06-17 12:43:00', 'Trip_Pickup_DateTime': '2009-06-17 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744372, 'End_Lon': -73.986243, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646762, 'Start_Lon': -73.781598, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.52, 'Trip_Dropoff_DateTime': '2009-06-01 13:36:00', 'Trip_Pickup_DateTime': '2009-06-01 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790638, 'End_Lon': -73.966128, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.80288, 'Start_Lon': -73.967887, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-01 13:23:00', 'Trip_Pickup_DateTime': '2009-06-01 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75613, 'End_Lon': -73.983322, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755447, 'Start_Lon': -73.971448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-19 19:21:00', 'Trip_Pickup_DateTime': '2009-06-19 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716877, 'End_Lon': -73.989778, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732108, 'Start_Lon': -74.003683, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 9.05, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-19 20:39:00', 'Trip_Pickup_DateTime': '2009-06-19 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755503, 'End_Lon': -73.99112, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740122, 'Start_Lon': -73.989343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-19 20:54:00', 'Trip_Pickup_DateTime': '2009-06-19 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785078, 'End_Lon': -73.9495, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766247, 'Start_Lon': -73.963157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-19 17:37:00', 'Trip_Pickup_DateTime': '2009-06-19 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768977, 'End_Lon': -73.968298, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762522, 'Start_Lon': -73.972637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-19 16:30:00', 'Trip_Pickup_DateTime': '2009-06-19 16:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760798, 'End_Lon': -73.994338, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757293, 'Start_Lon': -73.994207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-19 17:17:00', 'Trip_Pickup_DateTime': '2009-06-19 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769175, 'End_Lon': -74.003897, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767758, 'Start_Lon': -74.001278, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-19 19:17:00', 'Trip_Pickup_DateTime': '2009-06-19 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782735, 'End_Lon': -73.95318, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769105, 'Start_Lon': -73.862745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.5, 'Trip_Distance': 8.75, 'Trip_Dropoff_DateTime': '2009-06-19 18:44:00', 'Trip_Pickup_DateTime': '2009-06-19 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730105, 'End_Lon': -74.004747, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75047, 'Start_Lon': -73.978137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-19 16:59:00', 'Trip_Pickup_DateTime': '2009-06-19 16:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78618, 'End_Lon': -73.976258, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785125, 'Start_Lon': -73.973317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.24, 'Trip_Dropoff_DateTime': '2009-06-19 18:33:00', 'Trip_Pickup_DateTime': '2009-06-19 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738922, 'End_Lon': -73.983008, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733427, 'Start_Lon': -73.987025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-19 17:54:00', 'Trip_Pickup_DateTime': '2009-06-19 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756862, 'End_Lon': -73.989615, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738582, 'Start_Lon': -73.995915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-19 18:25:00', 'Trip_Pickup_DateTime': '2009-06-19 18:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781282, 'End_Lon': -73.946278, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77315, 'Start_Lon': -73.952197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-19 20:26:00', 'Trip_Pickup_DateTime': '2009-06-19 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756318, 'End_Lon': -73.96995, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792148, 'Start_Lon': -73.926077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 5.82, 'Trip_Dropoff_DateTime': '2009-06-19 18:55:00', 'Trip_Pickup_DateTime': '2009-06-19 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789353, 'End_Lon': -73.967035, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.797862, 'Start_Lon': -73.971438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-19 17:26:00', 'Trip_Pickup_DateTime': '2009-06-19 17:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74978, 'End_Lon': -73.991393, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770022, 'Start_Lon': -73.961187, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-19 22:47:00', 'Trip_Pickup_DateTime': '2009-06-19 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750207, 'End_Lon': -73.99498, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7616, 'Start_Lon': -73.990157, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-19 17:01:00', 'Trip_Pickup_DateTime': '2009-06-19 16:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776867, 'End_Lon': -73.963683, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76666, 'Start_Lon': -73.990473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-16 19:55:00', 'Trip_Pickup_DateTime': '2009-06-16 19:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763388, 'End_Lon': -73.981633, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763388, 'Start_Lon': -73.981633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-17 10:02:00', 'Trip_Pickup_DateTime': '2009-06-17 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722312, 'End_Lon': -73.986637, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7342, 'Start_Lon': -74.002648, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-20 01:40:00', 'Trip_Pickup_DateTime': '2009-06-20 01:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742803, 'End_Lon': -73.985007, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740757, 'Start_Lon': -74.005023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-12 16:47:00', 'Trip_Pickup_DateTime': '2009-06-12 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784557, 'End_Lon': -73.856183, 'Fare_Amt': 36.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764265, 'Start_Lon': -73.954228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 36.5, 'Trip_Distance': 12.83, 'Trip_Dropoff_DateTime': '2009-06-19 15:21:00', 'Trip_Pickup_DateTime': '2009-06-19 14:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74946, 'End_Lon': -73.993245, 'Fare_Amt': 7.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750853, 'Start_Lon': -73.982245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-19 13:07:00', 'Trip_Pickup_DateTime': '2009-06-19 12:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78097, 'End_Lon': -73.981147, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768937, 'Start_Lon': -73.990182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-19 13:37:00', 'Trip_Pickup_DateTime': '2009-06-19 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77582, 'End_Lon': -73.956015, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769247, 'Start_Lon': -73.965035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-20 01:17:00', 'Trip_Pickup_DateTime': '2009-06-20 01:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748472, 'End_Lon': -73.977082, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75352, 'Start_Lon': -73.979932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-17 10:20:00', 'Trip_Pickup_DateTime': '2009-06-17 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733385, 'End_Lon': -73.991962, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734515, 'Start_Lon': -74.001133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-17 09:42:00', 'Trip_Pickup_DateTime': '2009-06-17 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727307, 'End_Lon': -73.994437, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72658, 'Start_Lon': -73.983605, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-09 10:47:00', 'Trip_Pickup_DateTime': '2009-06-09 10:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750635, 'End_Lon': -73.99031, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776437, 'Start_Lon': -73.952845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-19 12:22:00', 'Trip_Pickup_DateTime': '2009-06-19 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718875, 'End_Lon': -73.975698, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718955, 'Start_Lon': -73.987923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-19 13:06:00', 'Trip_Pickup_DateTime': '2009-06-19 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765355, 'End_Lon': -73.963877, 'Fare_Amt': 6.1, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753362, 'Start_Lon': -73.96664, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-09 10:08:00', 'Trip_Pickup_DateTime': '2009-06-09 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770263, 'End_Lon': -73.987245, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805463, 'Start_Lon': -73.962168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-19 12:59:00', 'Trip_Pickup_DateTime': '2009-06-19 12:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758473, 'End_Lon': -73.977217, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769538, 'Start_Lon': -73.982235, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-18 17:27:00', 'Trip_Pickup_DateTime': '2009-06-18 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759823, 'End_Lon': -73.985205, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759118, 'Start_Lon': -73.9897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-19 15:29:00', 'Trip_Pickup_DateTime': '2009-06-19 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770005, 'End_Lon': -73.95904, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778107, 'Start_Lon': -73.945722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-17 10:56:00', 'Trip_Pickup_DateTime': '2009-06-17 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758923, 'End_Lon': -73.969955, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74362, 'Start_Lon': -73.979348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-17 12:13:00', 'Trip_Pickup_DateTime': '2009-06-17 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748625, 'End_Lon': -73.980938, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763202, 'Start_Lon': -73.973912, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 11:25:00', 'Trip_Pickup_DateTime': '2009-06-17 11:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763247, 'End_Lon': -73.982445, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769592, 'Start_Lon': -73.984603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-12 16:06:00', 'Trip_Pickup_DateTime': '2009-06-12 15:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738978, 'End_Lon': -73.976905, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739265, 'Start_Lon': -73.999197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-17 09:07:00', 'Trip_Pickup_DateTime': '2009-06-17 08:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755577, 'End_Lon': -73.962597, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755845, 'Start_Lon': -73.972572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-05 19:50:00', 'Trip_Pickup_DateTime': '2009-06-05 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763713, 'End_Lon': -73.979632, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761553, 'Start_Lon': -73.986932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-17 11:43:00', 'Trip_Pickup_DateTime': '2009-06-17 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753202, 'End_Lon': -73.988883, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786798, 'Start_Lon': -73.95317, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.9, 'Trip_Distance': 3.91, 'Trip_Dropoff_DateTime': '2009-06-17 11:02:00', 'Trip_Pickup_DateTime': '2009-06-17 10:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756857, 'End_Lon': -73.97434, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.705703, 'Start_Lon': -74.00685, 'Tip_Amt': 3.22, 'Tolls_Amt': 0.0, 'Total_Amt': 19.32, 'Trip_Distance': 5.39, 'Trip_Dropoff_DateTime': '2009-06-17 11:56:00', 'Trip_Pickup_DateTime': '2009-06-17 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77168, 'End_Lon': -73.956138, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749702, 'Start_Lon': -73.971753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-19 22:34:00', 'Trip_Pickup_DateTime': '2009-06-19 22:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75973, 'End_Lon': -73.966215, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766697, 'Start_Lon': -73.952882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-19 08:51:00', 'Trip_Pickup_DateTime': '2009-06-19 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761087, 'End_Lon': -73.983233, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775583, 'Start_Lon': -73.9565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-17 07:01:00', 'Trip_Pickup_DateTime': '2009-06-17 06:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708652, 'End_Lon': -74.01276, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71677, 'Start_Lon': -74.006128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-19 13:54:00', 'Trip_Pickup_DateTime': '2009-06-19 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765233, 'End_Lon': -73.979043, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762535, 'Start_Lon': -73.979132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-17 08:35:00', 'Trip_Pickup_DateTime': '2009-06-17 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759798, 'End_Lon': -73.971805, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76867, 'Start_Lon': -73.958215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-17 07:44:00', 'Trip_Pickup_DateTime': '2009-06-17 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804948, 'End_Lon': -73.938663, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763547, 'Start_Lon': -73.965125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-17 06:23:00', 'Trip_Pickup_DateTime': '2009-06-17 06:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76307, 'End_Lon': -73.973622, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755285, 'Start_Lon': -73.97715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-09 08:50:00', 'Trip_Pickup_DateTime': '2009-06-09 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76818, 'End_Lon': -73.880465, 'Fare_Amt': 27.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767492, 'Start_Lon': -73.980863, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.85, 'Trip_Distance': 10.49, 'Trip_Dropoff_DateTime': '2009-06-09 08:50:00', 'Trip_Pickup_DateTime': '2009-06-09 08:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736288, 'End_Lon': -73.996255, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751417, 'Start_Lon': -73.975897, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-18 12:35:00', 'Trip_Pickup_DateTime': '2009-06-18 12:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755418, 'End_Lon': -73.972827, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72116, 'Start_Lon': -73.98092, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.39, 'Trip_Dropoff_DateTime': '2009-06-19 09:50:00', 'Trip_Pickup_DateTime': '2009-06-19 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749932, 'End_Lon': -74.005258, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744975, 'Start_Lon': -73.991563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-19 11:31:00', 'Trip_Pickup_DateTime': '2009-06-19 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785912, 'End_Lon': -73.951318, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78303, 'Start_Lon': -73.957735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-09 10:10:00', 'Trip_Pickup_DateTime': '2009-06-09 09:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734198, 'End_Lon': -74.008013, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734965, 'Start_Lon': -73.990555, 'Tip_Amt': 0.9, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-12 14:39:00', 'Trip_Pickup_DateTime': '2009-06-12 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70625, 'End_Lon': -74.005895, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775953, 'Start_Lon': -73.944053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.78, 'Trip_Dropoff_DateTime': '2009-06-19 08:44:00', 'Trip_Pickup_DateTime': '2009-06-19 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739303, 'End_Lon': -73.97676, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755203, 'Start_Lon': -73.979553, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-17 00:05:00', 'Trip_Pickup_DateTime': '2009-06-16 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764827, 'End_Lon': -73.987107, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75075, 'Start_Lon': -73.987125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-16 23:04:00', 'Trip_Pickup_DateTime': '2009-06-16 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749433, 'End_Lon': -73.992078, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759848, 'Start_Lon': -73.984152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-19 10:02:00', 'Trip_Pickup_DateTime': '2009-06-19 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730075, 'End_Lon': -73.992467, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725442, 'Start_Lon': -73.997117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-19 08:53:00', 'Trip_Pickup_DateTime': '2009-06-19 08:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755322, 'End_Lon': -73.877752, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75417, 'Start_Lon': -73.976953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.8, 'Trip_Distance': 6.14, 'Trip_Dropoff_DateTime': '2009-06-16 22:34:00', 'Trip_Pickup_DateTime': '2009-06-16 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71483, 'End_Lon': -74.011688, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764967, 'Start_Lon': -73.980742, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-17 02:41:00', 'Trip_Pickup_DateTime': '2009-06-17 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-19 08:18:00', 'Trip_Pickup_DateTime': '2009-06-19 08:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755042, 'End_Lon': -73.9707, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.700393, 'Start_Lon': -73.987705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 6.09, 'Trip_Dropoff_DateTime': '2009-06-19 07:39:00', 'Trip_Pickup_DateTime': '2009-06-19 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753845, 'End_Lon': -73.976977, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767053, 'Start_Lon': -73.98623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-19 23:38:00', 'Trip_Pickup_DateTime': '2009-06-19 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750222, 'End_Lon': -73.987627, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742733, 'Start_Lon': -73.992863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-16 10:37:00', 'Trip_Pickup_DateTime': '2009-06-16 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739628, 'End_Lon': -74.00631, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72296, 'Start_Lon': -73.989062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-17 02:36:00', 'Trip_Pickup_DateTime': '2009-06-17 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.688563, 'End_Lon': -74.183848, 'Fare_Amt': 42.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72784, 'Start_Lon': -74.00309, 'Tip_Amt': 8.54, 'Tolls_Amt': 8.0, 'Total_Amt': 59.24, 'Trip_Distance': 12.41, 'Trip_Dropoff_DateTime': '2009-06-17 06:59:00', 'Trip_Pickup_DateTime': '2009-06-17 06:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755228, 'End_Lon': -73.971443, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743385, 'Start_Lon': -73.979895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-22 08:42:00', 'Trip_Pickup_DateTime': '2009-06-22 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789613, 'End_Lon': -73.973673, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785582, 'Start_Lon': -73.980158, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-22 08:48:00', 'Trip_Pickup_DateTime': '2009-06-22 08:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777958, 'End_Lon': -73.97844, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737988, 'Start_Lon': -73.987863, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.2, 'Trip_Dropoff_DateTime': '2009-06-21 02:46:00', 'Trip_Pickup_DateTime': '2009-06-21 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789113, 'End_Lon': -73.946965, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768572, 'Start_Lon': -73.960698, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-20 01:23:00', 'Trip_Pickup_DateTime': '2009-06-20 01:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70809, 'End_Lon': -73.740332, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648663, 'Start_Lon': -73.78355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.32, 'Trip_Dropoff_DateTime': '2009-06-21 22:55:00', 'Trip_Pickup_DateTime': '2009-06-21 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718167, 'End_Lon': -74.00872, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737285, 'Start_Lon': -73.986443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-21 01:55:00', 'Trip_Pickup_DateTime': '2009-06-21 01:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740117, 'End_Lon': -74.002037, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730515, 'Start_Lon': -73.982627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-21 13:02:00', 'Trip_Pickup_DateTime': '2009-06-21 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76259, 'End_Lon': -73.978937, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752183, 'Start_Lon': -73.986003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-21 22:54:00', 'Trip_Pickup_DateTime': '2009-06-21 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759058, 'End_Lon': -73.99592, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715142, 'Start_Lon': -73.99699, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-21 23:07:00', 'Trip_Pickup_DateTime': '2009-06-21 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.704215, 'End_Lon': -74.012603, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715827, 'Start_Lon': -74.011088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-17 08:36:00', 'Trip_Pickup_DateTime': '2009-06-17 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75887, 'End_Lon': -73.971383, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760517, 'Start_Lon': -73.989927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-21 23:01:00', 'Trip_Pickup_DateTime': '2009-06-21 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775492, 'End_Lon': -73.95017, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76224, 'Start_Lon': -73.965917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-20 14:52:00', 'Trip_Pickup_DateTime': '2009-06-20 14:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79776, 'End_Lon': -73.934053, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771905, 'Start_Lon': -73.967522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-01 19:48:00', 'Trip_Pickup_DateTime': '2009-06-01 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747355, 'End_Lon': -73.889588, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776842, 'Start_Lon': -73.957192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 6.16, 'Trip_Dropoff_DateTime': '2009-06-20 02:22:00', 'Trip_Pickup_DateTime': '2009-06-20 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770665, 'End_Lon': -73.95712, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78055, 'Start_Lon': -73.976103, 'Tip_Amt': 2.9, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-21 11:45:00', 'Trip_Pickup_DateTime': '2009-06-21 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792872, 'End_Lon': -73.971205, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770758, 'Start_Lon': -73.982075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-19 18:13:00', 'Trip_Pickup_DateTime': '2009-06-19 18:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67817, 'End_Lon': -73.972077, 'Fare_Amt': 22.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7737, 'Start_Lon': -73.981487, 'Tip_Amt': 4.6, 'Tolls_Amt': 0.0, 'Total_Amt': 27.6, 'Trip_Distance': 8.02, 'Trip_Dropoff_DateTime': '2009-06-21 02:00:00', 'Trip_Pickup_DateTime': '2009-06-21 01:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73937, 'End_Lon': -74.006317, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745917, 'Start_Lon': -73.997748, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-20 01:07:00', 'Trip_Pickup_DateTime': '2009-06-20 01:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74912, 'End_Lon': -73.984813, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750157, 'Start_Lon': -73.971883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-21 14:15:00', 'Trip_Pickup_DateTime': '2009-06-21 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.644017, 'End_Lon': -73.790432, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758167, 'Start_Lon': -73.971848, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 15.74, 'Trip_Dropoff_DateTime': '2009-06-21 13:50:00', 'Trip_Pickup_DateTime': '2009-06-21 13:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73804, 'End_Lon': -73.990072, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744742, 'Start_Lon': -73.991345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-01 19:54:00', 'Trip_Pickup_DateTime': '2009-06-01 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749688, 'End_Lon': -73.9797, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782553, 'Start_Lon': -73.975422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-21 15:10:00', 'Trip_Pickup_DateTime': '2009-06-21 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74876, 'End_Lon': -73.977813, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757707, 'Start_Lon': -73.973178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-01 19:43:00', 'Trip_Pickup_DateTime': '2009-06-01 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}]\n",
            "got page number 9 with 1000 records\n",
            "[{'End_Lat': 40.720818, 'End_Lon': -73.99773, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713382, 'Start_Lon': -74.003745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-21 09:21:00', 'Trip_Pickup_DateTime': '2009-06-21 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743262, 'End_Lon': -73.997717, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757727, 'Start_Lon': -73.968695, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-21 19:21:00', 'Trip_Pickup_DateTime': '2009-06-21 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764902, 'End_Lon': -73.987995, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799703, 'Start_Lon': -73.943122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.07, 'Trip_Dropoff_DateTime': '2009-06-21 17:48:00', 'Trip_Pickup_DateTime': '2009-06-21 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776347, 'End_Lon': -73.949785, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761612, 'Start_Lon': -73.96036, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-21 19:16:00', 'Trip_Pickup_DateTime': '2009-06-21 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744345, 'End_Lon': -73.974653, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723553, 'Start_Lon': -73.988208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-01 19:30:00', 'Trip_Pickup_DateTime': '2009-06-01 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786112, 'End_Lon': -73.951358, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775717, 'Start_Lon': -73.95037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-17 08:25:00', 'Trip_Pickup_DateTime': '2009-06-17 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733178, 'End_Lon': -74.004767, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729163, 'Start_Lon': -73.98726, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-21 12:03:00', 'Trip_Pickup_DateTime': '2009-06-21 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760855, 'End_Lon': -73.939278, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760992, 'Start_Lon': -73.939705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.03, 'Trip_Dropoff_DateTime': '2009-06-21 16:24:00', 'Trip_Pickup_DateTime': '2009-06-21 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74823, 'End_Lon': -73.977792, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754967, 'Start_Lon': -73.973575, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-19 11:20:00', 'Trip_Pickup_DateTime': '2009-06-19 11:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726052, 'End_Lon': -73.997665, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755267, 'Start_Lon': -73.97379, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-21 13:14:00', 'Trip_Pickup_DateTime': '2009-06-21 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771212, 'End_Lon': -73.979988, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784963, 'Start_Lon': -73.979285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-21 10:50:00', 'Trip_Pickup_DateTime': '2009-06-21 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732937, 'End_Lon': -73.98676, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721997, 'Start_Lon': -73.993705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-21 01:55:00', 'Trip_Pickup_DateTime': '2009-06-21 01:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722273, 'End_Lon': -74.00366, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753165, 'Start_Lon': -73.980958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-01 20:58:00', 'Trip_Pickup_DateTime': '2009-06-01 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724578, 'End_Lon': -73.981555, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727555, 'Start_Lon': -73.997693, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-21 01:31:00', 'Trip_Pickup_DateTime': '2009-06-21 01:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7344, 'End_Lon': -73.992632, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750992, 'Start_Lon': -73.997973, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-01 21:50:00', 'Trip_Pickup_DateTime': '2009-06-01 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756908, 'End_Lon': -73.985727, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764217, 'Start_Lon': -73.966658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-01 20:25:00', 'Trip_Pickup_DateTime': '2009-06-01 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757177, 'End_Lon': -73.963428, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755632, 'Start_Lon': -73.975128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-21 10:26:00', 'Trip_Pickup_DateTime': '2009-06-21 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.821617, 'End_Lon': -73.94839, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750645, 'Start_Lon': -73.968413, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.1, 'Trip_Distance': 6.48, 'Trip_Dropoff_DateTime': '2009-06-01 16:42:00', 'Trip_Pickup_DateTime': '2009-06-01 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763053, 'End_Lon': -73.988028, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738802, 'Start_Lon': -74.000093, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-21 04:25:00', 'Trip_Pickup_DateTime': '2009-06-21 04:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774938, 'End_Lon': -73.950768, 'Fare_Amt': 15.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720902, 'Start_Lon': -73.993715, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 4.67, 'Trip_Dropoff_DateTime': '2009-06-21 00:06:00', 'Trip_Pickup_DateTime': '2009-06-20 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776448, 'End_Lon': -73.955615, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77289, 'Start_Lon': -73.982053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-01 18:04:00', 'Trip_Pickup_DateTime': '2009-06-01 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.688683, 'End_Lon': -73.989567, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711937, 'Start_Lon': -74.007385, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-21 00:39:00', 'Trip_Pickup_DateTime': '2009-06-21 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.68825, 'End_Lon': -73.965185, 'Fare_Amt': 30.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774107, 'Start_Lon': -73.980903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.1, 'Trip_Distance': 10.67, 'Trip_Dropoff_DateTime': '2009-06-09 11:17:00', 'Trip_Pickup_DateTime': '2009-06-09 10:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701652, 'End_Lon': -74.012555, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706323, 'Start_Lon': -74.0061, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-01 18:23:00', 'Trip_Pickup_DateTime': '2009-06-01 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755247, 'End_Lon': -73.961467, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722288, 'Start_Lon': -74.003635, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-21 01:58:00', 'Trip_Pickup_DateTime': '2009-06-21 01:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.801973, 'End_Lon': -73.941197, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775117, 'Start_Lon': -73.979953, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-12 17:04:00', 'Trip_Pickup_DateTime': '2009-06-12 16:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757117, 'End_Lon': -73.9775, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757567, 'Start_Lon': -73.989972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-01 12:11:00', 'Trip_Pickup_DateTime': '2009-06-01 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71667, 'End_Lon': -74.007213, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742532, 'Start_Lon': -73.982572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-19 22:24:00', 'Trip_Pickup_DateTime': '2009-06-19 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785047, 'End_Lon': -73.97916, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.796678, 'Start_Lon': -73.970312, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 5.65, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-09 10:37:00', 'Trip_Pickup_DateTime': '2009-06-09 10:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708882, 'End_Lon': -74.00825, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73088, 'Start_Lon': -73.988837, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-21 03:04:00', 'Trip_Pickup_DateTime': '2009-06-21 02:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760918, 'End_Lon': -73.972457, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760422, 'Start_Lon': -73.968888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-01 16:36:00', 'Trip_Pickup_DateTime': '2009-06-01 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801897, 'End_Lon': -73.956657, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801897, 'Start_Lon': -73.956657, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-09 11:13:00', 'Trip_Pickup_DateTime': '2009-06-09 11:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773978, 'End_Lon': -73.982207, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764397, 'Start_Lon': -73.984053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-18 17:25:00', 'Trip_Pickup_DateTime': '2009-06-18 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784872, 'End_Lon': -73.963287, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784128, 'Start_Lon': -73.95971, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-01 13:36:00', 'Trip_Pickup_DateTime': '2009-06-01 13:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746762, 'End_Lon': -73.974577, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.741597, 'Start_Lon': -73.993193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-16 22:14:05', 'Trip_Pickup_DateTime': '2009-06-16 22:06:18', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.71475, 'End_Lon': -74.007257, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714403, 'Start_Lon': -74.004783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.19, 'Trip_Dropoff_DateTime': '2009-06-20 22:37:00', 'Trip_Pickup_DateTime': '2009-06-20 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711723, 'End_Lon': -73.943735, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72457, 'Start_Lon': -73.978478, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.8, 'Trip_Distance': 3.73, 'Trip_Dropoff_DateTime': '2009-06-21 02:51:00', 'Trip_Pickup_DateTime': '2009-06-21 02:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722175, 'End_Lon': -73.974633, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730747, 'Start_Lon': -73.98113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-01 19:55:00', 'Trip_Pickup_DateTime': '2009-06-01 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75204, 'End_Lon': -73.967937, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752672, 'Start_Lon': -73.993252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-01 16:46:00', 'Trip_Pickup_DateTime': '2009-06-01 16:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779993, 'End_Lon': -73.955457, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779972, 'Start_Lon': -73.94747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-01 17:31:00', 'Trip_Pickup_DateTime': '2009-06-01 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756603, 'End_Lon': -73.929535, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766172, 'Start_Lon': -73.983708, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.48, 'Trip_Dropoff_DateTime': '2009-06-21 00:11:00', 'Trip_Pickup_DateTime': '2009-06-20 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761635, 'End_Lon': -73.984432, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75623, 'Start_Lon': -73.974202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-01 22:47:00', 'Trip_Pickup_DateTime': '2009-06-01 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733032, 'End_Lon': -73.975043, 'Fare_Amt': 7.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752318, 'Start_Lon': -73.975328, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-20 19:52:00', 'Trip_Pickup_DateTime': '2009-06-20 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747412, 'End_Lon': -74.000795, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729087, 'Start_Lon': -73.986978, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-20 20:00:00', 'Trip_Pickup_DateTime': '2009-06-20 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716812, 'End_Lon': -74.009158, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645207, 'Start_Lon': -73.790668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 21.34, 'Trip_Dropoff_DateTime': '2009-06-20 22:44:00', 'Trip_Pickup_DateTime': '2009-06-20 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762475, 'End_Lon': -73.970123, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771198, 'Start_Lon': -73.95944, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-20 19:20:00', 'Trip_Pickup_DateTime': '2009-06-20 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74953, 'End_Lon': -73.989337, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756245, 'Start_Lon': -73.98611, 'Tip_Amt': 2.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-01 16:20:00', 'Trip_Pickup_DateTime': '2009-06-01 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798075, 'End_Lon': -73.950795, 'Fare_Amt': 18.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735007, 'Start_Lon': -73.989717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 5.56, 'Trip_Dropoff_DateTime': '2009-06-01 15:35:00', 'Trip_Pickup_DateTime': '2009-06-01 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763268, 'End_Lon': -73.980768, 'Fare_Amt': 27.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769062, 'Start_Lon': -73.862913, 'Tip_Amt': 8.0, 'Tolls_Amt': 4.15, 'Total_Amt': 39.45, 'Trip_Distance': 10.3, 'Trip_Dropoff_DateTime': '2009-06-16 15:24:53', 'Trip_Pickup_DateTime': '2009-06-16 14:52:54', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.72773, 'End_Lon': -73.995037, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75015, 'Start_Lon': -73.991897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-20 20:43:00', 'Trip_Pickup_DateTime': '2009-06-20 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727363, 'End_Lon': -74.007303, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754883, 'Start_Lon': -73.995185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-01 15:31:00', 'Trip_Pickup_DateTime': '2009-06-01 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771003, 'End_Lon': -73.987115, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763105, 'Start_Lon': -73.989262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-01 14:34:00', 'Trip_Pickup_DateTime': '2009-06-01 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765235, 'End_Lon': -73.974185, 'Fare_Amt': 15.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778857, 'Start_Lon': -73.960253, 'Tip_Amt': 3.06, 'Tolls_Amt': 0.0, 'Total_Amt': 18.36, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-20 17:05:00', 'Trip_Pickup_DateTime': '2009-06-20 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71938, 'End_Lon': -73.997913, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.689732, 'Start_Lon': -73.990022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-20 20:25:00', 'Trip_Pickup_DateTime': '2009-06-20 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716342, 'End_Lon': -74.014337, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753088, 'Start_Lon': -73.975087, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 6.92, 'Trip_Dropoff_DateTime': '2009-06-01 15:27:00', 'Trip_Pickup_DateTime': '2009-06-01 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789965, 'End_Lon': -73.966662, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77884, 'Start_Lon': -73.956392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-01 15:04:00', 'Trip_Pickup_DateTime': '2009-06-01 14:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80911, 'End_Lon': -73.965625, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797315, 'Start_Lon': -73.969918, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-20 21:54:00', 'Trip_Pickup_DateTime': '2009-06-20 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75703, 'End_Lon': -73.9784, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779238, 'Start_Lon': -73.96211, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-20 20:34:00', 'Trip_Pickup_DateTime': '2009-06-20 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783287, 'End_Lon': -73.959178, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74783, 'Start_Lon': -73.983015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-12 16:57:00', 'Trip_Pickup_DateTime': '2009-06-12 16:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780355, 'End_Lon': -73.95503, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780355, 'Start_Lon': -73.95503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-20 21:59:00', 'Trip_Pickup_DateTime': '2009-06-20 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.881688, 'End_Lon': -73.872628, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.884555, 'Start_Lon': -73.881417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-20 19:39:00', 'Trip_Pickup_DateTime': '2009-06-20 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758468, 'End_Lon': -73.96707, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766372, 'Start_Lon': -73.960342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-20 16:59:00', 'Trip_Pickup_DateTime': '2009-06-20 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733743, 'End_Lon': -74.0072, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760733, 'Start_Lon': -73.970438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-20 21:24:00', 'Trip_Pickup_DateTime': '2009-06-20 21:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735977, 'End_Lon': -74.005225, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72316, 'Start_Lon': -73.998648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-20 16:24:00', 'Trip_Pickup_DateTime': '2009-06-20 16:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741775, 'End_Lon': -74.00179, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756013, 'Start_Lon': -73.986828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-16 13:43:00', 'Trip_Pickup_DateTime': '2009-06-16 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804168, 'End_Lon': -73.964793, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776343, 'Start_Lon': -73.98205, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.26, 'Trip_Dropoff_DateTime': '2009-06-20 19:05:00', 'Trip_Pickup_DateTime': '2009-06-20 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724927, 'End_Lon': -73.990273, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728938, 'Start_Lon': -73.98742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-20 18:00:00', 'Trip_Pickup_DateTime': '2009-06-20 17:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773878, 'End_Lon': -73.87061, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736687, 'Start_Lon': -73.988815, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 26.65, 'Trip_Distance': 9.36, 'Trip_Dropoff_DateTime': '2009-06-12 14:28:00', 'Trip_Pickup_DateTime': '2009-06-12 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73991, 'End_Lon': -74.005367, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73839, 'Start_Lon': -73.989643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-19 22:42:00', 'Trip_Pickup_DateTime': '2009-06-19 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72507, 'End_Lon': -73.992398, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752865, 'Start_Lon': -73.981687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-20 17:27:00', 'Trip_Pickup_DateTime': '2009-06-20 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768625, 'End_Lon': -73.953715, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749362, 'Start_Lon': -73.96945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-09 10:51:00', 'Trip_Pickup_DateTime': '2009-06-09 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720423, 'End_Lon': -73.984703, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748282, 'Start_Lon': -73.988272, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-20 01:11:00', 'Trip_Pickup_DateTime': '2009-06-20 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771112, 'End_Lon': -73.908312, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763943, 'Start_Lon': -73.938155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-20 01:27:00', 'Trip_Pickup_DateTime': '2009-06-20 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746745, 'End_Lon': -73.980545, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738655, 'Start_Lon': -73.98341, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-20 02:15:00', 'Trip_Pickup_DateTime': '2009-06-20 02:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760182, 'End_Lon': -73.961558, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760182, 'Start_Lon': -73.961558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-17 08:06:00', 'Trip_Pickup_DateTime': '2009-06-17 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780653, 'End_Lon': -73.946317, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764288, 'Start_Lon': -73.973943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-20 14:43:00', 'Trip_Pickup_DateTime': '2009-06-20 14:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757313, 'End_Lon': -73.993912, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72718, 'Start_Lon': -74.005683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-20 14:44:00', 'Trip_Pickup_DateTime': '2009-06-20 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750958, 'End_Lon': -73.990715, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754407, 'Start_Lon': -73.98156, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-01 17:33:00', 'Trip_Pickup_DateTime': '2009-06-01 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768887, 'End_Lon': -73.955122, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7047, 'Start_Lon': -74.007253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 6.32, 'Trip_Dropoff_DateTime': '2009-06-01 21:36:00', 'Trip_Pickup_DateTime': '2009-06-01 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748577, 'End_Lon': -73.9783, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753958, 'Start_Lon': -73.976948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-14 17:31:00', 'Trip_Pickup_DateTime': '2009-06-14 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.638342, 'End_Lon': -73.982505, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.631683, 'Start_Lon': -73.975567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-11 13:44:00', 'Trip_Pickup_DateTime': '2009-06-11 13:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79974, 'End_Lon': -73.959963, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78619, 'Start_Lon': -73.976112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-13 19:46:00', 'Trip_Pickup_DateTime': '2009-06-13 19:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717767, 'End_Lon': -74.004112, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757282, 'Start_Lon': -73.978152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-11 13:18:00', 'Trip_Pickup_DateTime': '2009-06-11 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757855, 'End_Lon': -73.974932, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75018, 'Start_Lon': -73.991423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-22 05:51:00', 'Trip_Pickup_DateTime': '2009-06-22 05:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776233, 'End_Lon': -73.978067, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776233, 'Start_Lon': -73.978067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-01 19:38:00', 'Trip_Pickup_DateTime': '2009-06-01 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75238, 'End_Lon': -73.97759, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751775, 'Start_Lon': -73.970497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-14 00:06:00', 'Trip_Pickup_DateTime': '2009-06-14 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744427, 'End_Lon': -73.996457, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755182, 'Start_Lon': -73.99506, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-01 19:53:00', 'Trip_Pickup_DateTime': '2009-06-01 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717133, 'End_Lon': -74.004562, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755623, 'Start_Lon': -73.989193, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-10 22:38:00', 'Trip_Pickup_DateTime': '2009-06-10 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747393, 'End_Lon': -73.972445, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746632, 'Start_Lon': -73.974625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-13 22:51:00', 'Trip_Pickup_DateTime': '2009-06-13 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742242, 'End_Lon': -74.004353, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705135, 'Start_Lon': -74.0078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-13 23:04:00', 'Trip_Pickup_DateTime': '2009-06-13 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792065, 'End_Lon': -73.968112, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.801438, 'Start_Lon': -73.957595, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-15 08:09:00', 'Trip_Pickup_DateTime': '2009-06-15 08:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765813, 'End_Lon': -73.959668, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784367, 'Start_Lon': -73.95511, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-09 12:42:00', 'Trip_Pickup_DateTime': '2009-06-09 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75643, 'End_Lon': -73.978872, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771915, 'Start_Lon': -73.951805, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-11 11:56:00', 'Trip_Pickup_DateTime': '2009-06-11 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760813, 'End_Lon': -73.960772, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769388, 'Start_Lon': -73.967268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-01 16:02:00', 'Trip_Pickup_DateTime': '2009-06-01 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75937, 'End_Lon': -73.968922, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753457, 'Start_Lon': -73.967865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-11 11:54:00', 'Trip_Pickup_DateTime': '2009-06-11 11:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746383, 'End_Lon': -74.001385, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758485, 'Start_Lon': -73.992653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-09 13:03:00', 'Trip_Pickup_DateTime': '2009-06-09 12:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744868, 'End_Lon': -73.985102, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749753, 'Start_Lon': -73.992285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-15 08:13:00', 'Trip_Pickup_DateTime': '2009-06-15 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75777, 'End_Lon': -73.978848, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767325, 'Start_Lon': -73.982013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-13 17:39:00', 'Trip_Pickup_DateTime': '2009-06-13 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760665, 'End_Lon': -73.970905, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765377, 'Start_Lon': -73.980645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-10 22:09:00', 'Trip_Pickup_DateTime': '2009-06-10 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741978, 'End_Lon': -73.994527, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748992, 'Start_Lon': -73.973085, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-01 18:43:00', 'Trip_Pickup_DateTime': '2009-06-01 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765955, 'End_Lon': -73.956, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778112, 'Start_Lon': -73.981735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-11 01:52:00', 'Trip_Pickup_DateTime': '2009-06-11 01:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.678312, 'End_Lon': -73.976017, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736333, 'Start_Lon': -73.977417, 'Tip_Amt': 3.4, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 6.51, 'Trip_Dropoff_DateTime': '2009-06-01 22:41:00', 'Trip_Pickup_DateTime': '2009-06-01 22:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77239, 'End_Lon': -73.873497, 'Fare_Amt': 26.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745068, 'Start_Lon': -73.998577, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 31.6, 'Trip_Distance': 11.16, 'Trip_Dropoff_DateTime': '2009-06-11 06:04:00', 'Trip_Pickup_DateTime': '2009-06-11 05:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735467, 'End_Lon': -74.000423, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725745, 'Start_Lon': -74.003897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-11 11:18:00', 'Trip_Pickup_DateTime': '2009-06-11 11:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752778, 'End_Lon': -73.979718, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717382, 'Start_Lon': -74.006232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-15 07:03:00', 'Trip_Pickup_DateTime': '2009-06-15 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76772, 'End_Lon': -73.965767, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779785, 'Start_Lon': -73.984468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-14 16:47:00', 'Trip_Pickup_DateTime': '2009-06-14 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743053, 'End_Lon': -73.989412, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705737, 'Start_Lon': -74.018067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-14 01:42:00', 'Trip_Pickup_DateTime': '2009-06-14 01:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76053, 'End_Lon': -74.002768, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75123, 'Start_Lon': -73.990925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-01 18:11:00', 'Trip_Pickup_DateTime': '2009-06-01 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749957, 'End_Lon': -73.991538, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744968, 'Start_Lon': -73.976183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 06:21:00', 'Trip_Pickup_DateTime': '2009-06-15 06:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757033, 'End_Lon': -73.966965, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764275, 'Start_Lon': -73.981457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-14 00:24:00', 'Trip_Pickup_DateTime': '2009-06-14 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76486, 'End_Lon': -73.973257, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77342, 'Start_Lon': -73.95443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-11 11:14:00', 'Trip_Pickup_DateTime': '2009-06-11 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757882, 'End_Lon': -73.973625, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77891, 'Start_Lon': -73.958228, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-11 08:41:00', 'Trip_Pickup_DateTime': '2009-06-11 08:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749023, 'End_Lon': -73.980127, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77435, 'Start_Lon': -73.95936, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-01 19:42:00', 'Trip_Pickup_DateTime': '2009-06-01 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755925, 'End_Lon': -73.984108, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803445, 'Start_Lon': -73.93781, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.76, 'Trip_Dropoff_DateTime': '2009-06-13 22:37:00', 'Trip_Pickup_DateTime': '2009-06-13 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740828, 'End_Lon': -73.983768, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757477, 'Start_Lon': -73.972122, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-15 07:52:00', 'Trip_Pickup_DateTime': '2009-06-15 07:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757053, 'End_Lon': -73.971878, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750903, 'Start_Lon': -73.987723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-13 19:29:00', 'Trip_Pickup_DateTime': '2009-06-13 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763512, 'End_Lon': -73.979527, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722518, 'Start_Lon': -74.003747, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-14 00:50:00', 'Trip_Pickup_DateTime': '2009-06-14 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74398, 'End_Lon': -73.995318, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724817, 'Start_Lon': -73.994053, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-01 22:59:00', 'Trip_Pickup_DateTime': '2009-06-01 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741318, 'End_Lon': -74.007425, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778435, 'Start_Lon': -73.977542, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-13 22:57:00', 'Trip_Pickup_DateTime': '2009-06-13 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742597, 'End_Lon': -73.978328, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761837, 'Start_Lon': -73.9707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-11 10:37:00', 'Trip_Pickup_DateTime': '2009-06-11 10:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715268, 'End_Lon': -74.015197, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.700803, 'Start_Lon': -73.989722, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-15 07:21:00', 'Trip_Pickup_DateTime': '2009-06-15 07:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750048, 'End_Lon': -73.995198, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761512, 'Start_Lon': -73.999393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-15 07:46:00', 'Trip_Pickup_DateTime': '2009-06-15 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756602, 'End_Lon': -73.97058, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743883, 'Start_Lon': -73.971795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-15 07:05:00', 'Trip_Pickup_DateTime': '2009-06-15 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75667, 'End_Lon': -73.987067, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727523, 'Start_Lon': -74.007277, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-11 11:14:00', 'Trip_Pickup_DateTime': '2009-06-11 10:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801793, 'End_Lon': -73.94149, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758703, 'Start_Lon': -73.974783, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.54, 'Trip_Dropoff_DateTime': '2009-06-11 01:58:00', 'Trip_Pickup_DateTime': '2009-06-11 01:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694352, 'End_Lon': -73.951318, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734822, 'Start_Lon': -73.99097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.88, 'Trip_Dropoff_DateTime': '2009-06-14 03:16:00', 'Trip_Pickup_DateTime': '2009-06-14 03:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774033, 'End_Lon': -73.97747, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779118, 'Start_Lon': -73.95384, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-10 22:42:00', 'Trip_Pickup_DateTime': '2009-06-10 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723265, 'End_Lon': -73.995362, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756575, 'Start_Lon': -73.9752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-13 20:46:00', 'Trip_Pickup_DateTime': '2009-06-13 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746052, 'End_Lon': -73.971717, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72329, 'Start_Lon': -73.98829, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-11 08:55:00', 'Trip_Pickup_DateTime': '2009-06-11 08:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754865, 'End_Lon': -73.971297, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804343, 'Start_Lon': -73.955497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 4.46, 'Trip_Dropoff_DateTime': '2009-06-11 09:20:00', 'Trip_Pickup_DateTime': '2009-06-11 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742103, 'End_Lon': -73.99096, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75003, 'Start_Lon': -73.991357, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-11 06:23:00', 'Trip_Pickup_DateTime': '2009-06-11 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.696265, 'End_Lon': -73.920077, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707595, 'Start_Lon': -74.004003, 'Tip_Amt': 5.15, 'Tolls_Amt': 0.0, 'Total_Amt': 25.75, 'Trip_Distance': 6.63, 'Trip_Dropoff_DateTime': '2009-06-14 00:02:00', 'Trip_Pickup_DateTime': '2009-06-13 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785087, 'End_Lon': -73.96958, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737543, 'Start_Lon': -73.988432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-14 21:12:00', 'Trip_Pickup_DateTime': '2009-06-14 20:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708478, 'End_Lon': -73.999765, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.708478, 'Start_Lon': -73.999765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-11 08:20:00', 'Trip_Pickup_DateTime': '2009-06-11 08:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762292, 'End_Lon': -73.982683, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771667, 'Start_Lon': -73.99048, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-20 13:44:00', 'Trip_Pickup_DateTime': '2009-06-20 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762107, 'End_Lon': -73.969682, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761565, 'Start_Lon': -73.977802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-20 13:40:00', 'Trip_Pickup_DateTime': '2009-06-20 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.674827, 'End_Lon': -73.997642, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.681622, 'Start_Lon': -74.014725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-20 13:21:00', 'Trip_Pickup_DateTime': '2009-06-20 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761352, 'End_Lon': -73.930937, 'Fare_Amt': 18.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720198, 'Start_Lon': -73.988882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.8, 'Trip_Dropoff_DateTime': '2009-06-01 23:41:00', 'Trip_Pickup_DateTime': '2009-06-01 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761813, 'End_Lon': -73.994207, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75846, 'Start_Lon': -73.99859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-13 20:55:00', 'Trip_Pickup_DateTime': '2009-06-13 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771145, 'End_Lon': -73.949213, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76365, 'Start_Lon': -73.956018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-09 12:08:00', 'Trip_Pickup_DateTime': '2009-06-09 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763203, 'End_Lon': -73.984947, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760503, 'Start_Lon': -73.99494, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-11 09:58:00', 'Trip_Pickup_DateTime': '2009-06-11 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753243, 'End_Lon': -73.995932, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753352, 'Start_Lon': -73.977658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-11 09:16:00', 'Trip_Pickup_DateTime': '2009-06-11 09:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790178, 'End_Lon': -73.943777, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773225, 'Start_Lon': -73.924345, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-11 08:04:00', 'Trip_Pickup_DateTime': '2009-06-11 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752612, 'End_Lon': -73.991145, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770313, 'Start_Lon': -73.927535, 'Tip_Amt': 3.3, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 5.74, 'Trip_Dropoff_DateTime': '2009-06-14 12:04:00', 'Trip_Pickup_DateTime': '2009-06-14 11:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744425, 'End_Lon': -73.99115, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752013, 'Start_Lon': -73.993598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-09 12:24:00', 'Trip_Pickup_DateTime': '2009-06-09 12:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753392, 'End_Lon': -73.981405, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738108, 'Start_Lon': -73.99638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-09 12:31:00', 'Trip_Pickup_DateTime': '2009-06-09 12:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744383, 'End_Lon': -73.984932, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753433, 'Start_Lon': -73.96693, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-14 00:14:00', 'Trip_Pickup_DateTime': '2009-06-14 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741738, 'End_Lon': -74.000695, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748588, 'Start_Lon': -73.984875, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-13 22:10:00', 'Trip_Pickup_DateTime': '2009-06-13 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738507, 'End_Lon': -73.99204, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718227, 'Start_Lon': -74.0057, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-20 13:54:00', 'Trip_Pickup_DateTime': '2009-06-20 13:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72924, 'End_Lon': -73.990057, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724632, 'Start_Lon': -73.984517, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-20 13:10:00', 'Trip_Pickup_DateTime': '2009-06-20 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74256, 'End_Lon': -74.000285, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75735, 'Start_Lon': -73.993432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-20 12:51:00', 'Trip_Pickup_DateTime': '2009-06-20 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734952, 'End_Lon': -74.008473, 'Fare_Amt': 34.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769625, 'Start_Lon': -73.863657, 'Tip_Amt': 7.18, 'Tolls_Amt': 4.15, 'Total_Amt': 47.23, 'Trip_Distance': 13.85, 'Trip_Dropoff_DateTime': '2009-06-12 17:54:00', 'Trip_Pickup_DateTime': '2009-06-12 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752545, 'End_Lon': -73.980407, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721472, 'Start_Lon': -73.998888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.91, 'Trip_Dropoff_DateTime': '2009-06-11 00:58:00', 'Trip_Pickup_DateTime': '2009-06-11 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733485, 'End_Lon': -74.002305, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733537, 'Start_Lon': -74.00233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-20 03:22:00', 'Trip_Pickup_DateTime': '2009-06-20 03:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778673, 'End_Lon': -73.981598, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745597, 'Start_Lon': -73.989568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-20 12:12:00', 'Trip_Pickup_DateTime': '2009-06-20 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790548, 'End_Lon': -73.939232, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.796625, 'Start_Lon': -73.970507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-20 15:21:00', 'Trip_Pickup_DateTime': '2009-06-20 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745173, 'End_Lon': -73.991167, 'Fare_Amt': 4.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7474, 'Start_Lon': -73.997537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.37, 'Trip_Dropoff_DateTime': '2009-06-22 09:13:00', 'Trip_Pickup_DateTime': '2009-06-22 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744203, 'End_Lon': -73.99919, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.646038, 'Start_Lon': -73.776895, 'Tip_Amt': 6.5, 'Tolls_Amt': 4.15, 'Total_Amt': 55.65, 'Trip_Distance': 18.63, 'Trip_Dropoff_DateTime': '2009-06-01 20:17:00', 'Trip_Pickup_DateTime': '2009-06-01 19:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761593, 'End_Lon': -73.967012, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.803558, 'Start_Lon': -73.967322, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-20 14:55:00', 'Trip_Pickup_DateTime': '2009-06-20 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713048, 'End_Lon': -73.967547, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72234, 'Start_Lon': -73.949958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-20 12:00:00', 'Trip_Pickup_DateTime': '2009-06-20 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783258, 'End_Lon': -73.959212, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70947, 'Start_Lon': -74.001813, 'Tip_Amt': 4.34, 'Tolls_Amt': 0.0, 'Total_Amt': 26.04, 'Trip_Distance': 7.99, 'Trip_Dropoff_DateTime': '2009-06-20 15:11:00', 'Trip_Pickup_DateTime': '2009-06-20 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782157, 'End_Lon': -73.980822, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789413, 'Start_Lon': -73.954713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-20 12:14:00', 'Trip_Pickup_DateTime': '2009-06-20 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78834, 'End_Lon': -73.975913, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79542, 'Start_Lon': -73.968333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-13 19:23:00', 'Trip_Pickup_DateTime': '2009-06-13 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740702, 'End_Lon': -73.991432, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720777, 'Start_Lon': -73.997805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-22 08:00:00', 'Trip_Pickup_DateTime': '2009-06-22 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716795, 'End_Lon': -74.010797, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705347, 'Start_Lon': -74.007865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-21 20:27:00', 'Trip_Pickup_DateTime': '2009-06-21 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756397, 'End_Lon': -73.99713, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773658, 'Start_Lon': -73.871, 'Tip_Amt': 5.95, 'Tolls_Amt': 4.15, 'Total_Amt': 33.9, 'Trip_Distance': 9.2, 'Trip_Dropoff_DateTime': '2009-06-22 00:27:00', 'Trip_Pickup_DateTime': '2009-06-22 00:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757228, 'End_Lon': -73.990427, 'Fare_Amt': 10.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724748, 'Start_Lon': -73.978523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.16, 'Trip_Dropoff_DateTime': '2009-06-20 02:40:00', 'Trip_Pickup_DateTime': '2009-06-20 02:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738268, 'End_Lon': -73.977648, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736322, 'Start_Lon': -74.006787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.09, 'Trip_Dropoff_DateTime': '2009-06-22 00:15:00', 'Trip_Pickup_DateTime': '2009-06-22 00:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755123, 'End_Lon': -73.974198, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717258, 'Start_Lon': -73.998788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.21, 'Trip_Dropoff_DateTime': '2009-06-20 20:48:00', 'Trip_Pickup_DateTime': '2009-06-20 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750843, 'End_Lon': -73.976812, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743137, 'Start_Lon': -73.980125, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-20 15:31:00', 'Trip_Pickup_DateTime': '2009-06-20 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747982, 'End_Lon': -73.99261, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76325, 'Start_Lon': -73.974023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-20 15:21:00', 'Trip_Pickup_DateTime': '2009-06-20 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774483, 'End_Lon': -73.872265, 'Fare_Amt': 20.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770608, 'Start_Lon': -73.95389, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 24.25, 'Trip_Distance': 8.38, 'Trip_Dropoff_DateTime': '2009-06-22 08:24:00', 'Trip_Pickup_DateTime': '2009-06-22 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70298, 'End_Lon': -73.916882, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730925, 'Start_Lon': -74.0003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 6.14, 'Trip_Dropoff_DateTime': '2009-06-22 04:45:00', 'Trip_Pickup_DateTime': '2009-06-22 04:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776265, 'End_Lon': -73.980003, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746657, 'Start_Lon': -74.001663, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-22 00:50:00', 'Trip_Pickup_DateTime': '2009-06-22 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756968, 'End_Lon': -73.970133, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75829, 'Start_Lon': -73.992318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-20 14:29:00', 'Trip_Pickup_DateTime': '2009-06-20 14:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7742, 'End_Lon': -73.871123, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746442, 'Start_Lon': -73.979807, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.85, 'Trip_Distance': 8.48, 'Trip_Dropoff_DateTime': '2009-06-20 15:48:00', 'Trip_Pickup_DateTime': '2009-06-20 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755558, 'End_Lon': -73.980077, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779465, 'Start_Lon': -73.953688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-22 09:07:00', 'Trip_Pickup_DateTime': '2009-06-22 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748772, 'End_Lon': -73.977312, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760275, 'Start_Lon': -73.981173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-11 20:48:00', 'Trip_Pickup_DateTime': '2009-06-11 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728252, 'End_Lon': -73.982023, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727078, 'Start_Lon': -73.991452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-12 00:16:00', 'Trip_Pickup_DateTime': '2009-06-12 00:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741567, 'End_Lon': -73.953183, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726022, 'Start_Lon': -73.937918, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-10 19:32:00', 'Trip_Pickup_DateTime': '2009-06-10 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798345, 'End_Lon': -73.972663, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768482, 'Start_Lon': -73.981773, 'Tip_Amt': 1.8, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-14 14:18:00', 'Trip_Pickup_DateTime': '2009-06-14 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.829388, 'End_Lon': -73.905398, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786992, 'Start_Lon': -73.95418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.46, 'Trip_Dropoff_DateTime': '2009-06-11 22:09:00', 'Trip_Pickup_DateTime': '2009-06-11 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766793, 'End_Lon': -73.990308, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752298, 'Start_Lon': -73.972245, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-10 19:43:00', 'Trip_Pickup_DateTime': '2009-06-10 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73097, 'End_Lon': -73.816035, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729608, 'Start_Lon': -73.81395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-14 00:57:00', 'Trip_Pickup_DateTime': '2009-06-14 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708173, 'End_Lon': -74.009645, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729722, 'Start_Lon': -73.995348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-09 14:02:00', 'Trip_Pickup_DateTime': '2009-06-09 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755245, 'End_Lon': -73.981683, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764633, 'Start_Lon': -73.972213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-09 14:37:00', 'Trip_Pickup_DateTime': '2009-06-09 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729845, 'End_Lon': -73.99186, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73831, 'Start_Lon': -73.985502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-11 23:55:00', 'Trip_Pickup_DateTime': '2009-06-11 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755355, 'End_Lon': -73.97394, 'Fare_Amt': 45.0, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643015, 'Start_Lon': -73.790347, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.43, 'Trip_Dropoff_DateTime': '2009-06-13 13:09:00', 'Trip_Pickup_DateTime': '2009-06-13 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.846197, 'End_Lon': -73.818822, 'Fare_Amt': 36.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743818, 'Start_Lon': -73.99487, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 37.4, 'Trip_Distance': 14.83, 'Trip_Dropoff_DateTime': '2009-06-12 01:32:00', 'Trip_Pickup_DateTime': '2009-06-12 00:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758872, 'End_Lon': -73.991597, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752127, 'Start_Lon': -73.97871, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-12 00:49:00', 'Trip_Pickup_DateTime': '2009-06-12 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73696, 'End_Lon': -73.97428, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749513, 'Start_Lon': -73.972512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-15 18:09:00', 'Trip_Pickup_DateTime': '2009-06-15 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720055, 'End_Lon': -73.994257, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763912, 'Start_Lon': -73.982858, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 3.77, 'Trip_Dropoff_DateTime': '2009-06-11 22:01:00', 'Trip_Pickup_DateTime': '2009-06-11 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782602, 'End_Lon': -73.981112, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769772, 'Start_Lon': -73.964963, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-11 20:10:00', 'Trip_Pickup_DateTime': '2009-06-11 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731665, 'End_Lon': -73.992707, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.715913, 'Start_Lon': -74.008615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-11 21:47:00', 'Trip_Pickup_DateTime': '2009-06-11 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740768, 'End_Lon': -74.004803, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729317, 'Start_Lon': -74.002338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-11 20:02:00', 'Trip_Pickup_DateTime': '2009-06-11 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719375, 'End_Lon': -73.988638, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74904, 'Start_Lon': -73.97751, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-11 22:03:00', 'Trip_Pickup_DateTime': '2009-06-11 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69497, 'End_Lon': -73.932115, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750623, 'Start_Lon': -74.001963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 6.69, 'Trip_Dropoff_DateTime': '2009-06-21 21:47:00', 'Trip_Pickup_DateTime': '2009-06-21 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799888, 'End_Lon': -73.960428, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784032, 'Start_Lon': -73.95432, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-11 21:28:00', 'Trip_Pickup_DateTime': '2009-06-11 21:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762788, 'End_Lon': -73.982227, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751357, 'Start_Lon': -73.994207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-09 14:34:00', 'Trip_Pickup_DateTime': '2009-06-09 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736772, 'End_Lon': -73.98882, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702893, 'Start_Lon': -74.011405, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-11 19:58:00', 'Trip_Pickup_DateTime': '2009-06-11 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731293, 'End_Lon': -74.002447, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718485, 'Start_Lon': -74.005795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-11 19:27:00', 'Trip_Pickup_DateTime': '2009-06-11 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750265, 'End_Lon': -73.991142, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765643, 'Start_Lon': -73.963717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-11 19:03:00', 'Trip_Pickup_DateTime': '2009-06-11 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773605, 'End_Lon': -73.870443, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75068, 'Start_Lon': -73.987365, 'Tip_Amt': 5.52, 'Tolls_Amt': 4.15, 'Total_Amt': 31.77, 'Trip_Distance': 9.03, 'Trip_Dropoff_DateTime': '2009-06-15 15:54:00', 'Trip_Pickup_DateTime': '2009-06-15 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761248, 'End_Lon': -73.967503, 'Fare_Amt': 5.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755277, 'Start_Lon': -73.978507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-15 18:55:00', 'Trip_Pickup_DateTime': '2009-06-15 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759165, 'End_Lon': -73.98661, 'Fare_Amt': 12.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740288, 'Start_Lon': -73.986183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-12 18:54:00', 'Trip_Pickup_DateTime': '2009-06-12 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781842, 'End_Lon': -73.98087, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773862, 'Start_Lon': -73.962163, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-09 13:40:00', 'Trip_Pickup_DateTime': '2009-06-09 13:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754708, 'End_Lon': -73.972963, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776432, 'Start_Lon': -73.946552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-15 15:52:00', 'Trip_Pickup_DateTime': '2009-06-15 15:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777168, 'End_Lon': -73.959412, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767168, 'Start_Lon': -73.967798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-15 17:11:00', 'Trip_Pickup_DateTime': '2009-06-15 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752873, 'End_Lon': -73.892775, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773877, 'Start_Lon': -73.872228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-11 21:33:00', 'Trip_Pickup_DateTime': '2009-06-11 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.667613, 'End_Lon': -73.975922, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690752, 'Start_Lon': -73.996063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.59, 'Trip_Dropoff_DateTime': '2009-06-21 21:20:00', 'Trip_Pickup_DateTime': '2009-06-21 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.64157, 'End_Lon': -73.78895, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.641577, 'Start_Lon': -73.788955, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 50.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-15 15:45:00', 'Trip_Pickup_DateTime': '2009-06-15 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771712, 'End_Lon': -73.983155, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763122, 'Start_Lon': -73.988175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-13 18:54:00', 'Trip_Pickup_DateTime': '2009-06-13 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74702, 'End_Lon': -73.979383, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765542, 'Start_Lon': -73.96816, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-15 17:27:00', 'Trip_Pickup_DateTime': '2009-06-15 17:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713998, 'End_Lon': -74.006142, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715383, 'Start_Lon': -74.016332, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-01 13:32:00', 'Trip_Pickup_DateTime': '2009-06-01 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.64392, 'End_Lon': -73.78291, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76285, 'Start_Lon': -73.976592, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 17.34, 'Trip_Dropoff_DateTime': '2009-06-15 14:31:00', 'Trip_Pickup_DateTime': '2009-06-15 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711913, 'End_Lon': -74.008148, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748283, 'Start_Lon': -74.003733, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.2, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-21 21:11:00', 'Trip_Pickup_DateTime': '2009-06-21 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785255, 'End_Lon': -73.971288, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753552, 'Start_Lon': -73.978308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-11 18:29:00', 'Trip_Pickup_DateTime': '2009-06-11 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767867, 'End_Lon': -73.903853, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775357, 'Start_Lon': -73.922557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-15 15:02:00', 'Trip_Pickup_DateTime': '2009-06-15 14:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750653, 'End_Lon': -73.99114, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762108, 'Start_Lon': -73.978548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-15 15:29:00', 'Trip_Pickup_DateTime': '2009-06-15 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764777, 'End_Lon': -73.95691, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780005, 'Start_Lon': -73.95516, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-11 07:58:00', 'Trip_Pickup_DateTime': '2009-06-11 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764053, 'End_Lon': -73.981075, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75081, 'Start_Lon': -73.988033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-20 18:19:00', 'Trip_Pickup_DateTime': '2009-06-20 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758462, 'End_Lon': -73.960052, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758457, 'Start_Lon': -73.960058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-20 16:52:00', 'Trip_Pickup_DateTime': '2009-06-20 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75817, 'End_Lon': -74.000572, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761908, 'Start_Lon': -73.982797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-09 14:11:00', 'Trip_Pickup_DateTime': '2009-06-09 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790193, 'End_Lon': -73.976872, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779043, 'Start_Lon': -73.986962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-11 17:10:00', 'Trip_Pickup_DateTime': '2009-06-11 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733347, 'End_Lon': -73.995478, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806875, 'Start_Lon': -73.961148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.3, 'Trip_Distance': 7.0, 'Trip_Dropoff_DateTime': '2009-06-11 17:19:00', 'Trip_Pickup_DateTime': '2009-06-11 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762608, 'End_Lon': -73.98187, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771742, 'Start_Lon': -73.965522, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-15 14:48:00', 'Trip_Pickup_DateTime': '2009-06-15 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765638, 'End_Lon': -73.98017, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762232, 'Start_Lon': -73.970602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-14 00:15:00', 'Trip_Pickup_DateTime': '2009-06-14 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739423, 'End_Lon': -73.990147, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751225, 'Start_Lon': -73.990067, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-09 10:46:00', 'Trip_Pickup_DateTime': '2009-06-09 10:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.83767, 'End_Lon': -73.94448, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791922, 'Start_Lon': -73.973895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 4.42, 'Trip_Dropoff_DateTime': '2009-06-15 14:18:00', 'Trip_Pickup_DateTime': '2009-06-15 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768657, 'End_Lon': -73.985662, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743092, 'Start_Lon': -73.992702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-13 22:26:00', 'Trip_Pickup_DateTime': '2009-06-13 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.807807, 'End_Lon': -73.967823, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76503, 'Start_Lon': -73.97064, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.84, 'Trip_Dropoff_DateTime': '2009-06-15 13:57:00', 'Trip_Pickup_DateTime': '2009-06-15 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755823, 'End_Lon': -73.975422, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778777, 'Start_Lon': -73.962485, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 1.95, 'Trip_Dropoff_DateTime': '2009-06-01 18:10:00', 'Trip_Pickup_DateTime': '2009-06-01 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771757, 'End_Lon': -73.959083, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760805, 'Start_Lon': -73.967067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-11 18:22:00', 'Trip_Pickup_DateTime': '2009-06-11 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770618, 'End_Lon': -73.95446, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784122, 'Start_Lon': -73.947295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-11 17:43:00', 'Trip_Pickup_DateTime': '2009-06-11 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769255, 'End_Lon': -73.965048, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725303, 'Start_Lon': -73.992192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.62, 'Trip_Dropoff_DateTime': '2009-06-11 16:09:00', 'Trip_Pickup_DateTime': '2009-06-11 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754777, 'End_Lon': -73.986443, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755417, 'Start_Lon': -73.979265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-15 15:07:00', 'Trip_Pickup_DateTime': '2009-06-15 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751112, 'End_Lon': -73.971385, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762437, 'Start_Lon': -73.980268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-11 18:01:00', 'Trip_Pickup_DateTime': '2009-06-11 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738883, 'End_Lon': -73.988878, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751015, 'Start_Lon': -73.990537, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-21 21:26:00', 'Trip_Pickup_DateTime': '2009-06-21 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751948, 'End_Lon': -73.981587, 'Fare_Amt': 32.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773992, 'Start_Lon': -73.874473, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.25, 'Trip_Distance': 10.97, 'Trip_Dropoff_DateTime': '2009-06-11 17:12:00', 'Trip_Pickup_DateTime': '2009-06-11 16:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71633, 'End_Lon': -74.008533, 'Fare_Amt': 12.5, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753118, 'Start_Lon': -73.980397, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-20 15:59:00', 'Trip_Pickup_DateTime': '2009-06-20 15:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792375, 'End_Lon': -73.975463, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786032, 'Start_Lon': -73.979942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-15 12:40:00', 'Trip_Pickup_DateTime': '2009-06-15 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745913, 'End_Lon': -73.980255, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742637, 'Start_Lon': -73.99292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-11 14:43:00', 'Trip_Pickup_DateTime': '2009-06-11 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77127, 'End_Lon': -73.958115, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760135, 'Start_Lon': -73.961373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-01 15:12:00', 'Trip_Pickup_DateTime': '2009-06-01 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769653, 'End_Lon': -73.960352, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778268, 'Start_Lon': -73.956567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-09 13:26:00', 'Trip_Pickup_DateTime': '2009-06-09 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762063, 'End_Lon': -73.974803, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773845, 'Start_Lon': -73.981335, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-20 17:25:00', 'Trip_Pickup_DateTime': '2009-06-20 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758192, 'End_Lon': -73.96268, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737547, 'Start_Lon': -73.983968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-21 18:19:00', 'Trip_Pickup_DateTime': '2009-06-21 18:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755323, 'End_Lon': -74.093543, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763958, 'Start_Lon': -74.012002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.7, 'Trip_Dropoff_DateTime': '2009-06-15 11:08:00', 'Trip_Pickup_DateTime': '2009-06-15 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758603, 'End_Lon': -73.974897, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77292, 'Start_Lon': -73.960272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-15 09:45:00', 'Trip_Pickup_DateTime': '2009-06-15 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73909, 'End_Lon': -73.990542, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747377, 'Start_Lon': -73.985515, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-01 12:18:00', 'Trip_Pickup_DateTime': '2009-06-01 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.834415, 'End_Lon': -73.939028, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777412, 'Start_Lon': -73.978183, 'Tip_Amt': 2.5, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.32, 'Trip_Dropoff_DateTime': '2009-06-11 14:53:00', 'Trip_Pickup_DateTime': '2009-06-11 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-11 14:33:00', 'Trip_Pickup_DateTime': '2009-06-11 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777953, 'End_Lon': -73.960182, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774807, 'Start_Lon': -73.96292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-11 14:41:00', 'Trip_Pickup_DateTime': '2009-06-11 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752348, 'End_Lon': -73.974075, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744483, 'Start_Lon': -73.979013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-15 13:05:00', 'Trip_Pickup_DateTime': '2009-06-15 13:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740175, 'End_Lon': -73.995735, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746527, 'Start_Lon': -74.00151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-11 13:32:00', 'Trip_Pickup_DateTime': '2009-06-11 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75673, 'End_Lon': -73.97697, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73411, 'Start_Lon': -73.977773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-11 14:31:00', 'Trip_Pickup_DateTime': '2009-06-11 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747162, 'End_Lon': -73.98678, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729293, 'Start_Lon': -73.987428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-15 09:51:00', 'Trip_Pickup_DateTime': '2009-06-15 09:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773175, 'End_Lon': -73.980693, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764095, 'Start_Lon': -73.958998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-11 13:43:00', 'Trip_Pickup_DateTime': '2009-06-11 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74635, 'End_Lon': -73.979822, 'Fare_Amt': 28.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74635, 'Start_Lon': -73.979822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-14 15:07:00', 'Trip_Pickup_DateTime': '2009-06-14 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785843, 'End_Lon': -73.970293, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730937, 'Start_Lon': -73.995475, 'Tip_Amt': 4.32, 'Tolls_Amt': 0.0, 'Total_Amt': 21.62, 'Trip_Distance': 4.68, 'Trip_Dropoff_DateTime': '2009-06-11 14:23:00', 'Trip_Pickup_DateTime': '2009-06-11 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753887, 'End_Lon': -73.995497, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751823, 'Start_Lon': -73.979532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-15 11:09:00', 'Trip_Pickup_DateTime': '2009-06-15 10:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78163, 'End_Lon': -73.983153, 'Fare_Amt': 13.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744067, 'Start_Lon': -73.987772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-15 10:05:00', 'Trip_Pickup_DateTime': '2009-06-15 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744033, 'End_Lon': -73.995622, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769643, 'Start_Lon': -73.951488, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.02, 'Trip_Dropoff_DateTime': '2009-06-13 22:03:00', 'Trip_Pickup_DateTime': '2009-06-13 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753227, 'End_Lon': -73.987098, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761045, 'Start_Lon': -73.969063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-15 10:59:00', 'Trip_Pickup_DateTime': '2009-06-15 10:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728435, 'End_Lon': -73.994117, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745265, 'Start_Lon': -73.994767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-11 13:25:00', 'Trip_Pickup_DateTime': '2009-06-11 13:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759348, 'End_Lon': -73.968395, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783042, 'Start_Lon': -73.954687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-13 15:31:00', 'Trip_Pickup_DateTime': '2009-06-13 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751703, 'End_Lon': -73.977137, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734558, 'Start_Lon': -73.986298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-15 09:37:00', 'Trip_Pickup_DateTime': '2009-06-15 09:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744307, 'End_Lon': -73.936525, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770052, 'Start_Lon': -73.863525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 6.58, 'Trip_Dropoff_DateTime': '2009-06-11 12:53:00', 'Trip_Pickup_DateTime': '2009-06-11 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755058, 'End_Lon': -73.991643, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791897, 'Start_Lon': -73.971418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-11 14:01:00', 'Trip_Pickup_DateTime': '2009-06-11 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729065, 'End_Lon': -74.010078, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716942, 'Start_Lon': -73.994362, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-10 23:01:00', 'Trip_Pickup_DateTime': '2009-06-10 22:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75711, 'End_Lon': -73.978555, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78081, 'Start_Lon': -73.972713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-11 14:13:00', 'Trip_Pickup_DateTime': '2009-06-11 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755493, 'End_Lon': -73.980752, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705118, 'Start_Lon': -74.017228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 5.03, 'Trip_Dropoff_DateTime': '2009-06-09 13:00:00', 'Trip_Pickup_DateTime': '2009-06-09 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75762, 'End_Lon': -73.989693, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758942, 'Start_Lon': -73.993823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.24, 'Trip_Dropoff_DateTime': '2009-06-14 13:10:00', 'Trip_Pickup_DateTime': '2009-06-14 13:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745012, 'End_Lon': -73.997733, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.716323, 'Start_Lon': -73.98782, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-15 08:53:00', 'Trip_Pickup_DateTime': '2009-06-15 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729905, 'End_Lon': -73.991662, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765937, 'Start_Lon': -73.990962, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-14 18:44:00', 'Trip_Pickup_DateTime': '2009-06-14 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733242, 'End_Lon': -74.000585, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726187, 'Start_Lon': -73.991873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-10 22:00:00', 'Trip_Pickup_DateTime': '2009-06-10 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782537, 'End_Lon': -73.976813, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778367, 'Start_Lon': -73.9669, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-01 21:38:00', 'Trip_Pickup_DateTime': '2009-06-01 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778087, 'End_Lon': -73.960795, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749532, 'Start_Lon': -73.988057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-11 12:00:00', 'Trip_Pickup_DateTime': '2009-06-11 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-08 21:22:00', 'Trip_Pickup_DateTime': '2009-06-08 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751335, 'End_Lon': -74.001645, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760858, 'Start_Lon': -73.990827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-13 21:33:00', 'Trip_Pickup_DateTime': '2009-06-13 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763542, 'End_Lon': -73.996442, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770363, 'Start_Lon': -73.990998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-12 08:25:00', 'Trip_Pickup_DateTime': '2009-06-12 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76857, 'End_Lon': -73.95231, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75566, 'Start_Lon': -73.964857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-14 19:25:00', 'Trip_Pickup_DateTime': '2009-06-14 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72412, 'End_Lon': -73.997445, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.685437, 'Start_Lon': -73.980797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-11 20:23:00', 'Trip_Pickup_DateTime': '2009-06-11 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752137, 'End_Lon': -73.970093, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756275, 'Start_Lon': -73.967253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-29 15:01:00', 'Trip_Pickup_DateTime': '2009-06-29 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764225, 'End_Lon': -73.973577, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749052, 'Start_Lon': -73.97561, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-09 15:40:00', 'Trip_Pickup_DateTime': '2009-06-09 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749083, 'End_Lon': -73.9941, 'Fare_Amt': 20.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733093, 'Start_Lon': -74.006088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 6.85, 'Trip_Dropoff_DateTime': '2009-06-14 02:48:00', 'Trip_Pickup_DateTime': '2009-06-14 02:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734787, 'End_Lon': -74.001502, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745168, 'Start_Lon': -73.978787, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-10 21:17:00', 'Trip_Pickup_DateTime': '2009-06-10 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76929, 'End_Lon': -73.984642, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799997, 'Start_Lon': -73.962267, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-27 19:38:00', 'Trip_Pickup_DateTime': '2009-06-27 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757325, 'End_Lon': -73.982492, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741447, 'Start_Lon': -73.99373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-10 11:18:00', 'Trip_Pickup_DateTime': '2009-06-10 11:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768297, 'End_Lon': -73.958775, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759817, 'Start_Lon': -73.974187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-26 16:28:00', 'Trip_Pickup_DateTime': '2009-06-26 16:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771363, 'End_Lon': -73.982352, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783737, 'Start_Lon': -73.977813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-28 16:42:00', 'Trip_Pickup_DateTime': '2009-06-28 16:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75255, 'End_Lon': -73.978738, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753998, 'Start_Lon': -73.999547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-10 18:50:00', 'Trip_Pickup_DateTime': '2009-06-10 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750515, 'End_Lon': -73.994698, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731925, 'Start_Lon': -73.98818, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-14 11:04:00', 'Trip_Pickup_DateTime': '2009-06-14 10:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.676795, 'End_Lon': -73.94146, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726665, 'Start_Lon': -73.995797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-26 00:06:00', 'Trip_Pickup_DateTime': '2009-06-25 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747312, 'End_Lon': -73.983993, 'Fare_Amt': 10.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782867, 'Start_Lon': -73.980883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-14 11:10:00', 'Trip_Pickup_DateTime': '2009-06-14 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.676353, 'End_Lon': -73.883828, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.6447, 'Start_Lon': -73.782282, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.3, 'Trip_Distance': 7.65, 'Trip_Dropoff_DateTime': '2009-06-25 16:47:00', 'Trip_Pickup_DateTime': '2009-06-25 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719085, 'End_Lon': -73.983145, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726328, 'Start_Lon': -73.980318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-14 13:18:00', 'Trip_Pickup_DateTime': '2009-06-14 13:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720702, 'End_Lon': -73.992553, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746227, 'Start_Lon': -73.99404, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-14 10:05:00', 'Trip_Pickup_DateTime': '2009-06-14 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753067, 'End_Lon': -73.981703, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76201, 'Start_Lon': -73.997067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-23 10:53:00', 'Trip_Pickup_DateTime': '2009-06-23 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789128, 'End_Lon': -73.976178, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.722307, 'Start_Lon': -73.997168, 'Tip_Amt': 3.16, 'Tolls_Amt': 0.0, 'Total_Amt': 18.96, 'Trip_Distance': 5.55, 'Trip_Dropoff_DateTime': '2009-06-14 05:00:00', 'Trip_Pickup_DateTime': '2009-06-14 04:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72334, 'End_Lon': -73.990237, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732552, 'Start_Lon': -73.981633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-13 23:53:00', 'Trip_Pickup_DateTime': '2009-06-13 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747828, 'End_Lon': -74.004373, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722567, 'Start_Lon': -73.997377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-13 18:34:00', 'Trip_Pickup_DateTime': '2009-06-13 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780855, 'End_Lon': -73.980822, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778052, 'Start_Lon': -73.951847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-25 17:18:00', 'Trip_Pickup_DateTime': '2009-06-25 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757192, 'End_Lon': -73.97021, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750422, 'Start_Lon': -73.978602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-10 13:26:00', 'Trip_Pickup_DateTime': '2009-06-10 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794211, 'End_Lon': -73.972112, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.764516, 'Start_Lon': -73.984168, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-22 15:18:38', 'Trip_Pickup_DateTime': '2009-06-22 15:05:44', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.7952, 'End_Lon': -73.933568, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793308, 'Start_Lon': -73.974497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.04, 'Trip_Dropoff_DateTime': '2009-06-10 14:06:00', 'Trip_Pickup_DateTime': '2009-06-10 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746592, 'End_Lon': -73.991908, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750315, 'Start_Lon': -73.991283, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-09 16:19:00', 'Trip_Pickup_DateTime': '2009-06-09 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791463, 'End_Lon': -73.968708, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764055, 'Start_Lon': -73.970848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-10 15:29:00', 'Trip_Pickup_DateTime': '2009-06-10 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711478, 'End_Lon': -74.017065, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74297, 'Start_Lon': -74.003933, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-13 16:58:00', 'Trip_Pickup_DateTime': '2009-06-13 16:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773513, 'End_Lon': -73.948802, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76648, 'Start_Lon': -73.960233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-14 01:38:00', 'Trip_Pickup_DateTime': '2009-06-14 01:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71758, 'End_Lon': -73.991935, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743718, 'Start_Lon': -73.993037, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-13 23:40:00', 'Trip_Pickup_DateTime': '2009-06-13 23:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775275, 'End_Lon': -73.96358, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758748, 'Start_Lon': -73.981203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-09 16:05:00', 'Trip_Pickup_DateTime': '2009-06-09 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760237, 'End_Lon': -73.876593, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734395, 'Start_Lon': -73.99978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.4, 'Trip_Distance': 10.11, 'Trip_Dropoff_DateTime': '2009-06-14 23:38:00', 'Trip_Pickup_DateTime': '2009-06-14 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738222, 'End_Lon': -74.008735, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733572, 'Start_Lon': -73.999485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-14 23:17:00', 'Trip_Pickup_DateTime': '2009-06-14 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76332, 'End_Lon': -73.921285, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737957, 'Start_Lon': -73.978515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 5.37, 'Trip_Dropoff_DateTime': '2009-06-14 05:49:00', 'Trip_Pickup_DateTime': '2009-06-14 05:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.646105, 'End_Lon': -73.776373, 'Fare_Amt': 42.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.690702, 'Start_Lon': -73.994123, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 47.1, 'Trip_Distance': 18.92, 'Trip_Dropoff_DateTime': '2009-06-14 17:42:00', 'Trip_Pickup_DateTime': '2009-06-14 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757558, 'End_Lon': -74.041038, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758997, 'Start_Lon': -74.03846, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-10 15:23:00', 'Trip_Pickup_DateTime': '2009-06-10 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76956, 'End_Lon': -73.967255, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713635, 'Start_Lon': -74.013793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 6.1, 'Trip_Dropoff_DateTime': '2009-06-14 18:44:00', 'Trip_Pickup_DateTime': '2009-06-14 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750438, 'End_Lon': -73.975198, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750007, 'Start_Lon': -73.994047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-11 08:54:00', 'Trip_Pickup_DateTime': '2009-06-11 08:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753232, 'End_Lon': -73.977573, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765608, 'Start_Lon': -73.980328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-14 21:24:00', 'Trip_Pickup_DateTime': '2009-06-14 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761772, 'End_Lon': -73.971487, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7245, 'Start_Lon': -73.993517, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-10 13:37:00', 'Trip_Pickup_DateTime': '2009-06-10 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.710098, 'End_Lon': -74.009667, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744592, 'Start_Lon': -73.987277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-12 22:08:00', 'Trip_Pickup_DateTime': '2009-06-12 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71542, 'End_Lon': -74.015823, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713095, 'Start_Lon': -73.998393, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-14 19:51:00', 'Trip_Pickup_DateTime': '2009-06-14 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752502, 'End_Lon': -73.993228, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745115, 'Start_Lon': -73.971672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-14 12:50:00', 'Trip_Pickup_DateTime': '2009-06-14 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762758, 'End_Lon': -73.961545, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714508, 'Start_Lon': -74.014335, 'Tip_Amt': 2.2, 'Tolls_Amt': 0.0, 'Total_Amt': 20.0, 'Trip_Distance': 7.13, 'Trip_Dropoff_DateTime': '2009-06-12 23:00:00', 'Trip_Pickup_DateTime': '2009-06-12 22:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747842, 'End_Lon': -73.986843, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75153, 'Start_Lon': -73.993972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-12 22:23:00', 'Trip_Pickup_DateTime': '2009-06-12 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75938, 'End_Lon': -73.988525, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726862, 'Start_Lon': -74.00353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-09 16:21:00', 'Trip_Pickup_DateTime': '2009-06-09 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749638, 'End_Lon': -73.990073, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730358, 'Start_Lon': -73.990143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-12 23:02:00', 'Trip_Pickup_DateTime': '2009-06-12 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757035, 'End_Lon': -73.98369, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718295, 'Start_Lon': -74.000683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.29, 'Trip_Dropoff_DateTime': '2009-06-10 15:21:00', 'Trip_Pickup_DateTime': '2009-06-10 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750532, 'End_Lon': -73.994662, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742662, 'Start_Lon': -74.004283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-14 01:06:00', 'Trip_Pickup_DateTime': '2009-06-14 01:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786033, 'End_Lon': -73.968798, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76372, 'Start_Lon': -73.977132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-10 16:43:00', 'Trip_Pickup_DateTime': '2009-06-10 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726043, 'End_Lon': -74.008347, 'Fare_Amt': 13.7, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761572, 'Start_Lon': -73.99396, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.2, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-14 01:28:00', 'Trip_Pickup_DateTime': '2009-06-14 01:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788588, 'End_Lon': -73.979413, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741047, 'Start_Lon': -74.005555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-15 00:06:00', 'Trip_Pickup_DateTime': '2009-06-14 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73812, 'End_Lon': -73.998342, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743003, 'Start_Lon': -73.97405, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-13 21:49:00', 'Trip_Pickup_DateTime': '2009-06-13 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741923, 'End_Lon': -73.97476, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763525, 'Start_Lon': -73.982042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-14 09:22:00', 'Trip_Pickup_DateTime': '2009-06-14 09:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761555, 'End_Lon': -73.990103, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753533, 'Start_Lon': -73.977272, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-12 22:44:00', 'Trip_Pickup_DateTime': '2009-06-12 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752243, 'End_Lon': -73.993509, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745146, 'Start_Lon': -73.978473, 'Tip_Amt': 0.97, 'Tolls_Amt': 0.0, 'Total_Amt': 7.47, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-22 09:20:30', 'Trip_Pickup_DateTime': '2009-06-22 09:11:33', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.710052, 'End_Lon': -74.015143, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764407, 'Start_Lon': -73.984413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 5.13, 'Trip_Dropoff_DateTime': '2009-06-14 10:50:00', 'Trip_Pickup_DateTime': '2009-06-14 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739895, 'End_Lon': -74.006173, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719757, 'Start_Lon': -74.008617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-14 17:57:00', 'Trip_Pickup_DateTime': '2009-06-14 17:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741953, 'End_Lon': -74.007798, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740192, 'Start_Lon': -73.986528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-14 20:20:00', 'Trip_Pickup_DateTime': '2009-06-14 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756165, 'End_Lon': -73.985752, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739408, 'Start_Lon': -74.002865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-14 14:22:00', 'Trip_Pickup_DateTime': '2009-06-14 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750578, 'End_Lon': -73.97935, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746712, 'Start_Lon': -73.99894, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-14 12:54:00', 'Trip_Pickup_DateTime': '2009-06-14 12:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749757, 'End_Lon': -73.995345, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74645, 'Start_Lon': -73.994075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-15 11:32:00', 'Trip_Pickup_DateTime': '2009-06-15 11:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801482, 'End_Lon': -73.954007, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787148, 'Start_Lon': -73.941822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-14 19:37:00', 'Trip_Pickup_DateTime': '2009-06-14 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723723, 'End_Lon': -73.991533, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717518, 'Start_Lon': -74.003355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-14 19:30:00', 'Trip_Pickup_DateTime': '2009-06-14 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76855, 'End_Lon': -73.987455, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759723, 'Start_Lon': -73.995345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-14 21:37:00', 'Trip_Pickup_DateTime': '2009-06-14 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762477, 'End_Lon': -73.973877, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778748, 'Start_Lon': -73.960317, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-15 16:47:00', 'Trip_Pickup_DateTime': '2009-06-15 16:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768298, 'End_Lon': -73.962332, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751305, 'Start_Lon': -73.973472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-14 12:40:00', 'Trip_Pickup_DateTime': '2009-06-14 12:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711052, 'End_Lon': -74.009988, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750132, 'Start_Lon': -73.991472, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-11 20:45:00', 'Trip_Pickup_DateTime': '2009-06-11 20:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792022, 'End_Lon': -73.939783, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71768, 'Start_Lon': -74.009188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.39, 'Trip_Dropoff_DateTime': '2009-06-12 01:07:00', 'Trip_Pickup_DateTime': '2009-06-12 00:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77704, 'End_Lon': -73.982757, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75949, 'Start_Lon': -73.98132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-10 17:42:00', 'Trip_Pickup_DateTime': '2009-06-10 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764068, 'End_Lon': -73.975855, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767155, 'Start_Lon': -73.96408, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-10 18:47:00', 'Trip_Pickup_DateTime': '2009-06-10 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744082, 'End_Lon': -73.975937, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.736922, 'Start_Lon': -73.978725, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-10 18:36:00', 'Trip_Pickup_DateTime': '2009-06-10 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721908, 'End_Lon': -73.993525, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728978, 'Start_Lon': -73.992167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-14 16:20:00', 'Trip_Pickup_DateTime': '2009-06-14 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756963, 'End_Lon': -73.928298, 'Fare_Amt': 13.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806967, 'Start_Lon': -73.94348, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 18.35, 'Trip_Distance': 4.7, 'Trip_Dropoff_DateTime': '2009-06-12 00:46:00', 'Trip_Pickup_DateTime': '2009-06-12 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729192, 'End_Lon': -74.003692, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763308, 'Start_Lon': -73.980987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-10 20:50:00', 'Trip_Pickup_DateTime': '2009-06-10 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735012, 'End_Lon': -73.985785, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714282, 'Start_Lon': -73.997227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-10 20:47:00', 'Trip_Pickup_DateTime': '2009-06-10 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761093, 'End_Lon': -73.984545, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763543, 'Start_Lon': -73.97524, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-21 18:41:00', 'Trip_Pickup_DateTime': '2009-06-21 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785052, 'End_Lon': -73.969585, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775158, 'Start_Lon': -73.982228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-14 13:53:00', 'Trip_Pickup_DateTime': '2009-06-14 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769422, 'End_Lon': -73.988655, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742857, 'Start_Lon': -73.99365, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-14 15:42:00', 'Trip_Pickup_DateTime': '2009-06-14 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72689, 'End_Lon': -73.988858, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749822, 'Start_Lon': -73.972297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-10 20:20:00', 'Trip_Pickup_DateTime': '2009-06-10 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754752, 'End_Lon': -73.928052, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798053, 'Start_Lon': -73.935545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.17, 'Trip_Dropoff_DateTime': '2009-06-14 17:43:00', 'Trip_Pickup_DateTime': '2009-06-14 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742118, 'End_Lon': -73.997192, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742118, 'Start_Lon': -73.997192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-14 01:00:00', 'Trip_Pickup_DateTime': '2009-06-14 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75242, 'End_Lon': -73.985773, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750732, 'Start_Lon': -73.991332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-09 16:04:00', 'Trip_Pickup_DateTime': '2009-06-09 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787917, 'End_Lon': -73.981308, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776847, 'Start_Lon': -73.981955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-14 01:20:00', 'Trip_Pickup_DateTime': '2009-06-14 01:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75597, 'End_Lon': -73.997333, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778795, 'Start_Lon': -73.95822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-14 16:00:00', 'Trip_Pickup_DateTime': '2009-06-14 15:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751123, 'End_Lon': -73.982113, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751503, 'Start_Lon': -74.003508, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-12 00:36:00', 'Trip_Pickup_DateTime': '2009-06-12 00:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.647045, 'End_Lon': -73.996893, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726308, 'Start_Lon': -73.991678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 9.47, 'Trip_Dropoff_DateTime': '2009-06-12 00:13:00', 'Trip_Pickup_DateTime': '2009-06-11 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765092, 'End_Lon': -73.990898, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775032, 'Start_Lon': -73.956845, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-11 23:36:00', 'Trip_Pickup_DateTime': '2009-06-11 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782492, 'End_Lon': -73.953358, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.648658, 'Start_Lon': -73.783903, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 19.0, 'Trip_Dropoff_DateTime': '2009-06-10 19:51:00', 'Trip_Pickup_DateTime': '2009-06-10 19:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763142, 'End_Lon': -73.982745, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77406, 'Start_Lon': -73.98204, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-10 19:43:00', 'Trip_Pickup_DateTime': '2009-06-10 19:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742178, 'End_Lon': -74.004573, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754612, 'Start_Lon': -73.977797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-11 21:51:00', 'Trip_Pickup_DateTime': '2009-06-11 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737335, 'End_Lon': -74.001518, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721167, 'Start_Lon': -73.998273, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-12 02:08:00', 'Trip_Pickup_DateTime': '2009-06-12 02:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781, 'End_Lon': -73.951818, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758805, 'Start_Lon': -73.98558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-12 00:10:00', 'Trip_Pickup_DateTime': '2009-06-11 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745598, 'End_Lon': -73.979405, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749667, 'Start_Lon': -73.987567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-21 22:31:00', 'Trip_Pickup_DateTime': '2009-06-21 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75447, 'End_Lon': -73.988958, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74719, 'Start_Lon': -73.985968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-11 22:19:00', 'Trip_Pickup_DateTime': '2009-06-11 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732103, 'End_Lon': -74.004432, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745917, 'Start_Lon': -73.978092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-12 20:52:00', 'Trip_Pickup_DateTime': '2009-06-12 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767395, 'End_Lon': -73.956222, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755877, 'Start_Lon': -73.96481, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-12 18:13:00', 'Trip_Pickup_DateTime': '2009-06-12 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778478, 'End_Lon': -73.981713, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739757, 'Start_Lon': -74.006175, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-12 01:09:00', 'Trip_Pickup_DateTime': '2009-06-12 00:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783662, 'End_Lon': -73.97937, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773602, 'Start_Lon': -73.955313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-09 15:05:00', 'Trip_Pickup_DateTime': '2009-06-09 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76851, 'End_Lon': -73.967422, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733988, 'Start_Lon': -73.977237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-22 09:32:00', 'Trip_Pickup_DateTime': '2009-06-22 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736143, 'End_Lon': -73.993498, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762095, 'Start_Lon': -73.989697, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-30 15:26:00', 'Trip_Pickup_DateTime': '2009-06-30 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751192, 'End_Lon': -73.978555, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731912, 'Start_Lon': -73.990165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-30 08:27:00', 'Trip_Pickup_DateTime': '2009-06-30 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765112, 'End_Lon': -73.961337, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774008, 'Start_Lon': -73.95736, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-30 17:19:00', 'Trip_Pickup_DateTime': '2009-06-30 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765345, 'End_Lon': -73.957798, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718458, 'Start_Lon': -73.987525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.6, 'Trip_Dropoff_DateTime': '2009-06-13 02:14:00', 'Trip_Pickup_DateTime': '2009-06-13 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.645662, 'End_Lon': -73.776287, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.818518, 'Start_Lon': -73.950437, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.9, 'Trip_Dropoff_DateTime': '2009-06-30 05:36:00', 'Trip_Pickup_DateTime': '2009-06-30 05:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747097, 'End_Lon': -73.979497, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760583, 'Start_Lon': -73.989717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-30 18:11:00', 'Trip_Pickup_DateTime': '2009-06-30 18:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730273, 'End_Lon': -73.999737, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723272, 'Start_Lon': -73.98839, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-13 02:45:00', 'Trip_Pickup_DateTime': '2009-06-13 02:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744025, 'End_Lon': -73.953667, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72065, 'Start_Lon': -73.987078, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 18.05, 'Trip_Distance': 4.18, 'Trip_Dropoff_DateTime': '2009-06-30 20:11:00', 'Trip_Pickup_DateTime': '2009-06-30 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73738, 'End_Lon': -74.000307, 'Fare_Amt': 12.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776328, 'Start_Lon': -73.952625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-13 03:03:00', 'Trip_Pickup_DateTime': '2009-06-13 02:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.698313, 'End_Lon': -73.936147, 'Fare_Amt': 39.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645285, 'Start_Lon': -73.776552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 40.2, 'Trip_Distance': 17.26, 'Trip_Dropoff_DateTime': '2009-06-14 21:46:00', 'Trip_Pickup_DateTime': '2009-06-14 21:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.644258, 'End_Lon': -73.79072, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708762, 'Start_Lon': -74.008028, 'Tip_Amt': 5.0, 'Tolls_Amt': 0.0, 'Total_Amt': 50.0, 'Trip_Distance': 19.38, 'Trip_Dropoff_DateTime': '2009-06-29 21:57:00', 'Trip_Pickup_DateTime': '2009-06-29 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77722, 'End_Lon': -73.975202, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772687, 'Start_Lon': -73.964768, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-29 17:36:00', 'Trip_Pickup_DateTime': '2009-06-29 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763293, 'End_Lon': -73.969548, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757135, 'Start_Lon': -73.982012, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-09 18:36:00', 'Trip_Pickup_DateTime': '2009-06-09 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786867, 'End_Lon': -73.97561, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761587, 'Start_Lon': -73.993935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-13 01:00:00', 'Trip_Pickup_DateTime': '2009-06-13 00:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732892, 'End_Lon': -73.993328, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735172, 'Start_Lon': -74.006072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-30 21:17:00', 'Trip_Pickup_DateTime': '2009-06-30 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.824845, 'End_Lon': -73.944337, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.826885, 'Start_Lon': -73.944147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.56, 'Trip_Dropoff_DateTime': '2009-06-09 19:48:00', 'Trip_Pickup_DateTime': '2009-06-09 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770063, 'End_Lon': -73.960475, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761807, 'Start_Lon': -73.981997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-30 20:29:00', 'Trip_Pickup_DateTime': '2009-06-30 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755537, 'End_Lon': -73.972403, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755537, 'Start_Lon': -73.972403, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-30 07:06:00', 'Trip_Pickup_DateTime': '2009-06-30 06:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796248, 'End_Lon': -73.961385, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76388, 'Start_Lon': -73.95578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.14, 'Trip_Dropoff_DateTime': '2009-06-29 22:17:00', 'Trip_Pickup_DateTime': '2009-06-29 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78423, 'End_Lon': -73.950563, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750405, 'Start_Lon': -73.981173, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-30 23:52:00', 'Trip_Pickup_DateTime': '2009-06-30 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768523, 'End_Lon': -73.96585, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787173, 'Start_Lon': -73.954088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-30 16:06:00', 'Trip_Pickup_DateTime': '2009-06-30 16:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718628, 'End_Lon': -73.99536, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748028, 'Start_Lon': -73.98464, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-11 03:39:00', 'Trip_Pickup_DateTime': '2009-06-11 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746165, 'End_Lon': -73.980737, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740188, 'Start_Lon': -73.975995, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-11 10:13:00', 'Trip_Pickup_DateTime': '2009-06-11 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782628, 'End_Lon': -73.955448, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782582, 'Start_Lon': -73.980688, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-29 15:08:00', 'Trip_Pickup_DateTime': '2009-06-29 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757068, 'End_Lon': -73.959978, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76948, 'Start_Lon': -73.951943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-21 15:51:00', 'Trip_Pickup_DateTime': '2009-06-21 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745457, 'End_Lon': -73.99481, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744648, 'Start_Lon': -73.985543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-30 10:06:00', 'Trip_Pickup_DateTime': '2009-06-30 09:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722883, 'End_Lon': -73.982767, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762275, 'Start_Lon': -73.997347, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.89, 'Trip_Dropoff_DateTime': '2009-06-30 22:30:00', 'Trip_Pickup_DateTime': '2009-06-30 22:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789602, 'End_Lon': -73.953783, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739755, 'Start_Lon': -73.982435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.1, 'Trip_Dropoff_DateTime': '2009-06-30 14:14:00', 'Trip_Pickup_DateTime': '2009-06-30 13:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770863, 'End_Lon': -73.967252, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765242, 'Start_Lon': -73.966162, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-30 17:28:00', 'Trip_Pickup_DateTime': '2009-06-30 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756272, 'End_Lon': -73.997163, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767782, 'Start_Lon': -73.985535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-30 10:14:00', 'Trip_Pickup_DateTime': '2009-06-30 09:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771318, 'End_Lon': -73.98329, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-29 14:23:00', 'Trip_Pickup_DateTime': '2009-06-29 14:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780205, 'End_Lon': -73.984377, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.804842, 'Start_Lon': -73.966402, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-30 10:39:00', 'Trip_Pickup_DateTime': '2009-06-30 10:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762237, 'End_Lon': -73.983157, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771818, 'Start_Lon': -73.95618, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-13 00:06:00', 'Trip_Pickup_DateTime': '2009-06-12 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752098, 'End_Lon': -74.00459, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76421, 'Start_Lon': -73.986792, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-29 01:47:00', 'Trip_Pickup_DateTime': '2009-06-29 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758892, 'End_Lon': -73.970495, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76867, 'Start_Lon': -73.958513, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-30 08:37:00', 'Trip_Pickup_DateTime': '2009-06-30 08:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750938, 'End_Lon': -73.983687, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732152, 'Start_Lon': -73.990613, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-30 00:07:00', 'Trip_Pickup_DateTime': '2009-06-29 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746397, 'End_Lon': -74.008297, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745015, 'Start_Lon': -73.997827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-30 22:10:00', 'Trip_Pickup_DateTime': '2009-06-30 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75133, 'End_Lon': -73.977562, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737543, 'Start_Lon': -73.988448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-29 18:44:00', 'Trip_Pickup_DateTime': '2009-06-29 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750147, 'End_Lon': -73.991862, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760632, 'Start_Lon': -73.97409, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-30 12:26:00', 'Trip_Pickup_DateTime': '2009-06-30 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780895, 'End_Lon': -73.984992, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764025, 'Start_Lon': -73.976777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-29 18:13:00', 'Trip_Pickup_DateTime': '2009-06-29 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753097, 'End_Lon': -73.966505, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731552, 'Start_Lon': -73.994773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-30 00:49:00', 'Trip_Pickup_DateTime': '2009-06-30 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756245, 'End_Lon': -73.997872, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740282, 'Start_Lon': -73.994682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-29 20:17:00', 'Trip_Pickup_DateTime': '2009-06-29 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770797, 'End_Lon': -73.982285, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763395, 'Start_Lon': -73.983003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-30 12:43:00', 'Trip_Pickup_DateTime': '2009-06-30 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74, 'End_Lon': -74.005128, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725767, 'Start_Lon': -73.99656, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-01 12:16:00', 'Trip_Pickup_DateTime': '2009-06-01 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755057, 'End_Lon': -73.980127, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784685, 'Start_Lon': -73.95009, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-13 18:03:00', 'Trip_Pickup_DateTime': '2009-06-13 17:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73375, 'End_Lon': -73.999477, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711063, 'Start_Lon': -74.01574, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-30 14:16:00', 'Trip_Pickup_DateTime': '2009-06-30 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79898, 'End_Lon': -73.939203, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754925, 'Start_Lon': -73.972915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-30 15:44:00', 'Trip_Pickup_DateTime': '2009-06-30 15:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760443, 'End_Lon': -73.970163, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74845, 'Start_Lon': -73.991942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-21 19:14:00', 'Trip_Pickup_DateTime': '2009-06-21 19:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737537, 'End_Lon': -74.005718, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767682, 'Start_Lon': -73.985813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-29 18:48:00', 'Trip_Pickup_DateTime': '2009-06-29 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765447, 'End_Lon': -73.954722, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.798933, 'Start_Lon': -73.966803, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-29 19:31:00', 'Trip_Pickup_DateTime': '2009-06-29 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735288, 'End_Lon': -73.970792, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741283, 'Start_Lon': -73.990457, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-30 11:12:00', 'Trip_Pickup_DateTime': '2009-06-30 11:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776385, 'End_Lon': -73.976813, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760213, 'Start_Lon': -73.994933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-29 16:23:00', 'Trip_Pickup_DateTime': '2009-06-29 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752177, 'End_Lon': -73.981152, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764662, 'Start_Lon': -73.971323, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-09 18:31:00', 'Trip_Pickup_DateTime': '2009-06-09 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724567, 'End_Lon': -73.998433, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727102, 'Start_Lon': -73.991475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-30 21:59:00', 'Trip_Pickup_DateTime': '2009-06-30 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76126, 'End_Lon': -73.97508, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806022, 'Start_Lon': -73.965373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.95, 'Trip_Dropoff_DateTime': '2009-06-29 13:06:00', 'Trip_Pickup_DateTime': '2009-06-29 12:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760057, 'End_Lon': -73.980402, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720553, 'Start_Lon': -74.01015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.18, 'Trip_Dropoff_DateTime': '2009-06-29 12:18:00', 'Trip_Pickup_DateTime': '2009-06-29 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739338, 'End_Lon': -73.99912, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762348, 'Start_Lon': -73.986003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-30 04:57:00', 'Trip_Pickup_DateTime': '2009-06-30 04:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71088, 'End_Lon': -74.015035, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73708, 'Start_Lon': -74.000697, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-29 21:11:00', 'Trip_Pickup_DateTime': '2009-06-29 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.693782, 'End_Lon': -73.867632, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647748, 'Start_Lon': -73.789793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.41, 'Trip_Dropoff_DateTime': '2009-06-29 21:55:00', 'Trip_Pickup_DateTime': '2009-06-29 21:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713397, 'End_Lon': -74.011318, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723947, 'Start_Lon': -73.997507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-29 16:53:00', 'Trip_Pickup_DateTime': '2009-06-29 16:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.573108, 'End_Lon': -73.993628, 'Fare_Amt': 39.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.644778, 'Start_Lon': -73.782067, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 39.3, 'Trip_Distance': 17.85, 'Trip_Dropoff_DateTime': '2009-06-13 18:47:00', 'Trip_Pickup_DateTime': '2009-06-13 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757773, 'End_Lon': -73.98938, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764007, 'Start_Lon': -73.95584, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-28 10:47:00', 'Trip_Pickup_DateTime': '2009-06-28 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73939, 'End_Lon': -73.98735, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761475, 'Start_Lon': -73.974598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-30 20:51:00', 'Trip_Pickup_DateTime': '2009-06-30 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76005, 'End_Lon': -73.972523, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75794, 'Start_Lon': -73.989315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-29 16:34:00', 'Trip_Pickup_DateTime': '2009-06-29 16:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75849, 'End_Lon': -73.97197, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.693008, 'Start_Lon': -73.993005, 'Tip_Amt': 4.82, 'Tolls_Amt': 0.0, 'Total_Amt': 24.12, 'Trip_Distance': 7.19, 'Trip_Dropoff_DateTime': '2009-06-30 08:36:00', 'Trip_Pickup_DateTime': '2009-06-30 08:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.82031, 'End_Lon': -73.955073, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.824665, 'Start_Lon': -73.951855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-30 18:20:00', 'Trip_Pickup_DateTime': '2009-06-30 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757337, 'End_Lon': -73.968457, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740752, 'Start_Lon': -73.975748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-12 08:24:00', 'Trip_Pickup_DateTime': '2009-06-12 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755585, 'End_Lon': -73.974472, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74681, 'Start_Lon': -73.986658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-12 08:42:00', 'Trip_Pickup_DateTime': '2009-06-12 08:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741387, 'End_Lon': -73.997812, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742013, 'Start_Lon': -73.974813, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-30 18:09:00', 'Trip_Pickup_DateTime': '2009-06-30 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771543, 'End_Lon': -73.961212, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776373, 'Start_Lon': -73.962557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-10 13:13:00', 'Trip_Pickup_DateTime': '2009-06-10 13:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759847, 'End_Lon': -73.96482, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766283, 'Start_Lon': -73.951983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-08 23:14:00', 'Trip_Pickup_DateTime': '2009-06-08 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749443, 'End_Lon': -73.99167, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776033, 'Start_Lon': -73.953418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-13 18:45:00', 'Trip_Pickup_DateTime': '2009-06-13 18:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78555, 'End_Lon': -73.96996, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779857, 'Start_Lon': -73.980852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-12 07:50:00', 'Trip_Pickup_DateTime': '2009-06-12 07:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747675, 'End_Lon': -73.986482, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74229, 'Start_Lon': -74.004438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-12 21:42:00', 'Trip_Pickup_DateTime': '2009-06-12 21:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738517, 'End_Lon': -73.99754, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702403, 'Start_Lon': -74.013717, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-29 22:02:00', 'Trip_Pickup_DateTime': '2009-06-29 21:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763128, 'End_Lon': -73.97437, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759122, 'Start_Lon': -73.98836, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-12 09:00:00', 'Trip_Pickup_DateTime': '2009-06-12 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-09 18:21:00', 'Trip_Pickup_DateTime': '2009-06-09 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784928, 'End_Lon': -73.95376, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778187, 'Start_Lon': -73.954625, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-29 14:18:00', 'Trip_Pickup_DateTime': '2009-06-29 14:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744573, 'End_Lon': -74.006602, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736523, 'Start_Lon': -73.989202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-22 15:45:00', 'Trip_Pickup_DateTime': '2009-06-22 15:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739503, 'End_Lon': -73.98067, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752403, 'Start_Lon': -73.975222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-08 21:40:00', 'Trip_Pickup_DateTime': '2009-06-08 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757555, 'End_Lon': -73.975188, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764983, 'Start_Lon': -73.987942, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-12 23:15:00', 'Trip_Pickup_DateTime': '2009-06-12 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721735, 'End_Lon': -74.004375, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751723, 'Start_Lon': -73.993815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-12 23:07:00', 'Trip_Pickup_DateTime': '2009-06-12 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757725, 'End_Lon': -73.971233, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770633, 'Start_Lon': -73.960795, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-12 07:35:00', 'Trip_Pickup_DateTime': '2009-06-12 07:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728255, 'End_Lon': -73.987918, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718947, 'Start_Lon': -73.999243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-09 17:26:00', 'Trip_Pickup_DateTime': '2009-06-09 17:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76284, 'End_Lon': -73.973333, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740615, 'Start_Lon': -73.985945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-09 16:54:00', 'Trip_Pickup_DateTime': '2009-06-09 16:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776163, 'End_Lon': -73.959213, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739363, 'Start_Lon': -73.986885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-12 22:40:00', 'Trip_Pickup_DateTime': '2009-06-12 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792545, 'End_Lon': -73.976638, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774688, 'Start_Lon': -73.982087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-09 18:04:00', 'Trip_Pickup_DateTime': '2009-06-09 17:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75044, 'End_Lon': -73.994613, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.713515, 'Start_Lon': -74.0092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-12 23:38:00', 'Trip_Pickup_DateTime': '2009-06-12 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785175, 'End_Lon': -73.949327, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769538, 'Start_Lon': -73.960343, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-10 20:37:00', 'Trip_Pickup_DateTime': '2009-06-10 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71394, 'End_Lon': -74.010487, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77174, 'Start_Lon': -73.979327, 'Tip_Amt': 3.16, 'Tolls_Amt': 0.0, 'Total_Amt': 18.96, 'Trip_Distance': 5.59, 'Trip_Dropoff_DateTime': '2009-06-10 21:23:00', 'Trip_Pickup_DateTime': '2009-06-10 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76643, 'End_Lon': -73.889312, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77592, 'Start_Lon': -73.94395, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 23.85, 'Trip_Distance': 8.39, 'Trip_Dropoff_DateTime': '2009-06-14 13:07:00', 'Trip_Pickup_DateTime': '2009-06-14 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715395, 'End_Lon': -74.013798, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776225, 'Start_Lon': -73.961925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 5.49, 'Trip_Dropoff_DateTime': '2009-06-13 19:04:00', 'Trip_Pickup_DateTime': '2009-06-13 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776538, 'End_Lon': -73.956598, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743628, 'Start_Lon': -73.999675, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-14 00:37:00', 'Trip_Pickup_DateTime': '2009-06-14 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774358, 'End_Lon': -73.918218, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763882, 'Start_Lon': -73.988498, 'Tip_Amt': 3.56, 'Tolls_Amt': 0.0, 'Total_Amt': 21.36, 'Trip_Distance': 6.0, 'Trip_Dropoff_DateTime': '2009-06-15 01:13:00', 'Trip_Pickup_DateTime': '2009-06-15 00:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761588, 'End_Lon': -73.997898, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765398, 'Start_Lon': -73.983947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-30 09:33:00', 'Trip_Pickup_DateTime': '2009-06-30 09:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77352, 'End_Lon': -73.981857, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782468, 'Start_Lon': -73.948713, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-14 10:22:00', 'Trip_Pickup_DateTime': '2009-06-14 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75266, 'End_Lon': -73.969103, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72438, 'Start_Lon': -73.992977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-10 11:36:00', 'Trip_Pickup_DateTime': '2009-06-10 11:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752323, 'End_Lon': -73.978517, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746103, 'Start_Lon': -73.994514, 'Tip_Amt': 0.85, 'Tolls_Amt': 0.0, 'Total_Amt': 6.55, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-06 11:22:00', 'Trip_Pickup_DateTime': '2009-06-06 11:15:52', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.764772, 'End_Lon': -73.962645, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763392, 'Start_Lon': -73.988917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-30 17:28:00', 'Trip_Pickup_DateTime': '2009-06-30 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741323, 'End_Lon': -73.924743, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770142, 'Start_Lon': -73.9666, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.85, 'Trip_Dropoff_DateTime': '2009-06-26 16:10:00', 'Trip_Pickup_DateTime': '2009-06-26 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765945, 'End_Lon': -73.946383, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765867, 'Start_Lon': -73.965693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-25 20:22:00', 'Trip_Pickup_DateTime': '2009-06-25 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773578, 'End_Lon': -73.959858, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772418, 'Start_Lon': -73.952795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-25 09:12:00', 'Trip_Pickup_DateTime': '2009-06-25 09:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763817, 'End_Lon': -73.957818, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725693, 'Start_Lon': -73.99789, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.38, 'Trip_Dropoff_DateTime': '2009-06-27 01:06:00', 'Trip_Pickup_DateTime': '2009-06-27 00:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72959, 'End_Lon': -73.980932, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725382, 'Start_Lon': -73.992018, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-09 22:17:00', 'Trip_Pickup_DateTime': '2009-06-09 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775743, 'End_Lon': -73.962467, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770362, 'Start_Lon': -73.980188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-25 07:45:00', 'Trip_Pickup_DateTime': '2009-06-25 07:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744752, 'End_Lon': -73.997705, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753908, 'Start_Lon': -73.977277, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-09 21:16:00', 'Trip_Pickup_DateTime': '2009-06-09 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.01067, 'End_Lon': 0.005538, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.002848, 'Start_Lon': 0.001023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-24 21:02:00', 'Trip_Pickup_DateTime': '2009-06-24 20:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716308, 'End_Lon': -74.014955, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740607, 'Start_Lon': -73.989378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-09 22:00:00', 'Trip_Pickup_DateTime': '2009-06-09 21:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71738, 'End_Lon': -74.004497, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72953, 'Start_Lon': -74.000775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-25 02:02:00', 'Trip_Pickup_DateTime': '2009-06-25 01:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74816, 'End_Lon': -73.984712, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759568, 'Start_Lon': -73.970093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-25 17:49:00', 'Trip_Pickup_DateTime': '2009-06-25 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764528, 'End_Lon': -73.988088, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783142, 'Start_Lon': -73.947978, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.55, 'Trip_Dropoff_DateTime': '2009-06-25 05:13:00', 'Trip_Pickup_DateTime': '2009-06-25 05:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748978, 'End_Lon': -73.977237, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758558, 'Start_Lon': -73.977263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-30 20:56:00', 'Trip_Pickup_DateTime': '2009-06-30 20:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740305, 'End_Lon': -74.005265, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74372, 'Start_Lon': -73.987518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-26 01:23:00', 'Trip_Pickup_DateTime': '2009-06-26 01:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74742, 'End_Lon': -73.98573, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739272, 'Start_Lon': -73.994798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-13 03:46:00', 'Trip_Pickup_DateTime': '2009-06-13 03:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742932, 'End_Lon': -73.90904, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757125, 'Start_Lon': -73.97151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 3.93, 'Trip_Dropoff_DateTime': '2009-06-25 00:36:00', 'Trip_Pickup_DateTime': '2009-06-25 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750847, 'End_Lon': -73.987113, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734628, 'Start_Lon': -73.986218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-24 08:10:00', 'Trip_Pickup_DateTime': '2009-06-24 08:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.855747, 'End_Lon': -73.912332, 'Fare_Amt': 25.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76354, 'Start_Lon': -73.992678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.2, 'Trip_Distance': 10.59, 'Trip_Dropoff_DateTime': '2009-06-13 03:41:00', 'Trip_Pickup_DateTime': '2009-06-13 03:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749142, 'End_Lon': -73.970235, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751558, 'Start_Lon': -73.975315, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.2, 'Trip_Distance': 0.51, 'Trip_Dropoff_DateTime': '2009-06-14 22:56:00', 'Trip_Pickup_DateTime': '2009-06-14 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765023, 'End_Lon': -73.978363, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711772, 'Start_Lon': -74.00794, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 4.16, 'Trip_Dropoff_DateTime': '2009-06-25 18:37:00', 'Trip_Pickup_DateTime': '2009-06-25 18:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763465, 'End_Lon': -73.969478, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786407, 'Start_Lon': -73.952932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-26 07:07:00', 'Trip_Pickup_DateTime': '2009-06-26 07:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75824, 'End_Lon': -73.9708, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737938, 'Start_Lon': -73.983807, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-13 00:30:00', 'Trip_Pickup_DateTime': '2009-06-13 00:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716537, 'End_Lon': -73.945705, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72678, 'Start_Lon': -73.985423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.14, 'Trip_Dropoff_DateTime': '2009-06-24 01:16:00', 'Trip_Pickup_DateTime': '2009-06-24 01:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759342, 'End_Lon': -73.988767, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7499, 'Start_Lon': -73.995078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-23 18:42:00', 'Trip_Pickup_DateTime': '2009-06-23 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731883, 'End_Lon': -73.974365, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740773, 'Start_Lon': -74.007692, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.4, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-24 23:48:00', 'Trip_Pickup_DateTime': '2009-06-24 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753132, 'End_Lon': -73.976632, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72648, 'Start_Lon': -73.980128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-24 14:15:00', 'Trip_Pickup_DateTime': '2009-06-24 13:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757675, 'End_Lon': -73.963253, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733897, 'Start_Lon': -73.992723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-09 21:33:00', 'Trip_Pickup_DateTime': '2009-06-09 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723292, 'End_Lon': -73.980743, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724742, 'Start_Lon': -73.987408, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-13 04:32:00', 'Trip_Pickup_DateTime': '2009-06-13 04:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755517, 'End_Lon': -73.964017, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766317, 'Start_Lon': -73.951975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-30 11:47:00', 'Trip_Pickup_DateTime': '2009-06-30 11:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648865, 'End_Lon': -73.7827, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76165, 'Start_Lon': -73.988168, 'Tip_Amt': 13.5, 'Tolls_Amt': 4.15, 'Total_Amt': 62.65, 'Trip_Distance': 16.8, 'Trip_Dropoff_DateTime': '2009-06-24 17:02:00', 'Trip_Pickup_DateTime': '2009-06-24 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751085, 'End_Lon': -73.982388, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768197, 'Start_Lon': -73.98594, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-24 10:23:00', 'Trip_Pickup_DateTime': '2009-06-24 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777632, 'End_Lon': -73.958748, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785142, 'Start_Lon': -73.9512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-23 15:30:00', 'Trip_Pickup_DateTime': '2009-06-23 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733983, 'End_Lon': -73.990548, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729797, 'Start_Lon': -73.980778, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-23 23:58:00', 'Trip_Pickup_DateTime': '2009-06-23 23:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739555, 'End_Lon': -74.006232, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76136, 'Start_Lon': -73.978923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-14 23:25:00', 'Trip_Pickup_DateTime': '2009-06-14 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78226, 'End_Lon': -73.984537, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768962, 'Start_Lon': -73.960927, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-23 22:52:00', 'Trip_Pickup_DateTime': '2009-06-23 22:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741108, 'End_Lon': -74.005097, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772297, 'Start_Lon': -73.982485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-23 12:44:00', 'Trip_Pickup_DateTime': '2009-06-23 12:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745317, 'End_Lon': -73.985137, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773653, 'Start_Lon': -73.982382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-23 21:28:00', 'Trip_Pickup_DateTime': '2009-06-23 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762192, 'End_Lon': -73.969943, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779263, 'Start_Lon': -73.955958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-23 15:12:00', 'Trip_Pickup_DateTime': '2009-06-23 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719723, 'End_Lon': -73.777353, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.644977, 'Start_Lon': -73.776712, 'Tip_Amt': 4.52, 'Tolls_Amt': 0.0, 'Total_Amt': 27.12, 'Trip_Distance': 9.07, 'Trip_Dropoff_DateTime': '2009-06-12 22:38:00', 'Trip_Pickup_DateTime': '2009-06-12 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735012, 'End_Lon': -74.006962, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.719045, 'Start_Lon': -74.005143, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-23 17:54:00', 'Trip_Pickup_DateTime': '2009-06-23 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757243, 'End_Lon': -73.973748, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742492, 'Start_Lon': -73.983702, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-23 18:46:00', 'Trip_Pickup_DateTime': '2009-06-23 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730963, 'End_Lon': -73.9781, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736742, 'Start_Lon': -73.988588, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-13 00:47:00', 'Trip_Pickup_DateTime': '2009-06-13 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.551348, 'End_Lon': -74.172337, 'Fare_Amt': 64.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74434, 'Start_Lon': -73.99903, 'Tip_Amt': 0.0, 'Tolls_Amt': 8.3, 'Total_Amt': 73.3, 'Trip_Distance': 29.6, 'Trip_Dropoff_DateTime': '2009-06-13 03:37:00', 'Trip_Pickup_DateTime': '2009-06-13 02:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.812017, 'End_Lon': -73.947772, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760888, 'Start_Lon': -73.987145, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.36, 'Trip_Dropoff_DateTime': '2009-06-23 21:40:00', 'Trip_Pickup_DateTime': '2009-06-23 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727, 'End_Lon': -73.994698, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78577, 'Start_Lon': -73.955148, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 4.79, 'Trip_Dropoff_DateTime': '2009-06-20 21:01:00', 'Trip_Pickup_DateTime': '2009-06-20 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750582, 'End_Lon': -73.97862, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74989, 'Start_Lon': -73.994872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-22 13:11:00', 'Trip_Pickup_DateTime': '2009-06-22 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761807, 'End_Lon': -73.995037, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773163, 'Start_Lon': -73.989375, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-09 20:44:00', 'Trip_Pickup_DateTime': '2009-06-09 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745043, 'End_Lon': -73.991945, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748352, 'Start_Lon': -73.999802, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-23 18:33:00', 'Trip_Pickup_DateTime': '2009-06-23 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751177, 'End_Lon': -73.991068, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763353, 'Start_Lon': -73.981925, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-23 17:52:00', 'Trip_Pickup_DateTime': '2009-06-23 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75212, 'End_Lon': -73.993265, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74546, 'Start_Lon': -74.005777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-22 17:59:00', 'Trip_Pickup_DateTime': '2009-06-22 17:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769642, 'End_Lon': -73.98758, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749417, 'Start_Lon': -73.992133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.9, 'Trip_Dropoff_DateTime': '2009-06-29 14:34:00', 'Trip_Pickup_DateTime': '2009-06-29 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761618, 'End_Lon': -73.978537, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752593, 'Start_Lon': -73.97348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-22 17:09:00', 'Trip_Pickup_DateTime': '2009-06-22 16:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758165, 'End_Lon': -73.986007, 'Fare_Amt': 26.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769033, 'Start_Lon': -73.862732, 'Tip_Amt': 5.32, 'Tolls_Amt': 4.15, 'Total_Amt': 36.07, 'Trip_Distance': 10.02, 'Trip_Dropoff_DateTime': '2009-06-29 22:18:00', 'Trip_Pickup_DateTime': '2009-06-29 21:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750147, 'End_Lon': -73.975, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73567, 'Start_Lon': -73.985385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-20 19:48:00', 'Trip_Pickup_DateTime': '2009-06-20 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762805, 'End_Lon': -73.98271, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752753, 'Start_Lon': -73.993565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-30 03:28:00', 'Trip_Pickup_DateTime': '2009-06-30 03:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733988, 'End_Lon': -73.989745, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.708858, 'Start_Lon': -74.007693, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-20 20:04:00', 'Trip_Pickup_DateTime': '2009-06-20 19:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7589, 'End_Lon': -73.985607, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762775, 'Start_Lon': -73.979238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-20 20:18:00', 'Trip_Pickup_DateTime': '2009-06-20 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76243, 'End_Lon': -73.986182, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79246, 'Start_Lon': -73.964255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-20 19:58:00', 'Trip_Pickup_DateTime': '2009-06-20 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709935, 'End_Lon': -73.962368, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.690297, 'Start_Lon': -73.994433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 4.99, 'Trip_Dropoff_DateTime': '2009-06-20 19:45:00', 'Trip_Pickup_DateTime': '2009-06-20 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765182, 'End_Lon': -73.970328, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73844, 'Start_Lon': -73.98557, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.3, 'Trip_Dropoff_DateTime': '2009-06-22 19:58:00', 'Trip_Pickup_DateTime': '2009-06-22 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-24 14:09:00', 'Trip_Pickup_DateTime': '2009-06-24 14:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760632, 'End_Lon': -73.995842, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773272, 'Start_Lon': -73.98179, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-30 12:06:00', 'Trip_Pickup_DateTime': '2009-06-30 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799498, 'End_Lon': -73.9628, 'Fare_Amt': 2.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799778, 'Start_Lon': -73.962578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.5, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-30 18:22:00', 'Trip_Pickup_DateTime': '2009-06-30 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77399, 'End_Lon': -73.979793, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77366, 'Start_Lon': -73.95607, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-30 19:05:00', 'Trip_Pickup_DateTime': '2009-06-30 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763653, 'End_Lon': -73.967222, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777653, 'Start_Lon': -73.97862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-22 17:50:00', 'Trip_Pickup_DateTime': '2009-06-22 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75458, 'End_Lon': -73.98427, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77688, 'Start_Lon': -73.982278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-30 09:30:00', 'Trip_Pickup_DateTime': '2009-06-30 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78392, 'End_Lon': -73.972993, 'Fare_Amt': 9.7, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760937, 'Start_Lon': -73.960548, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-30 17:12:00', 'Trip_Pickup_DateTime': '2009-06-30 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748843, 'End_Lon': -74.00659, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735078, 'Start_Lon': -73.991643, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-30 09:36:00', 'Trip_Pickup_DateTime': '2009-06-30 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754827, 'End_Lon': -73.971133, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759478, 'Start_Lon': -73.976317, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-30 22:17:00', 'Trip_Pickup_DateTime': '2009-06-30 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774728, 'End_Lon': -73.982183, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755868, 'Start_Lon': -73.983258, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-30 22:20:00', 'Trip_Pickup_DateTime': '2009-06-30 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735212, 'End_Lon': -73.994057, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758997, 'Start_Lon': -73.9852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-29 18:32:00', 'Trip_Pickup_DateTime': '2009-06-29 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76103, 'End_Lon': -73.972502, 'Fare_Amt': 24.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773778, 'Start_Lon': -73.871065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.0, 'Trip_Distance': 10.39, 'Trip_Dropoff_DateTime': '2009-06-29 23:12:00', 'Trip_Pickup_DateTime': '2009-06-29 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75484, 'End_Lon': -73.964307, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76308, 'Start_Lon': -73.96826, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-29 14:19:00', 'Trip_Pickup_DateTime': '2009-06-29 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7378, 'End_Lon': -73.9928, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743962, 'Start_Lon': -73.98789, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-30 15:51:00', 'Trip_Pickup_DateTime': '2009-06-30 15:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75819, 'End_Lon': -73.965332, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761215, 'Start_Lon': -73.986815, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-30 23:40:00', 'Trip_Pickup_DateTime': '2009-06-30 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76313, 'End_Lon': -73.979388, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726467, 'Start_Lon': -73.98924, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-13 00:42:00', 'Trip_Pickup_DateTime': '2009-06-13 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730553, 'End_Lon': -73.986188, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749332, 'Start_Lon': -73.975728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-20 19:01:00', 'Trip_Pickup_DateTime': '2009-06-20 18:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.67366, 'End_Lon': -73.967213, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733608, 'Start_Lon': -73.987827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 5.28, 'Trip_Dropoff_DateTime': '2009-06-20 19:05:00', 'Trip_Pickup_DateTime': '2009-06-20 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713125, 'End_Lon': -74.008648, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742945, 'Start_Lon': -73.988402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-29 12:53:00', 'Trip_Pickup_DateTime': '2009-06-29 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785993, 'End_Lon': -73.969948, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75965, 'Start_Lon': -73.968762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-20 19:09:00', 'Trip_Pickup_DateTime': '2009-06-20 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726773, 'End_Lon': -73.983348, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764317, 'Start_Lon': -73.980805, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.49, 'Trip_Dropoff_DateTime': '2009-06-20 19:13:00', 'Trip_Pickup_DateTime': '2009-06-20 18:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736375, 'End_Lon': -73.981163, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718188, 'Start_Lon': -73.99976, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-20 19:03:00', 'Trip_Pickup_DateTime': '2009-06-20 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754895, 'End_Lon': -73.97536, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746152, 'Start_Lon': -73.986253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-30 13:01:00', 'Trip_Pickup_DateTime': '2009-06-30 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71118, 'End_Lon': -74.009653, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744888, 'Start_Lon': -73.99496, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-29 13:51:00', 'Trip_Pickup_DateTime': '2009-06-29 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73169, 'End_Lon': -73.700363, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645563, 'Start_Lon': -73.776765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.1, 'Trip_Distance': 11.37, 'Trip_Dropoff_DateTime': '2009-06-20 19:16:00', 'Trip_Pickup_DateTime': '2009-06-20 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781862, 'End_Lon': -73.975585, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764848, 'Start_Lon': -73.966593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-09 20:40:00', 'Trip_Pickup_DateTime': '2009-06-09 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736045, 'End_Lon': -73.9976, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725515, 'Start_Lon': -74.001497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-29 19:10:00', 'Trip_Pickup_DateTime': '2009-06-29 19:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719062, 'End_Lon': -74.00223, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771057, 'Start_Lon': -73.947665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.9, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-29 19:17:00', 'Trip_Pickup_DateTime': '2009-06-29 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775118, 'End_Lon': -73.976697, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757353, 'Start_Lon': -73.985835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-29 23:29:00', 'Trip_Pickup_DateTime': '2009-06-29 23:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774335, 'End_Lon': -73.872157, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755687, 'Start_Lon': -73.973972, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.3, 'Trip_Distance': 10.5, 'Trip_Dropoff_DateTime': '2009-06-30 15:01:00', 'Trip_Pickup_DateTime': '2009-06-30 14:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772067, 'End_Lon': -73.982777, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780563, 'Start_Lon': -73.976608, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-09 19:10:00', 'Trip_Pickup_DateTime': '2009-06-09 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747228, 'End_Lon': -73.971947, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774307, 'Start_Lon': -73.951438, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-09 20:05:00', 'Trip_Pickup_DateTime': '2009-06-09 19:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79034, 'End_Lon': -73.975537, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.646433, 'Start_Lon': -73.78988, 'Tip_Amt': 11.1, 'Tolls_Amt': 4.15, 'Total_Amt': 60.25, 'Trip_Distance': 20.47, 'Trip_Dropoff_DateTime': '2009-06-09 20:10:00', 'Trip_Pickup_DateTime': '2009-06-09 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764357, 'End_Lon': -73.977555, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723127, 'Start_Lon': -73.995878, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-13 02:21:00', 'Trip_Pickup_DateTime': '2009-06-13 02:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743915, 'End_Lon': -73.976758, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773898, 'Start_Lon': -73.978208, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-30 21:35:00', 'Trip_Pickup_DateTime': '2009-06-30 21:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730457, 'End_Lon': -74.000092, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747278, 'Start_Lon': -73.98555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-29 18:59:00', 'Trip_Pickup_DateTime': '2009-06-29 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71464, 'End_Lon': -73.940667, 'Fare_Amt': 15.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70696, 'Start_Lon': -74.002393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.26, 'Trip_Dropoff_DateTime': '2009-06-13 02:20:00', 'Trip_Pickup_DateTime': '2009-06-13 02:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779447, 'End_Lon': -73.95677, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775208, 'Start_Lon': -73.958882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-30 11:31:00', 'Trip_Pickup_DateTime': '2009-06-30 11:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763373, 'End_Lon': -73.971763, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753263, 'Start_Lon': -73.97743, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-29 11:07:00', 'Trip_Pickup_DateTime': '2009-06-29 10:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78991, 'End_Lon': -73.978625, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781813, 'Start_Lon': -73.971698, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-23 16:37:00', 'Trip_Pickup_DateTime': '2009-06-23 16:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764448, 'End_Lon': -73.96146, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780545, 'Start_Lon': -73.949785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-23 18:41:00', 'Trip_Pickup_DateTime': '2009-06-23 18:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768195, 'End_Lon': -73.964993, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772742, 'Start_Lon': -73.981823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-13 12:07:00', 'Trip_Pickup_DateTime': '2009-06-13 12:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767097, 'End_Lon': -73.96775, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761095, 'Start_Lon': -73.970785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-13 12:05:00', 'Trip_Pickup_DateTime': '2009-06-13 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740633, 'End_Lon': -74.005672, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778565, 'Start_Lon': -73.98154, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-24 10:11:00', 'Trip_Pickup_DateTime': '2009-06-24 09:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805082, 'End_Lon': -73.938887, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778617, 'Start_Lon': -73.945065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-23 23:17:00', 'Trip_Pickup_DateTime': '2009-06-23 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779778, 'End_Lon': -73.942188, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76073, 'Start_Lon': -73.97861, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-10 02:07:00', 'Trip_Pickup_DateTime': '2009-06-10 01:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.639268, 'End_Lon': -73.786433, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72432, 'Start_Lon': -73.995948, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 18.75, 'Trip_Dropoff_DateTime': '2009-06-23 17:29:00', 'Trip_Pickup_DateTime': '2009-06-23 16:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751432, 'End_Lon': -73.989865, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786492, 'Start_Lon': -73.952768, 'Tip_Amt': 3.26, 'Tolls_Amt': 0.0, 'Total_Amt': 19.56, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-22 19:43:00', 'Trip_Pickup_DateTime': '2009-06-22 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727683, 'End_Lon': -73.988303, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745288, 'Start_Lon': -73.980345, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-27 20:48:00', 'Trip_Pickup_DateTime': '2009-06-27 20:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7582, 'End_Lon': -73.966763, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77935, 'Start_Lon': -73.944672, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-26 08:09:00', 'Trip_Pickup_DateTime': '2009-06-26 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742502, 'End_Lon': -73.978593, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731277, 'Start_Lon': -73.99941, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-22 19:46:00', 'Trip_Pickup_DateTime': '2009-06-22 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764425, 'End_Lon': -73.993362, 'Fare_Amt': 4.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755298, 'Start_Lon': -73.990975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-22 21:22:00', 'Trip_Pickup_DateTime': '2009-06-22 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738722, 'End_Lon': -73.999917, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723392, 'Start_Lon': -73.982872, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-23 09:27:00', 'Trip_Pickup_DateTime': '2009-06-23 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731925, 'End_Lon': -74.004868, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745412, 'Start_Lon': -73.998887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-20 19:04:00', 'Trip_Pickup_DateTime': '2009-06-20 19:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74061, 'End_Lon': -73.979375, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745892, 'Start_Lon': -73.97822, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-20 22:10:00', 'Trip_Pickup_DateTime': '2009-06-20 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745103, 'End_Lon': -73.99385, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726055, 'Start_Lon': -74.009428, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-24 00:10:00', 'Trip_Pickup_DateTime': '2009-06-24 00:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719337, 'End_Lon': -73.997563, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740477, 'Start_Lon': -73.9945, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-20 21:57:00', 'Trip_Pickup_DateTime': '2009-06-20 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7452, 'End_Lon': -73.976293, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744608, 'Start_Lon': -73.986923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-22 14:53:00', 'Trip_Pickup_DateTime': '2009-06-22 14:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756738, 'End_Lon': -73.961575, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74879, 'Start_Lon': -73.977935, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-24 11:38:00', 'Trip_Pickup_DateTime': '2009-06-24 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703565, 'End_Lon': -74.012875, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720163, 'Start_Lon': -74.010425, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-23 08:26:00', 'Trip_Pickup_DateTime': '2009-06-23 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728588, 'End_Lon': -74.000155, 'Fare_Amt': 31.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728585, 'Start_Lon': -74.00017, 'Tip_Amt': 7.75, 'Tolls_Amt': 0.0, 'Total_Amt': 38.75, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-20 22:00:00', 'Trip_Pickup_DateTime': '2009-06-20 21:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76637, 'End_Lon': -73.9818, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77135, 'Start_Lon': -73.98233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-23 09:58:00', 'Trip_Pickup_DateTime': '2009-06-23 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76074, 'End_Lon': -73.98435, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750173, 'Start_Lon': -73.994973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-23 06:32:00', 'Trip_Pickup_DateTime': '2009-06-23 06:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762858, 'End_Lon': -73.983868, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74938, 'Start_Lon': -73.991958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-22 18:48:00', 'Trip_Pickup_DateTime': '2009-06-22 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766227, 'End_Lon': -73.924178, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773845, 'Start_Lon': -73.87229, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-30 12:10:00', 'Trip_Pickup_DateTime': '2009-06-30 11:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754252, 'End_Lon': -73.965775, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.701912, 'Start_Lon': -74.010937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-23 19:15:00', 'Trip_Pickup_DateTime': '2009-06-23 19:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746322, 'End_Lon': -74.005323, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72202, 'Start_Lon': -73.997112, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-22 16:22:00', 'Trip_Pickup_DateTime': '2009-06-22 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750147, 'End_Lon': -73.9913, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75427, 'Start_Lon': -73.980318, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-28 18:34:00', 'Trip_Pickup_DateTime': '2009-06-28 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714577, 'End_Lon': -74.005817, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717982, 'Start_Lon': -74.010313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-22 11:52:00', 'Trip_Pickup_DateTime': '2009-06-22 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743098, 'End_Lon': -73.962135, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740572, 'Start_Lon': -73.961547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-23 13:04:00', 'Trip_Pickup_DateTime': '2009-06-23 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.641775, 'End_Lon': -73.989708, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736298, 'Start_Lon': -73.988863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.8, 'Trip_Distance': 8.82, 'Trip_Dropoff_DateTime': '2009-06-23 02:39:00', 'Trip_Pickup_DateTime': '2009-06-23 02:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751052, 'End_Lon': -73.998245, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750295, 'Start_Lon': -73.994675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.23, 'Trip_Dropoff_DateTime': '2009-06-24 07:04:00', 'Trip_Pickup_DateTime': '2009-06-24 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.700543, 'End_Lon': -73.989742, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.700405, 'Start_Lon': -73.98952, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-20 20:26:00', 'Trip_Pickup_DateTime': '2009-06-20 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773822, 'End_Lon': -73.948635, 'Fare_Amt': 20.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76913, 'Start_Lon': -73.865303, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 24.25, 'Trip_Distance': 8.43, 'Trip_Dropoff_DateTime': '2009-06-28 17:48:00', 'Trip_Pickup_DateTime': '2009-06-28 17:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757993, 'End_Lon': -73.987363, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728267, 'Start_Lon': -73.990873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-20 20:25:00', 'Trip_Pickup_DateTime': '2009-06-20 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753247, 'End_Lon': -73.977907, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764603, 'Start_Lon': -73.981875, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-23 17:00:00', 'Trip_Pickup_DateTime': '2009-06-23 16:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715123, 'End_Lon': -73.939755, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743862, 'Start_Lon': -73.999413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 5.76, 'Trip_Dropoff_DateTime': '2009-06-10 01:14:00', 'Trip_Pickup_DateTime': '2009-06-10 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751143, 'End_Lon': -73.970982, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767778, 'Start_Lon': -73.965503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-23 15:32:00', 'Trip_Pickup_DateTime': '2009-06-23 15:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.698765, 'End_Lon': -73.807647, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770878, 'Start_Lon': -73.917273, 'Tip_Amt': 5.32, 'Tolls_Amt': 0.0, 'Total_Amt': 26.62, 'Trip_Distance': 9.16, 'Trip_Dropoff_DateTime': '2009-06-23 07:27:00', 'Trip_Pickup_DateTime': '2009-06-23 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748677, 'End_Lon': -73.911827, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74325, 'Start_Lon': -73.917562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-22 23:41:00', 'Trip_Pickup_DateTime': '2009-06-22 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725492, 'End_Lon': -73.999962, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757565, 'Start_Lon': -73.9686, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-22 14:37:00', 'Trip_Pickup_DateTime': '2009-06-22 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719155, 'End_Lon': -73.983127, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72588, 'Start_Lon': -73.992082, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-22 19:02:00', 'Trip_Pickup_DateTime': '2009-06-22 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704853, 'End_Lon': -74.00767, 'Fare_Amt': 36.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769753, 'Start_Lon': -73.86344, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.05, 'Trip_Distance': 16.59, 'Trip_Dropoff_DateTime': '2009-06-22 11:49:00', 'Trip_Pickup_DateTime': '2009-06-22 11:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732357, 'End_Lon': -73.989342, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737618, 'Start_Lon': -74.001893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-27 15:52:00', 'Trip_Pickup_DateTime': '2009-06-27 15:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757798, 'End_Lon': -73.988967, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710118, 'Start_Lon': -74.012893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.87, 'Trip_Dropoff_DateTime': '2009-06-28 15:53:00', 'Trip_Pickup_DateTime': '2009-06-28 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74457, 'End_Lon': -73.975843, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76502, 'Start_Lon': -73.98057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-28 23:17:00', 'Trip_Pickup_DateTime': '2009-06-28 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775337, 'End_Lon': -73.962872, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769413, 'Start_Lon': -73.988183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-23 11:02:00', 'Trip_Pickup_DateTime': '2009-06-23 10:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774003, 'End_Lon': -73.959578, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783117, 'Start_Lon': -73.948007, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-22 14:23:00', 'Trip_Pickup_DateTime': '2009-06-22 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758995, 'End_Lon': -73.988287, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747858, 'Start_Lon': -73.992308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-09 23:58:00', 'Trip_Pickup_DateTime': '2009-06-09 23:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763208, 'End_Lon': -73.981888, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751265, 'Start_Lon': -73.994028, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-27 15:19:00', 'Trip_Pickup_DateTime': '2009-06-27 15:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788567, 'End_Lon': -73.97906, 'Fare_Amt': 14.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731415, 'Start_Lon': -73.990462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.11, 'Trip_Dropoff_DateTime': '2009-06-28 23:01:00', 'Trip_Pickup_DateTime': '2009-06-28 22:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799227, 'End_Lon': -73.968593, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.820347, 'Start_Lon': -73.954997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-28 07:04:00', 'Trip_Pickup_DateTime': '2009-06-28 06:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747453, 'End_Lon': -73.986135, 'Fare_Amt': 2.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748002, 'Start_Lon': -73.987772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.1, 'Trip_Dropoff_DateTime': '2009-06-27 19:06:00', 'Trip_Pickup_DateTime': '2009-06-27 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775552, 'End_Lon': -73.982643, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769495, 'Start_Lon': -73.991518, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-13 10:40:00', 'Trip_Pickup_DateTime': '2009-06-13 10:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.668085, 'End_Lon': -73.74429, 'Fare_Amt': 37.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754633, 'Start_Lon': -73.968753, 'Tip_Amt': 9.55, 'Tolls_Amt': 4.15, 'Total_Amt': 51.9, 'Trip_Distance': 17.4, 'Trip_Dropoff_DateTime': '2009-06-10 00:27:00', 'Trip_Pickup_DateTime': '2009-06-10 00:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.802155, 'End_Lon': -73.969633, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78113, 'Start_Lon': -73.981563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-22 17:34:00', 'Trip_Pickup_DateTime': '2009-06-22 17:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748852, 'End_Lon': -73.987987, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740458, 'Start_Lon': -73.986938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-29 14:01:00', 'Trip_Pickup_DateTime': '2009-06-29 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707233, 'End_Lon': -74.00773, 'Fare_Amt': 10.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693317, 'Start_Lon': -73.990568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-15 12:05:00', 'Trip_Pickup_DateTime': '2009-06-15 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72019, 'End_Lon': -73.988323, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725128, 'Start_Lon': -73.995528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-27 16:33:00', 'Trip_Pickup_DateTime': '2009-06-27 16:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748172, 'End_Lon': -73.988508, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742287, 'Start_Lon': -73.997135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-09 23:48:00', 'Trip_Pickup_DateTime': '2009-06-09 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.792382, 'End_Lon': -73.973342, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78006, 'Start_Lon': -73.959473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-28 17:20:00', 'Trip_Pickup_DateTime': '2009-06-28 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782928, 'End_Lon': -73.951615, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751857, 'Start_Lon': -73.979853, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-22 23:16:00', 'Trip_Pickup_DateTime': '2009-06-22 23:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.645802, 'End_Lon': -73.776293, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73343, 'Start_Lon': -73.981252, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.23, 'Trip_Dropoff_DateTime': '2009-06-13 10:02:00', 'Trip_Pickup_DateTime': '2009-06-13 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78595, 'End_Lon': -73.97253, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.806445, 'Start_Lon': -73.965198, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-09 23:39:00', 'Trip_Pickup_DateTime': '2009-06-09 23:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785713, 'End_Lon': -73.950648, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78175, 'Start_Lon': -73.948895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-25 01:42:00', 'Trip_Pickup_DateTime': '2009-06-25 01:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.729038, 'End_Lon': -74.01121, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740018, 'Start_Lon': -74.00308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-09 22:36:00', 'Trip_Pickup_DateTime': '2009-06-09 22:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.87067, 'End_Lon': -73.883128, 'Fare_Amt': 55.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774185, 'Start_Lon': -73.874622, 'Tip_Amt': 16.89, 'Tolls_Amt': 4.15, 'Total_Amt': 77.34, 'Trip_Distance': 13.79, 'Trip_Dropoff_DateTime': '2009-06-26 17:50:00', 'Trip_Pickup_DateTime': '2009-06-26 16:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759547, 'End_Lon': -73.986522, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774188, 'Start_Lon': -73.969773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.06, 'Trip_Dropoff_DateTime': '2009-06-26 21:38:00', 'Trip_Pickup_DateTime': '2009-06-26 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7482, 'End_Lon': -74.007305, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741657, 'Start_Lon': -73.993857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-27 15:34:00', 'Trip_Pickup_DateTime': '2009-06-27 15:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759493, 'End_Lon': -73.983198, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762897, 'Start_Lon': -73.96548, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-26 16:12:00', 'Trip_Pickup_DateTime': '2009-06-26 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706348, 'End_Lon': -74.010295, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706295, 'Start_Lon': -74.0101, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.7, 'Trip_Dropoff_DateTime': '2009-06-28 00:33:00', 'Trip_Pickup_DateTime': '2009-06-28 00:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786195, 'End_Lon': -73.952158, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769537, 'Start_Lon': -73.981797, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-09 23:21:00', 'Trip_Pickup_DateTime': '2009-06-09 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711047, 'End_Lon': -74.017178, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761552, 'Start_Lon': -73.986838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.9, 'Trip_Dropoff_DateTime': '2009-06-27 00:00:00', 'Trip_Pickup_DateTime': '2009-06-26 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757378, 'End_Lon': -73.971488, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765462, 'Start_Lon': -73.96807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-26 18:19:00', 'Trip_Pickup_DateTime': '2009-06-26 18:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.89204, 'End_Lon': -73.897153, 'Fare_Amt': 27.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763663, 'Start_Lon': -73.969485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.8, 'Trip_Distance': 11.82, 'Trip_Dropoff_DateTime': '2009-06-09 22:49:00', 'Trip_Pickup_DateTime': '2009-06-09 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7529, 'End_Lon': -73.984503, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76864, 'Start_Lon': -73.952633, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-28 01:11:00', 'Trip_Pickup_DateTime': '2009-06-28 00:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761823, 'End_Lon': -73.982727, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751227, 'Start_Lon': -73.994113, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-22 12:14:00', 'Trip_Pickup_DateTime': '2009-06-22 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751522, 'End_Lon': -73.947662, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75266, 'Start_Lon': -73.951773, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-25 01:15:00', 'Trip_Pickup_DateTime': '2009-06-25 01:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.711595, 'End_Lon': -74.017067, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743865, 'Start_Lon': -73.992968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 3.82, 'Trip_Dropoff_DateTime': '2009-06-28 16:56:00', 'Trip_Pickup_DateTime': '2009-06-28 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7577, 'End_Lon': -73.99501, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750965, 'Start_Lon': -74.005928, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-22 15:30:00', 'Trip_Pickup_DateTime': '2009-06-22 15:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730735, 'End_Lon': -73.992757, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743907, 'Start_Lon': -74.006393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-09 22:30:00', 'Trip_Pickup_DateTime': '2009-06-09 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.706587, 'End_Lon': -74.006802, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753437, 'Start_Lon': -73.977922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.92, 'Trip_Dropoff_DateTime': '2009-06-09 19:46:00', 'Trip_Pickup_DateTime': '2009-06-09 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725953, 'End_Lon': -73.99751, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738637, 'Start_Lon': -73.991663, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-14 19:32:00', 'Trip_Pickup_DateTime': '2009-06-14 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751062, 'End_Lon': -74.004075, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774992, 'Start_Lon': -73.984402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-26 10:30:00', 'Trip_Pickup_DateTime': '2009-06-26 10:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75846, 'End_Lon': -73.974483, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.728482, 'Start_Lon': -73.9999, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-22 02:08:21', 'Trip_Pickup_DateTime': '2009-06-22 01:55:01', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.730782, 'End_Lon': -73.949672, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730297, 'Start_Lon': -73.949922, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.4, 'Trip_Distance': 0.12, 'Trip_Dropoff_DateTime': '2009-06-09 21:42:00', 'Trip_Pickup_DateTime': '2009-06-09 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75572, 'End_Lon': -73.971967, 'Fare_Amt': 5.7, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765152, 'Start_Lon': -73.96148, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-13 09:12:00', 'Trip_Pickup_DateTime': '2009-06-13 09:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75156, 'End_Lon': -73.990965, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739602, 'Start_Lon': -73.982938, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-26 15:44:00', 'Trip_Pickup_DateTime': '2009-06-26 15:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765778, 'End_Lon': -73.958305, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73758, 'Start_Lon': -74.004772, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.2, 'Trip_Distance': 4.43, 'Trip_Dropoff_DateTime': '2009-06-27 03:47:00', 'Trip_Pickup_DateTime': '2009-06-27 03:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70926, 'End_Lon': -73.94014, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.685182, 'Start_Lon': -73.991377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.72, 'Trip_Dropoff_DateTime': '2009-06-13 04:25:00', 'Trip_Pickup_DateTime': '2009-06-13 04:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755313, 'End_Lon': -73.981845, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753145, 'Start_Lon': -74.003813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-27 09:58:00', 'Trip_Pickup_DateTime': '2009-06-27 09:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77482, 'End_Lon': -73.953975, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763773, 'Start_Lon': -73.971132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-27 08:06:00', 'Trip_Pickup_DateTime': '2009-06-27 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770912, 'End_Lon': -73.959592, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752807, 'Start_Lon': -73.975135, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-26 20:07:00', 'Trip_Pickup_DateTime': '2009-06-26 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753268, 'End_Lon': -73.977738, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762133, 'Start_Lon': -73.977562, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-09 23:04:00', 'Trip_Pickup_DateTime': '2009-06-09 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752683, 'End_Lon': -74.0074, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742273, 'Start_Lon': -73.98354, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-28 17:00:00', 'Trip_Pickup_DateTime': '2009-06-28 16:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737152, 'End_Lon': -73.990463, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761155, 'Start_Lon': -73.989038, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-25 19:05:00', 'Trip_Pickup_DateTime': '2009-06-25 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73679, 'End_Lon': -74.006442, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738313, 'Start_Lon': -73.991655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-26 14:25:00', 'Trip_Pickup_DateTime': '2009-06-26 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777075, 'End_Lon': -73.992107, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76091, 'Start_Lon': -74.001828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-09 22:32:00', 'Trip_Pickup_DateTime': '2009-06-09 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755108, 'End_Lon': -73.974795, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738375, 'Start_Lon': -73.98766, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-23 09:04:00', 'Trip_Pickup_DateTime': '2009-06-23 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731148, 'End_Lon': -73.985852, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707723, 'Start_Lon': -74.004313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-27 20:47:00', 'Trip_Pickup_DateTime': '2009-06-27 20:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739277, 'End_Lon': -73.977905, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753485, 'Start_Lon': -73.979402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-26 19:34:00', 'Trip_Pickup_DateTime': '2009-06-26 19:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731708, 'End_Lon': -73.989423, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749243, 'Start_Lon': -73.984185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-28 00:02:00', 'Trip_Pickup_DateTime': '2009-06-27 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756907, 'End_Lon': -73.985283, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758703, 'Start_Lon': -73.98676, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-27 11:14:00', 'Trip_Pickup_DateTime': '2009-06-27 11:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786628, 'End_Lon': -73.972388, 'Fare_Amt': 4.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785135, 'Start_Lon': -73.980618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-25 20:07:00', 'Trip_Pickup_DateTime': '2009-06-25 20:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744287, 'End_Lon': -73.90558, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734465, 'Start_Lon': -73.899117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.05, 'Trip_Dropoff_DateTime': '2009-06-22 23:08:00', 'Trip_Pickup_DateTime': '2009-06-22 22:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740442, 'End_Lon': -73.982062, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736263, 'Start_Lon': -73.991003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-22 23:35:00', 'Trip_Pickup_DateTime': '2009-06-22 23:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778155, 'End_Lon': -73.982208, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735692, 'Start_Lon': -74.005987, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-27 13:09:00', 'Trip_Pickup_DateTime': '2009-06-27 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78675, 'End_Lon': -73.972733, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768978, 'Start_Lon': -73.96719, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-25 13:37:00', 'Trip_Pickup_DateTime': '2009-06-25 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.11, 'Trip_Dropoff_DateTime': '2009-06-22 23:51:00', 'Trip_Pickup_DateTime': '2009-06-22 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760593, 'End_Lon': -73.980953, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72538, 'Start_Lon': -74.004047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.78, 'Trip_Dropoff_DateTime': '2009-06-26 21:51:00', 'Trip_Pickup_DateTime': '2009-06-26 21:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733755, 'End_Lon': -73.988005, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715045, 'Start_Lon': -74.008242, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-28 03:00:00', 'Trip_Pickup_DateTime': '2009-06-28 02:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.688108, 'End_Lon': -74.001295, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743595, 'Start_Lon': -73.995675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.8, 'Trip_Distance': 5.08, 'Trip_Dropoff_DateTime': '2009-06-25 22:24:00', 'Trip_Pickup_DateTime': '2009-06-25 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.810558, 'End_Lon': -73.962095, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.801587, 'Start_Lon': -73.967822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-26 09:08:00', 'Trip_Pickup_DateTime': '2009-06-26 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745102, 'End_Lon': -74.002063, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727275, 'Start_Lon': -74.007375, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-23 18:25:00', 'Trip_Pickup_DateTime': '2009-06-23 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716358, 'End_Lon': -74.004175, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727208, 'Start_Lon': -73.991833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-26 22:21:00', 'Trip_Pickup_DateTime': '2009-06-26 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740978, 'End_Lon': -73.980288, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74311, 'Start_Lon': -73.996463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-25 13:07:00', 'Trip_Pickup_DateTime': '2009-06-25 12:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749928, 'End_Lon': -73.991527, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787653, 'Start_Lon': -73.976758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-13 14:44:00', 'Trip_Pickup_DateTime': '2009-06-13 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77063, 'End_Lon': -73.964435, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730233, 'Start_Lon': -74.006833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.29, 'Trip_Dropoff_DateTime': '2009-06-10 08:02:00', 'Trip_Pickup_DateTime': '2009-06-10 07:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741572, 'End_Lon': -73.989627, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760567, 'Start_Lon': -73.975752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 0.16, 'Trip_Dropoff_DateTime': '2009-06-22 18:24:00', 'Trip_Pickup_DateTime': '2009-06-22 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736862, 'End_Lon': -73.992642, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754588, 'Start_Lon': -73.9843, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-23 22:38:00', 'Trip_Pickup_DateTime': '2009-06-23 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743468, 'End_Lon': -73.981837, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743468, 'Start_Lon': -73.981837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-13 13:40:00', 'Trip_Pickup_DateTime': '2009-06-13 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763952, 'End_Lon': -73.981732, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729678, 'Start_Lon': -73.988308, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-26 22:24:00', 'Trip_Pickup_DateTime': '2009-06-26 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734768, 'End_Lon': -73.990393, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72657, 'Start_Lon': -73.97929, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-26 19:27:00', 'Trip_Pickup_DateTime': '2009-06-26 19:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702153, 'End_Lon': -74.011247, 'Fare_Amt': 18.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783307, 'Start_Lon': -73.950635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.5, 'Trip_Distance': 7.73, 'Trip_Dropoff_DateTime': '2009-06-10 08:28:00', 'Trip_Pickup_DateTime': '2009-06-10 08:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.608693, 'End_Lon': -73.99758, 'Fare_Amt': 30.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736102, 'Start_Lon': -73.985448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 12.22, 'Trip_Dropoff_DateTime': '2009-06-23 01:39:00', 'Trip_Pickup_DateTime': '2009-06-23 01:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749083, 'End_Lon': -73.992142, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744582, 'Start_Lon': -73.978877, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-13 14:46:00', 'Trip_Pickup_DateTime': '2009-06-13 14:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762818, 'End_Lon': -73.973058, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750007, 'Start_Lon': -73.991567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-25 12:28:00', 'Trip_Pickup_DateTime': '2009-06-25 12:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701957, 'End_Lon': -74.010135, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75117, 'Start_Lon': -73.975772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 5.13, 'Trip_Dropoff_DateTime': '2009-06-29 10:01:00', 'Trip_Pickup_DateTime': '2009-06-29 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749733, 'End_Lon': -73.991773, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770515, 'Start_Lon': -73.972237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-13 14:16:00', 'Trip_Pickup_DateTime': '2009-06-13 13:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76758, 'End_Lon': -73.982375, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763905, 'Start_Lon': -73.973777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-27 17:01:00', 'Trip_Pickup_DateTime': '2009-06-27 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761678, 'End_Lon': -73.982883, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757365, 'Start_Lon': -73.975483, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-10 08:45:00', 'Trip_Pickup_DateTime': '2009-06-10 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766592, 'End_Lon': -73.953958, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785775, 'Start_Lon': -73.951075, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-25 12:30:00', 'Trip_Pickup_DateTime': '2009-06-25 12:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751157, 'End_Lon': -73.991122, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813772, 'Start_Lon': -73.959823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.99, 'Trip_Dropoff_DateTime': '2009-06-27 00:51:00', 'Trip_Pickup_DateTime': '2009-06-27 00:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771183, 'End_Lon': -73.959817, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769737, 'Start_Lon': -73.964773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.36, 'Trip_Dropoff_DateTime': '2009-06-13 13:54:00', 'Trip_Pickup_DateTime': '2009-06-13 13:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765843, 'End_Lon': -73.991003, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743413, 'Start_Lon': -74.00186, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-25 23:47:00', 'Trip_Pickup_DateTime': '2009-06-25 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772835, 'End_Lon': -73.98234, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.818667, 'Start_Lon': -73.956298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-24 21:26:00', 'Trip_Pickup_DateTime': '2009-06-24 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.687113, 'End_Lon': -73.985037, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72391, 'Start_Lon': -74.00328, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-23 19:15:00', 'Trip_Pickup_DateTime': '2009-06-23 18:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784303, 'End_Lon': -73.9831, 'Fare_Amt': 24.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774138, 'Start_Lon': -73.874547, 'Tip_Amt': 5.08, 'Tolls_Amt': 4.15, 'Total_Amt': 34.63, 'Trip_Distance': 10.01, 'Trip_Dropoff_DateTime': '2009-06-24 21:47:00', 'Trip_Pickup_DateTime': '2009-06-24 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764175, 'End_Lon': -73.970608, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704138, 'Start_Lon': -74.006985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.19, 'Trip_Dropoff_DateTime': '2009-06-25 08:05:00', 'Trip_Pickup_DateTime': '2009-06-25 07:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758898, 'End_Lon': -73.97171, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-11 00:00:00', 'Trip_Pickup_DateTime': '2009-06-10 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747528, 'End_Lon': -73.994025, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768162, 'Start_Lon': -73.98079, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-28 07:46:00', 'Trip_Pickup_DateTime': '2009-06-28 07:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773603, 'End_Lon': -73.981272, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761205, 'Start_Lon': -73.965273, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-23 14:18:00', 'Trip_Pickup_DateTime': '2009-06-23 14:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.643823, 'End_Lon': -73.783222, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750777, 'Start_Lon': -73.973558, 'Tip_Amt': 9.0, 'Tolls_Amt': 5.0, 'Total_Amt': 59.0, 'Trip_Distance': 15.28, 'Trip_Dropoff_DateTime': '2009-06-24 18:53:00', 'Trip_Pickup_DateTime': '2009-06-24 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77433, 'End_Lon': -73.872725, 'Fare_Amt': 31.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762285, 'Start_Lon': -73.97899, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 32.3, 'Trip_Distance': 11.33, 'Trip_Dropoff_DateTime': '2009-06-24 19:33:00', 'Trip_Pickup_DateTime': '2009-06-24 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755557, 'End_Lon': -73.989248, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779152, 'Start_Lon': -73.962338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-25 16:48:00', 'Trip_Pickup_DateTime': '2009-06-25 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722902, 'End_Lon': -74.003298, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720705, 'Start_Lon': -73.997627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-24 22:10:00', 'Trip_Pickup_DateTime': '2009-06-24 22:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747208, 'End_Lon': -73.982718, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770495, 'Start_Lon': -73.964063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-24 15:21:00', 'Trip_Pickup_DateTime': '2009-06-24 15:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763303, 'End_Lon': -73.992795, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745923, 'Start_Lon': -73.995617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-27 00:02:00', 'Trip_Pickup_DateTime': '2009-06-26 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769392, 'End_Lon': -73.96506, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763443, 'Start_Lon': -73.971798, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-24 11:58:00', 'Trip_Pickup_DateTime': '2009-06-24 11:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757183, 'End_Lon': -73.979165, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767217, 'Start_Lon': -73.98173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-13 12:17:00', 'Trip_Pickup_DateTime': '2009-06-13 12:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73143, 'End_Lon': -74.002093, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738175, 'Start_Lon': -74.006487, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-24 11:58:00', 'Trip_Pickup_DateTime': '2009-06-24 11:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740322, 'End_Lon': -73.984202, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752558, 'Start_Lon': -73.97812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-24 19:58:00', 'Trip_Pickup_DateTime': '2009-06-24 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740607, 'End_Lon': -74.005562, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737113, 'Start_Lon': -74.002042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-27 22:01:00', 'Trip_Pickup_DateTime': '2009-06-27 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754382, 'End_Lon': -73.984577, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747102, 'Start_Lon': -73.981392, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-24 08:44:00', 'Trip_Pickup_DateTime': '2009-06-24 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707207, 'End_Lon': -74.004428, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727825, 'Start_Lon': -73.99498, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-24 13:14:00', 'Trip_Pickup_DateTime': '2009-06-24 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736103, 'End_Lon': -73.979207, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.716468, 'Start_Lon': -74.009178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-10 06:54:00', 'Trip_Pickup_DateTime': '2009-06-10 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775735, 'End_Lon': -73.96352, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723768, 'Start_Lon': -73.985278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.49, 'Trip_Dropoff_DateTime': '2009-06-30 15:19:00', 'Trip_Pickup_DateTime': '2009-06-30 14:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753427, 'End_Lon': -73.98936, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760857, 'Start_Lon': -73.994393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-24 18:28:00', 'Trip_Pickup_DateTime': '2009-06-24 18:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753152, 'End_Lon': -73.980115, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757198, 'Start_Lon': -73.98579, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-24 19:47:00', 'Trip_Pickup_DateTime': '2009-06-24 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76045, 'End_Lon': -73.994888, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747815, 'Start_Lon': -73.996615, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-24 19:45:00', 'Trip_Pickup_DateTime': '2009-06-24 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723468, 'End_Lon': -73.99082, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753, 'Start_Lon': -73.966933, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.61, 'Trip_Dropoff_DateTime': '2009-06-25 21:24:00', 'Trip_Pickup_DateTime': '2009-06-25 21:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.710682, 'End_Lon': -73.948863, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710682, 'Start_Lon': -73.948863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-25 00:23:00', 'Trip_Pickup_DateTime': '2009-06-25 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741043, 'End_Lon': -73.985307, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740945, 'Start_Lon': -73.998242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-23 14:41:00', 'Trip_Pickup_DateTime': '2009-06-23 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75808, 'End_Lon': -73.985845, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7429, 'Start_Lon': -73.988557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-24 18:12:00', 'Trip_Pickup_DateTime': '2009-06-24 17:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734438, 'End_Lon': -73.999825, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724123, 'Start_Lon': -73.97883, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-24 20:29:00', 'Trip_Pickup_DateTime': '2009-06-24 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-27 00:06:00', 'Trip_Pickup_DateTime': '2009-06-26 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778627, 'End_Lon': -73.953963, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769765, 'Start_Lon': -73.960687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-23 20:37:00', 'Trip_Pickup_DateTime': '2009-06-23 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743448, 'End_Lon': -74.003545, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79737, 'Start_Lon': -73.970007, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.22, 'Trip_Dropoff_DateTime': '2009-06-23 22:38:00', 'Trip_Pickup_DateTime': '2009-06-23 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762223, 'End_Lon': -73.95924, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747793, 'Start_Lon': -73.97071, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-26 23:31:00', 'Trip_Pickup_DateTime': '2009-06-26 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718095, 'End_Lon': -73.988377, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.700657, 'Start_Lon': -73.990587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-27 15:06:00', 'Trip_Pickup_DateTime': '2009-06-27 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720132, 'End_Lon': -73.993278, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72704, 'Start_Lon': -73.988765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-23 21:59:00', 'Trip_Pickup_DateTime': '2009-06-23 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756903, 'End_Lon': -73.977997, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738783, 'Start_Lon': -74.007695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-10 07:39:00', 'Trip_Pickup_DateTime': '2009-06-10 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722875, 'End_Lon': -73.998398, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728093, 'Start_Lon': -73.987958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-13 12:48:00', 'Trip_Pickup_DateTime': '2009-06-13 12:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789237, 'End_Lon': -73.966867, 'Fare_Amt': 6.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774338, 'Start_Lon': -73.981968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-23 21:26:00', 'Trip_Pickup_DateTime': '2009-06-23 21:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721345, 'End_Lon': -74.009825, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78376, 'Start_Lon': -73.974143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 5.17, 'Trip_Dropoff_DateTime': '2009-06-24 06:36:00', 'Trip_Pickup_DateTime': '2009-06-24 06:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725582, 'End_Lon': -74.000287, 'Fare_Amt': 24.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.704693, 'Start_Lon': -74.0167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.5, 'Trip_Distance': 7.79, 'Trip_Dropoff_DateTime': '2009-06-13 12:38:00', 'Trip_Pickup_DateTime': '2009-06-13 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738853, 'End_Lon': -74.005735, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758555, 'Start_Lon': -73.97736, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-27 13:47:00', 'Trip_Pickup_DateTime': '2009-06-27 13:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777272, 'End_Lon': -73.97689, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751323, 'Start_Lon': -73.987785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-24 21:37:00', 'Trip_Pickup_DateTime': '2009-06-24 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720077, 'End_Lon': -73.98832, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739805, 'Start_Lon': -74.002782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-26 22:14:00', 'Trip_Pickup_DateTime': '2009-06-26 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73984, 'End_Lon': -73.990915, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758, 'Start_Lon': -73.97366, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-24 11:17:00', 'Trip_Pickup_DateTime': '2009-06-24 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802187, 'End_Lon': -73.969667, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786087, 'Start_Lon': -73.98136, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-23 14:06:00', 'Trip_Pickup_DateTime': '2009-06-23 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762725, 'End_Lon': -73.926873, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761552, 'Start_Lon': -73.969915, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-26 00:36:00', 'Trip_Pickup_DateTime': '2009-06-26 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740103, 'End_Lon': -74.005567, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779527, 'Start_Lon': -73.97796, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.75, 'Trip_Dropoff_DateTime': '2009-06-26 18:03:00', 'Trip_Pickup_DateTime': '2009-06-26 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755597, 'End_Lon': -73.972367, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777622, 'Start_Lon': -73.95103, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.32, 'Trip_Dropoff_DateTime': '2009-06-26 21:04:00', 'Trip_Pickup_DateTime': '2009-06-26 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718742, 'End_Lon': -73.983337, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72308, 'Start_Lon': -73.98945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-10 02:37:00', 'Trip_Pickup_DateTime': '2009-06-10 02:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73048, 'End_Lon': -73.98057, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749773, 'Start_Lon': -73.993498, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-13 11:58:00', 'Trip_Pickup_DateTime': '2009-06-13 11:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749958, 'End_Lon': -73.99156, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.743043, 'Start_Lon': -73.992649, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-24 09:43:03', 'Trip_Pickup_DateTime': '2009-06-24 09:40:19', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.745967, 'End_Lon': -73.955392, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769875, 'Start_Lon': -73.957753, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 17.95, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-30 23:42:00', 'Trip_Pickup_DateTime': '2009-06-30 23:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759395, 'End_Lon': -73.972912, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740107, 'Start_Lon': -73.994808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-24 15:10:00', 'Trip_Pickup_DateTime': '2009-06-24 14:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.636105, 'End_Lon': -73.973143, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.636088, 'Start_Lon': -73.973923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.04, 'Trip_Dropoff_DateTime': '2009-06-26 14:27:00', 'Trip_Pickup_DateTime': '2009-06-26 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742905, 'End_Lon': -73.984838, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752512, 'Start_Lon': -73.965468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-23 18:57:00', 'Trip_Pickup_DateTime': '2009-06-23 18:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743647, 'End_Lon': -73.982918, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751958, 'Start_Lon': -73.975802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-25 09:21:00', 'Trip_Pickup_DateTime': '2009-06-25 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763777, 'End_Lon': -73.998683, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749558, 'Start_Lon': -73.984767, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-13 11:49:00', 'Trip_Pickup_DateTime': '2009-06-13 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749982, 'End_Lon': -73.991305, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.756985, 'Start_Lon': -73.984271, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-30 06:34:20', 'Trip_Pickup_DateTime': '2009-06-30 06:31:09', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.795148, 'End_Lon': -73.965247, 'Fare_Amt': 30.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773528, 'Start_Lon': -73.870515, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 35.15, 'Trip_Distance': 12.69, 'Trip_Dropoff_DateTime': '2009-06-10 01:15:00', 'Trip_Pickup_DateTime': '2009-06-10 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745363, 'End_Lon': -73.956905, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743885, 'Start_Lon': -73.973617, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-28 03:22:00', 'Trip_Pickup_DateTime': '2009-06-28 03:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774588, 'End_Lon': -73.983768, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751192, 'Start_Lon': -73.994045, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-23 08:30:00', 'Trip_Pickup_DateTime': '2009-06-23 08:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784552, 'End_Lon': -73.9577, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765247, 'Start_Lon': -73.975197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-29 17:22:00', 'Trip_Pickup_DateTime': '2009-06-29 17:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761042, 'End_Lon': -73.976887, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74748, 'Start_Lon': -73.980733, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-19 18:24:00', 'Trip_Pickup_DateTime': '2009-06-19 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785717, 'End_Lon': -73.95084, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758615, 'Start_Lon': -73.97217, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-23 22:39:00', 'Trip_Pickup_DateTime': '2009-06-23 22:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765755, 'End_Lon': -73.979837, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779665, 'Start_Lon': -73.961755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-08 19:53:00', 'Trip_Pickup_DateTime': '2009-06-08 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752198, 'End_Lon': -73.97311, 'Fare_Amt': 11.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77705, 'Start_Lon': -73.977782, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 2.39, 'Trip_Dropoff_DateTime': '2009-06-10 10:34:00', 'Trip_Pickup_DateTime': '2009-06-10 10:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77619, 'End_Lon': -73.946757, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776453, 'Start_Lon': -73.946533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.06, 'Trip_Dropoff_DateTime': '2009-06-23 10:27:00', 'Trip_Pickup_DateTime': '2009-06-23 10:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740037, 'End_Lon': -74.00315, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788743, 'Start_Lon': -73.978018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.13, 'Trip_Dropoff_DateTime': '2009-06-12 05:57:00', 'Trip_Pickup_DateTime': '2009-06-12 05:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757588, 'End_Lon': -73.985865, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758427, 'Start_Lon': -73.974585, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-27 19:46:00', 'Trip_Pickup_DateTime': '2009-06-27 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767268, 'End_Lon': -73.990007, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757328, 'Start_Lon': -73.989803, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-23 17:49:00', 'Trip_Pickup_DateTime': '2009-06-23 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74895, 'End_Lon': -74.008213, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748402, 'Start_Lon': -73.973242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.54, 'Trip_Dropoff_DateTime': '2009-06-24 20:21:00', 'Trip_Pickup_DateTime': '2009-06-24 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728163, 'End_Lon': -73.909133, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71151, 'Start_Lon': -73.980945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.85, 'Trip_Dropoff_DateTime': '2009-06-27 21:57:00', 'Trip_Pickup_DateTime': '2009-06-27 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764275, 'End_Lon': -73.972267, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751403, 'Start_Lon': -73.97648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-25 09:24:00', 'Trip_Pickup_DateTime': '2009-06-25 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793997, 'End_Lon': -73.972408, 'Fare_Amt': 16.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73488, 'Start_Lon': -73.979865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 6.25, 'Trip_Dropoff_DateTime': '2009-06-28 11:00:00', 'Trip_Pickup_DateTime': '2009-06-28 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743827, 'End_Lon': -74.006098, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727672, 'Start_Lon': -73.982453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-25 01:20:00', 'Trip_Pickup_DateTime': '2009-06-25 01:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789655, 'End_Lon': -73.966057, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779363, 'Start_Lon': -73.984885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-28 10:11:00', 'Trip_Pickup_DateTime': '2009-06-28 10:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75592, 'End_Lon': -73.979838, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750658, 'Start_Lon': -73.987717, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-25 10:24:00', 'Trip_Pickup_DateTime': '2009-06-25 10:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765968, 'End_Lon': -73.959633, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778325, 'Start_Lon': -73.952938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-24 22:22:00', 'Trip_Pickup_DateTime': '2009-06-24 22:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74731, 'End_Lon': -73.9735, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753193, 'Start_Lon': -73.992805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-25 07:28:00', 'Trip_Pickup_DateTime': '2009-06-25 07:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797297, 'End_Lon': -73.938443, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777548, 'Start_Lon': -73.948753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-27 00:27:00', 'Trip_Pickup_DateTime': '2009-06-27 00:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772892, 'End_Lon': -73.946372, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762863, 'Start_Lon': -73.974505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-23 13:14:00', 'Trip_Pickup_DateTime': '2009-06-23 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782035, 'End_Lon': -73.971998, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77409, 'Start_Lon': -73.874535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.3, 'Trip_Distance': 9.4, 'Trip_Dropoff_DateTime': '2009-06-13 15:44:00', 'Trip_Pickup_DateTime': '2009-06-13 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750737, 'End_Lon': -73.99063, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751892, 'Start_Lon': -73.977087, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-24 12:26:00', 'Trip_Pickup_DateTime': '2009-06-24 12:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75072, 'End_Lon': -73.885318, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723118, 'Start_Lon': -74.00518, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.6, 'Trip_Distance': 8.98, 'Trip_Dropoff_DateTime': '2009-06-28 03:47:00', 'Trip_Pickup_DateTime': '2009-06-28 03:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.9, 'Trip_Dropoff_DateTime': '2009-06-23 11:55:00', 'Trip_Pickup_DateTime': '2009-06-23 11:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728153, 'End_Lon': -73.894522, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743888, 'Start_Lon': -73.985975, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 19.55, 'Trip_Distance': 5.92, 'Trip_Dropoff_DateTime': '2009-06-24 23:26:00', 'Trip_Pickup_DateTime': '2009-06-24 23:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753313, 'End_Lon': -73.981363, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760205, 'Start_Lon': -73.973522, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-13 16:32:00', 'Trip_Pickup_DateTime': '2009-06-13 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765357, 'End_Lon': -73.980582, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706297, 'Start_Lon': -74.014183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.96, 'Trip_Dropoff_DateTime': '2009-06-28 07:26:00', 'Trip_Pickup_DateTime': '2009-06-28 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735533, 'End_Lon': -73.952902, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718725, 'Start_Lon': -73.958927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-27 18:24:00', 'Trip_Pickup_DateTime': '2009-06-27 18:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766322, 'End_Lon': -73.9838, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77466, 'Start_Lon': -73.957055, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-23 11:36:00', 'Trip_Pickup_DateTime': '2009-06-23 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742283, 'End_Lon': -73.984538, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734803, 'Start_Lon': -74.004432, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-27 19:38:00', 'Trip_Pickup_DateTime': '2009-06-27 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747513, 'End_Lon': -73.987135, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745913, 'Start_Lon': -73.998018, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-13 16:38:00', 'Trip_Pickup_DateTime': '2009-06-13 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767215, 'End_Lon': -73.953497, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758332, 'Start_Lon': -73.970092, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-13 16:28:00', 'Trip_Pickup_DateTime': '2009-06-13 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727415, 'End_Lon': -73.982597, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752508, 'Start_Lon': -73.982062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-26 13:00:00', 'Trip_Pickup_DateTime': '2009-06-26 12:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739013, 'End_Lon': -74.006417, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775812, 'Start_Lon': -73.95333, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-27 00:08:00', 'Trip_Pickup_DateTime': '2009-06-26 23:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74302, 'End_Lon': -73.989033, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762335, 'Start_Lon': -73.98433, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-27 23:53:00', 'Trip_Pickup_DateTime': '2009-06-27 23:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742037, 'End_Lon': -74.004003, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71971, 'Start_Lon': -74.005295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 2.03, 'Trip_Dropoff_DateTime': '2009-06-22 22:45:00', 'Trip_Pickup_DateTime': '2009-06-22 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752868, 'End_Lon': -73.985528, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770005, 'Start_Lon': -73.863317, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.25, 'Trip_Distance': 9.15, 'Trip_Dropoff_DateTime': '2009-06-22 19:49:00', 'Trip_Pickup_DateTime': '2009-06-22 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715172, 'End_Lon': -74.01581, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.702735, 'Start_Lon': -74.011267, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.8, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-24 20:24:00', 'Trip_Pickup_DateTime': '2009-06-24 20:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760012, 'End_Lon': -73.988348, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756268, 'Start_Lon': -73.972202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-27 11:41:00', 'Trip_Pickup_DateTime': '2009-06-27 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728325, 'End_Lon': -74.007223, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72008, 'Start_Lon': -74.002885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-23 06:50:00', 'Trip_Pickup_DateTime': '2009-06-23 06:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73456, 'End_Lon': -74.00841, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784617, 'Start_Lon': -73.973715, 'Tip_Amt': 2.1, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 4.75, 'Trip_Dropoff_DateTime': '2009-06-24 10:09:00', 'Trip_Pickup_DateTime': '2009-06-24 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749257, 'End_Lon': -74.002908, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 0.08, 'Trip_Dropoff_DateTime': '2009-06-13 17:59:00', 'Trip_Pickup_DateTime': '2009-06-13 17:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728897, 'End_Lon': -74.000563, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734003, 'Start_Lon': -73.998857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-26 21:37:00', 'Trip_Pickup_DateTime': '2009-06-26 21:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746638, 'End_Lon': -73.980077, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754708, 'Start_Lon': -73.985535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-21 00:23:00', 'Trip_Pickup_DateTime': '2009-06-21 00:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779165, 'End_Lon': -73.97703, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755233, 'Start_Lon': -73.971627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-26 22:12:00', 'Trip_Pickup_DateTime': '2009-06-26 22:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762523, 'End_Lon': -73.969087, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737642, 'Start_Lon': -73.988735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-27 00:29:00', 'Trip_Pickup_DateTime': '2009-06-27 00:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705228, 'End_Lon': -74.00485, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752497, 'Start_Lon': -73.979742, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 4.9, 'Trip_Dropoff_DateTime': '2009-06-10 09:42:00', 'Trip_Pickup_DateTime': '2009-06-10 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724, 'End_Lon': -73.987747, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723882, 'Start_Lon': -73.987942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.02, 'Trip_Dropoff_DateTime': '2009-06-27 00:31:00', 'Trip_Pickup_DateTime': '2009-06-27 00:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776013, 'End_Lon': -73.957582, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769515, 'Start_Lon': -73.990975, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.8, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-26 20:58:00', 'Trip_Pickup_DateTime': '2009-06-26 20:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722437, 'End_Lon': -73.987362, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719823, 'Start_Lon': -74.008578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-27 02:16:00', 'Trip_Pickup_DateTime': '2009-06-27 02:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736612, 'End_Lon': -74.002912, 'Fare_Amt': 10.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718777, 'Start_Lon': -73.986552, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-26 22:35:00', 'Trip_Pickup_DateTime': '2009-06-26 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758643, 'End_Lon': -73.967667, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779647, 'Start_Lon': -73.950263, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-24 07:09:00', 'Trip_Pickup_DateTime': '2009-06-24 07:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75687, 'End_Lon': -73.967667, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762883, 'Start_Lon': -73.958077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 20:04:00', 'Trip_Pickup_DateTime': '2009-06-26 19:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.839903, 'End_Lon': -73.942477, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798242, 'Start_Lon': -73.95993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-10 09:27:00', 'Trip_Pickup_DateTime': '2009-06-10 09:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73402, 'End_Lon': -73.998415, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726015, 'Start_Lon': -73.994557, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-27 00:02:00', 'Trip_Pickup_DateTime': '2009-06-26 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.852965, 'End_Lon': -73.866687, 'Fare_Amt': 28.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764593, 'Start_Lon': -73.964297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.4, 'Trip_Distance': 12.69, 'Trip_Dropoff_DateTime': '2009-06-27 02:16:00', 'Trip_Pickup_DateTime': '2009-06-27 01:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754673, 'End_Lon': -73.978105, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759637, 'Start_Lon': -73.9815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-22 11:33:00', 'Trip_Pickup_DateTime': '2009-06-22 11:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759835, 'End_Lon': -73.984687, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760102, 'Start_Lon': -73.98494, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.8, 'Trip_Distance': 0.01, 'Trip_Dropoff_DateTime': '2009-06-20 23:50:00', 'Trip_Pickup_DateTime': '2009-06-20 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78741, 'End_Lon': -73.976733, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77109, 'Start_Lon': -73.987295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-26 19:12:00', 'Trip_Pickup_DateTime': '2009-06-26 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74178, 'End_Lon': -73.995745, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722393, 'Start_Lon': -73.993765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-22 22:12:00', 'Trip_Pickup_DateTime': '2009-06-22 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.690345, 'End_Lon': -73.973317, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758, 'Start_Lon': -73.96296, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 8.3, 'Trip_Dropoff_DateTime': '2009-06-20 23:27:00', 'Trip_Pickup_DateTime': '2009-06-20 23:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726824, 'End_Lon': -73.991712, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.749537, 'Start_Lon': -73.999033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-07 00:02:48', 'Trip_Pickup_DateTime': '2009-06-06 23:50:04', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.750515, 'End_Lon': -73.970715, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743143, 'Start_Lon': -73.974887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-23 11:16:00', 'Trip_Pickup_DateTime': '2009-06-23 11:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75417, 'End_Lon': -73.972767, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751035, 'Start_Lon': -73.992985, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-26 11:35:00', 'Trip_Pickup_DateTime': '2009-06-26 11:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716995, 'End_Lon': -73.998505, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714425, 'Start_Lon': -74.015207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-22 17:37:00', 'Trip_Pickup_DateTime': '2009-06-22 17:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77869, 'End_Lon': -73.95151, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771808, 'Start_Lon': -73.982668, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-24 00:07:00', 'Trip_Pickup_DateTime': '2009-06-23 23:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.705592, 'End_Lon': -74.008497, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753698, 'Start_Lon': -73.982285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.54, 'Trip_Dropoff_DateTime': '2009-06-28 23:13:00', 'Trip_Pickup_DateTime': '2009-06-28 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.663803, 'End_Lon': -73.980413, 'Fare_Amt': 18.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738305, 'Start_Lon': -73.983668, 'Tip_Amt': 3.7, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 5.91, 'Trip_Dropoff_DateTime': '2009-06-22 12:48:00', 'Trip_Pickup_DateTime': '2009-06-22 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790718, 'End_Lon': -73.953615, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769757, 'Start_Lon': -73.954598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-27 15:04:00', 'Trip_Pickup_DateTime': '2009-06-27 14:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785243, 'End_Lon': -73.978802, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761018, 'Start_Lon': -73.969238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-26 18:00:00', 'Trip_Pickup_DateTime': '2009-06-26 17:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76091, 'End_Lon': -73.978972, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74094, 'Start_Lon': -73.981483, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-26 09:48:00', 'Trip_Pickup_DateTime': '2009-06-26 09:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723738, 'End_Lon': -73.991589, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.743716, 'Start_Lon': -73.992368, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-06 14:32:28', 'Trip_Pickup_DateTime': '2009-06-06 14:17:02', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.750068, 'End_Lon': -73.986215, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749753, 'Start_Lon': -73.974492, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-22 15:48:00', 'Trip_Pickup_DateTime': '2009-06-22 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772748, 'End_Lon': -73.977717, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709585, 'Start_Lon': -74.0153, 'Tip_Amt': 4.32, 'Tolls_Amt': 0.0, 'Total_Amt': 21.62, 'Trip_Distance': 5.31, 'Trip_Dropoff_DateTime': '2009-06-13 16:40:00', 'Trip_Pickup_DateTime': '2009-06-13 16:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735558, 'End_Lon': -74.00417, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741857, 'Start_Lon': -73.989603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-13 15:55:00', 'Trip_Pickup_DateTime': '2009-06-13 15:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709758, 'End_Lon': -74.009993, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.714513, 'Start_Lon': -73.99042, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-26 00:29:00', 'Trip_Pickup_DateTime': '2009-06-26 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736382, 'End_Lon': -73.979332, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750142, 'Start_Lon': -73.975088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-20 20:58:00', 'Trip_Pickup_DateTime': '2009-06-20 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744648, 'End_Lon': -73.996952, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73038, 'Start_Lon': -73.99579, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-23 19:55:00', 'Trip_Pickup_DateTime': '2009-06-23 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.669575, 'End_Lon': -73.989398, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731238, 'Start_Lon': -74.006578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.38, 'Trip_Dropoff_DateTime': '2009-06-29 00:43:00', 'Trip_Pickup_DateTime': '2009-06-29 00:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738522, 'End_Lon': -73.983407, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72815, 'Start_Lon': -73.993008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 06:57:00', 'Trip_Pickup_DateTime': '2009-06-26 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731782, 'End_Lon': -74.007963, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748958, 'Start_Lon': -73.984177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-10 08:50:00', 'Trip_Pickup_DateTime': '2009-06-10 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747342, 'End_Lon': -74.00325, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732507, 'Start_Lon': -73.981697, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-20 23:57:00', 'Trip_Pickup_DateTime': '2009-06-20 23:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753757, 'End_Lon': -73.987655, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75328, 'Start_Lon': -73.981622, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-23 10:58:00', 'Trip_Pickup_DateTime': '2009-06-23 10:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761942, 'End_Lon': -73.918792, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73049, 'Start_Lon': -74.00195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 6.59, 'Trip_Dropoff_DateTime': '2009-06-28 10:38:00', 'Trip_Pickup_DateTime': '2009-06-28 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715687, 'End_Lon': -74.001967, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70767, 'Start_Lon': -74.007052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-10 09:16:00', 'Trip_Pickup_DateTime': '2009-06-10 09:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76828, 'End_Lon': -73.98475, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759743, 'Start_Lon': -73.981133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-25 19:21:00', 'Trip_Pickup_DateTime': '2009-06-25 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775168, 'End_Lon': -73.95667, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760188, 'Start_Lon': -73.971792, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 7.75, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-22 15:42:00', 'Trip_Pickup_DateTime': '2009-06-22 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775183, 'End_Lon': -73.956865, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75137, 'Start_Lon': -73.97765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-26 19:11:00', 'Trip_Pickup_DateTime': '2009-06-26 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738453, 'End_Lon': -73.995608, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74498, 'Start_Lon': -73.995167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-23 20:15:00', 'Trip_Pickup_DateTime': '2009-06-23 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786205, 'End_Lon': -73.975928, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77483, 'Start_Lon': -73.980473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-28 21:57:00', 'Trip_Pickup_DateTime': '2009-06-28 21:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76725, 'End_Lon': -73.984548, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734952, 'Start_Lon': -74.006948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-24 10:19:00', 'Trip_Pickup_DateTime': '2009-06-24 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769068, 'End_Lon': -73.982832, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75861, 'Start_Lon': -73.974682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-10 09:03:00', 'Trip_Pickup_DateTime': '2009-06-10 08:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756632, 'End_Lon': -73.986433, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775363, 'Start_Lon': -73.956572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-26 10:19:00', 'Trip_Pickup_DateTime': '2009-06-26 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74655, 'End_Lon': -73.986188, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747962, 'Start_Lon': -73.973532, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-20 23:47:00', 'Trip_Pickup_DateTime': '2009-06-20 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741195, 'End_Lon': -73.981535, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757258, 'Start_Lon': -73.98275, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-23 23:59:00', 'Trip_Pickup_DateTime': '2009-06-23 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.824238, 'End_Lon': -73.925912, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750143, 'Start_Lon': -73.991883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 8.45, 'Trip_Dropoff_DateTime': '2009-06-27 21:08:00', 'Trip_Pickup_DateTime': '2009-06-27 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745565, 'End_Lon': -73.982502, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731218, 'Start_Lon': -73.999422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-20 18:52:00', 'Trip_Pickup_DateTime': '2009-06-20 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779648, 'End_Lon': -73.947828, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760772, 'Start_Lon': -73.99037, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.72, 'Trip_Dropoff_DateTime': '2009-06-28 02:26:00', 'Trip_Pickup_DateTime': '2009-06-28 02:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74976, 'End_Lon': -73.977135, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7512, 'Start_Lon': -73.994058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-23 07:53:00', 'Trip_Pickup_DateTime': '2009-06-23 07:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715125, 'End_Lon': -74.001607, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718138, 'Start_Lon': -73.986442, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-25 11:11:00', 'Trip_Pickup_DateTime': '2009-06-25 11:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7503, 'End_Lon': -73.991428, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75052, 'Start_Lon': -73.977083, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-28 19:31:00', 'Trip_Pickup_DateTime': '2009-06-28 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779597, 'End_Lon': -73.947755, 'Fare_Amt': 15.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754502, 'Start_Lon': -73.992215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.7, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-24 19:13:00', 'Trip_Pickup_DateTime': '2009-06-24 18:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752208, 'End_Lon': -73.975008, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778727, 'Start_Lon': -73.981765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-25 15:34:00', 'Trip_Pickup_DateTime': '2009-06-25 15:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71494, 'End_Lon': -73.991748, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75617, 'Start_Lon': -73.965678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.22, 'Trip_Dropoff_DateTime': '2009-06-26 18:33:00', 'Trip_Pickup_DateTime': '2009-06-26 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708042, 'End_Lon': -74.011808, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73428, 'Start_Lon': -73.991003, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-28 23:05:00', 'Trip_Pickup_DateTime': '2009-06-28 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723253, 'End_Lon': -73.999273, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707193, 'Start_Lon': -74.007865, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-29 09:45:00', 'Trip_Pickup_DateTime': '2009-06-29 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744568, 'End_Lon': -73.987732, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746723, 'Start_Lon': -73.979608, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-26 16:31:00', 'Trip_Pickup_DateTime': '2009-06-26 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74338, 'End_Lon': -73.980332, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772187, 'Start_Lon': -73.97885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-26 17:29:00', 'Trip_Pickup_DateTime': '2009-06-26 17:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737193, 'End_Lon': -73.975443, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742447, 'Start_Lon': -73.977455, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-26 14:18:00', 'Trip_Pickup_DateTime': '2009-06-26 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.726415, 'End_Lon': -74.002317, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742407, 'Start_Lon': -73.984472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-28 21:48:00', 'Trip_Pickup_DateTime': '2009-06-28 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.810495, 'End_Lon': -73.943398, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777975, 'Start_Lon': -73.974587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.12, 'Trip_Dropoff_DateTime': '2009-06-26 19:47:00', 'Trip_Pickup_DateTime': '2009-06-26 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77322, 'End_Lon': -73.978675, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784958, 'Start_Lon': -73.979033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-17 18:42:00', 'Trip_Pickup_DateTime': '2009-06-17 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777598, 'End_Lon': -73.960963, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757475, 'Start_Lon': -73.974183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-25 20:35:00', 'Trip_Pickup_DateTime': '2009-06-25 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766597, 'End_Lon': -73.952963, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749002, 'Start_Lon': -73.971683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-24 12:53:00', 'Trip_Pickup_DateTime': '2009-06-24 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.704363, 'End_Lon': -74.011755, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71758, 'Start_Lon': -74.005723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-26 09:14:00', 'Trip_Pickup_DateTime': '2009-06-26 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737366, 'End_Lon': -73.979829, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744273, 'Start_Lon': -74.006268, 'Tip_Amt': 1.11, 'Tolls_Amt': 0.0, 'Total_Amt': 8.01, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-06 02:46:56', 'Trip_Pickup_DateTime': '2009-06-06 02:39:38', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.771908, 'End_Lon': -73.870908, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756487, 'Start_Lon': -73.972953, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.05, 'Trip_Distance': 8.71, 'Trip_Dropoff_DateTime': '2009-06-28 16:24:00', 'Trip_Pickup_DateTime': '2009-06-28 16:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78479, 'End_Lon': -73.969762, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787557, 'Start_Lon': -73.975085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-28 07:18:00', 'Trip_Pickup_DateTime': '2009-06-28 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760973, 'End_Lon': -73.979763, 'Fare_Amt': 2.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760897, 'Start_Lon': -73.979945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-24 10:33:00', 'Trip_Pickup_DateTime': '2009-06-24 10:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776813, 'End_Lon': -73.959177, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786908, 'Start_Lon': -73.953485, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-17 18:16:00', 'Trip_Pickup_DateTime': '2009-06-17 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719317, 'End_Lon': -73.997727, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72603, 'Start_Lon': -74.005853, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-25 15:43:00', 'Trip_Pickup_DateTime': '2009-06-25 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712468, 'End_Lon': -74.009178, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757715, 'Start_Lon': -73.990017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.66, 'Trip_Dropoff_DateTime': '2009-06-27 19:39:00', 'Trip_Pickup_DateTime': '2009-06-27 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784417, 'End_Lon': -73.95617, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764738, 'Start_Lon': -73.977708, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-26 12:00:00', 'Trip_Pickup_DateTime': '2009-06-26 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75176, 'End_Lon': -74.005752, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759848, 'Start_Lon': -74.0001, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-25 18:43:00', 'Trip_Pickup_DateTime': '2009-06-25 18:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774252, 'End_Lon': -73.872833, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74617, 'Start_Lon': -73.990742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 26.1, 'Trip_Distance': 9.29, 'Trip_Dropoff_DateTime': '2009-06-26 07:37:00', 'Trip_Pickup_DateTime': '2009-06-26 07:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738985, 'End_Lon': -73.979455, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78974, 'Start_Lon': -73.954373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 4.85, 'Trip_Dropoff_DateTime': '2009-06-17 18:19:00', 'Trip_Pickup_DateTime': '2009-06-17 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771948, 'End_Lon': -73.955685, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75871, 'Start_Lon': -73.965612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-26 04:58:00', 'Trip_Pickup_DateTime': '2009-06-26 04:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778943, 'End_Lon': -73.981813, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780487, 'Start_Lon': -73.976243, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.4, 'Trip_Dropoff_DateTime': '2009-06-25 09:18:00', 'Trip_Pickup_DateTime': '2009-06-25 09:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725733, 'End_Lon': -73.983817, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730487, 'Start_Lon': -73.983027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-27 00:36:00', 'Trip_Pickup_DateTime': '2009-06-27 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724862, 'End_Lon': -73.978927, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726743, 'Start_Lon': -73.995713, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-28 01:45:00', 'Trip_Pickup_DateTime': '2009-06-28 01:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73563, 'End_Lon': -73.99131, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746073, 'Start_Lon': -73.978937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-25 23:31:00', 'Trip_Pickup_DateTime': '2009-06-25 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749122, 'End_Lon': -73.979557, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7618, 'Start_Lon': -73.972032, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-23 12:04:00', 'Trip_Pickup_DateTime': '2009-06-23 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75906, 'End_Lon': -73.980508, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750367, 'Start_Lon': -73.975128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-17 18:31:00', 'Trip_Pickup_DateTime': '2009-06-17 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722367, 'End_Lon': -73.997162, 'Fare_Amt': 29.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778258, 'Start_Lon': -73.962827, 'Tip_Amt': 5.86, 'Tolls_Amt': 0.0, 'Total_Amt': 35.16, 'Trip_Distance': 4.82, 'Trip_Dropoff_DateTime': '2009-06-27 19:15:00', 'Trip_Pickup_DateTime': '2009-06-27 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75393, 'End_Lon': -73.966147, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7572, 'Start_Lon': -73.961275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-27 10:31:00', 'Trip_Pickup_DateTime': '2009-06-27 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741015, 'End_Lon': -73.993997, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724133, 'Start_Lon': -73.998465, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-25 13:08:00', 'Trip_Pickup_DateTime': '2009-06-25 12:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77906, 'End_Lon': -73.956997, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760375, 'Start_Lon': -73.980532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-21 00:40:00', 'Trip_Pickup_DateTime': '2009-06-21 00:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755827, 'End_Lon': -73.967908, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765938, 'Start_Lon': -73.960848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-28 19:20:00', 'Trip_Pickup_DateTime': '2009-06-28 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.82008, 'End_Lon': -73.955265, 'Fare_Amt': 23.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730205, 'Start_Lon': -73.989752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.2, 'Trip_Distance': 9.36, 'Trip_Dropoff_DateTime': '2009-06-21 01:31:00', 'Trip_Pickup_DateTime': '2009-06-21 01:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799907, 'End_Lon': -73.968182, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799597, 'Start_Lon': -73.962775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.05, 'Trip_Dropoff_DateTime': '2009-06-17 13:39:00', 'Trip_Pickup_DateTime': '2009-06-17 13:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764445, 'End_Lon': -73.958117, 'Fare_Amt': 6.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749305, 'Start_Lon': -73.975725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-21 01:14:00', 'Trip_Pickup_DateTime': '2009-06-21 01:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72004, 'End_Lon': -73.987443, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777933, 'Start_Lon': -73.948595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.58, 'Trip_Dropoff_DateTime': '2009-06-21 02:08:00', 'Trip_Pickup_DateTime': '2009-06-21 01:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75751, 'End_Lon': -73.990382, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728157, 'Start_Lon': -73.99282, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-25 17:50:00', 'Trip_Pickup_DateTime': '2009-06-25 17:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760232, 'End_Lon': -73.976702, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780313, 'Start_Lon': -73.946995, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-17 14:23:00', 'Trip_Pickup_DateTime': '2009-06-17 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777975, 'End_Lon': -73.952367, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757975, 'Start_Lon': -73.9697, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-24 22:33:00', 'Trip_Pickup_DateTime': '2009-06-24 22:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731122, 'End_Lon': -73.98583, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739952, 'Start_Lon': -73.982313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-27 23:42:00', 'Trip_Pickup_DateTime': '2009-06-27 23:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737543, 'End_Lon': -73.988282, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734602, 'Start_Lon': -73.99874, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-25 02:51:00', 'Trip_Pickup_DateTime': '2009-06-25 02:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72565, 'End_Lon': -73.857263, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771775, 'Start_Lon': -73.95628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.2, 'Trip_Distance': 9.16, 'Trip_Dropoff_DateTime': '2009-06-25 22:24:00', 'Trip_Pickup_DateTime': '2009-06-25 21:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739433, 'End_Lon': -73.990952, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73358, 'Start_Lon': -74.00628, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-17 12:37:00', 'Trip_Pickup_DateTime': '2009-06-17 12:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.826905, 'End_Lon': -73.94173, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748758, 'Start_Lon': -73.975888, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 7.34, 'Trip_Dropoff_DateTime': '2009-06-24 22:05:00', 'Trip_Pickup_DateTime': '2009-06-24 21:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755085, 'End_Lon': -73.981825, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767892, 'Start_Lon': -73.970295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-24 06:54:00', 'Trip_Pickup_DateTime': '2009-06-24 06:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757637, 'End_Lon': -73.96722, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764843, 'Start_Lon': -73.978627, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-24 00:49:00', 'Trip_Pickup_DateTime': '2009-06-24 00:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770833, 'End_Lon': -73.98064, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759913, 'Start_Lon': -73.988993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-24 23:01:00', 'Trip_Pickup_DateTime': '2009-06-24 22:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.810327, 'End_Lon': -73.963557, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73371, 'Start_Lon': -74.000158, 'Tip_Amt': 4.04, 'Tolls_Amt': 0.0, 'Total_Amt': 24.24, 'Trip_Distance': 7.62, 'Trip_Dropoff_DateTime': '2009-06-29 01:48:00', 'Trip_Pickup_DateTime': '2009-06-29 01:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774853, 'End_Lon': -73.978617, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767667, 'Start_Lon': -73.968462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-17 15:24:00', 'Trip_Pickup_DateTime': '2009-06-17 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761943, 'End_Lon': -73.983455, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747395, 'Start_Lon': -73.991993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.01, 'Trip_Dropoff_DateTime': '2009-06-29 09:28:00', 'Trip_Pickup_DateTime': '2009-06-29 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732542, 'End_Lon': -73.98491, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761472, 'Start_Lon': -73.963773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-24 12:00:00', 'Trip_Pickup_DateTime': '2009-06-24 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715267, 'End_Lon': -73.992523, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749173, 'Start_Lon': -73.972352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-17 15:13:00', 'Trip_Pickup_DateTime': '2009-06-17 15:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740183, 'End_Lon': -73.98201, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75515, 'Start_Lon': -73.961972, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-26 09:51:00', 'Trip_Pickup_DateTime': '2009-06-26 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724358, 'End_Lon': -73.984972, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789092, 'Start_Lon': -73.978383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 6.18, 'Trip_Dropoff_DateTime': '2009-06-24 22:31:00', 'Trip_Pickup_DateTime': '2009-06-24 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725475, 'End_Lon': -73.984068, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736387, 'Start_Lon': -73.993228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-24 16:07:00', 'Trip_Pickup_DateTime': '2009-06-24 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708217, 'End_Lon': -74.007132, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74732, 'Start_Lon': -73.99332, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-25 20:54:00', 'Trip_Pickup_DateTime': '2009-06-25 20:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723147, 'End_Lon': -73.997405, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712983, 'Start_Lon': -74.009317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-26 15:56:00', 'Trip_Pickup_DateTime': '2009-06-26 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.808018, 'End_Lon': -73.914453, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756132, 'Start_Lon': -73.986377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.4, 'Trip_Distance': 6.97, 'Trip_Dropoff_DateTime': '2009-06-26 02:27:00', 'Trip_Pickup_DateTime': '2009-06-26 01:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74156, 'End_Lon': -73.988912, 'Fare_Amt': 14.5, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742673, 'Start_Lon': -73.972133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.77, 'Trip_Dropoff_DateTime': '2009-06-26 02:50:00', 'Trip_Pickup_DateTime': '2009-06-26 02:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732678, 'End_Lon': -74.008813, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.731727, 'Start_Lon': -73.993137, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-24 14:54:00', 'Trip_Pickup_DateTime': '2009-06-24 14:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788733, 'End_Lon': -73.97367, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779348, 'Start_Lon': -73.960245, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-17 16:30:00', 'Trip_Pickup_DateTime': '2009-06-17 16:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780963, 'End_Lon': -73.95882, 'Fare_Amt': 16.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735813, 'Start_Lon': -74.001857, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.1, 'Trip_Dropoff_DateTime': '2009-06-24 21:52:00', 'Trip_Pickup_DateTime': '2009-06-24 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763307, 'End_Lon': -73.978397, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769068, 'Start_Lon': -73.959058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.59, 'Trip_Dropoff_DateTime': '2009-06-29 06:57:00', 'Trip_Pickup_DateTime': '2009-06-29 06:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785052, 'End_Lon': -73.94682, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778037, 'Start_Lon': -73.95171, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-26 15:58:00', 'Trip_Pickup_DateTime': '2009-06-26 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.663185, 'End_Lon': -73.891607, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.643517, 'Start_Lon': -73.79006, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 8.6, 'Trip_Dropoff_DateTime': '2009-06-24 15:06:00', 'Trip_Pickup_DateTime': '2009-06-24 14:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729767, 'End_Lon': -73.983623, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727283, 'Start_Lon': -74.000692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-24 02:23:00', 'Trip_Pickup_DateTime': '2009-06-24 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753853, 'End_Lon': -73.979828, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774358, 'Start_Lon': -73.945122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.84, 'Trip_Dropoff_DateTime': '2009-06-26 12:05:00', 'Trip_Pickup_DateTime': '2009-06-26 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76055, 'End_Lon': -73.961132, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754975, 'Start_Lon': -73.969745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-17 14:21:00', 'Trip_Pickup_DateTime': '2009-06-17 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.912662, 'End_Lon': -73.783763, 'Fare_Amt': 90.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.912662, 'Start_Lon': -73.783763, 'Tip_Amt': 22.5, 'Tolls_Amt': 0.0, 'Total_Amt': 112.5, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-29 02:32:00', 'Trip_Pickup_DateTime': '2009-06-29 02:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740772, 'End_Lon': -74.004985, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738987, 'Start_Lon': -73.987662, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-27 17:26:00', 'Trip_Pickup_DateTime': '2009-06-27 17:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786132, 'End_Lon': -73.971592, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76839, 'Start_Lon': -73.982348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-24 12:20:00', 'Trip_Pickup_DateTime': '2009-06-24 12:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733917, 'End_Lon': -73.9922, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749603, 'Start_Lon': -73.994573, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-25 22:16:00', 'Trip_Pickup_DateTime': '2009-06-25 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731472, 'End_Lon': -73.989175, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749425, 'Start_Lon': -73.97871, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-26 00:32:00', 'Trip_Pickup_DateTime': '2009-06-26 00:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760563, 'End_Lon': -74.00279, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763602, 'Start_Lon': -73.992673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-27 19:42:00', 'Trip_Pickup_DateTime': '2009-06-27 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750142, 'End_Lon': -74.002897, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758455, 'Start_Lon': -73.992427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-29 02:53:00', 'Trip_Pickup_DateTime': '2009-06-29 02:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.725013, 'End_Lon': -73.997193, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767947, 'Start_Lon': -73.966248, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-24 12:18:00', 'Trip_Pickup_DateTime': '2009-06-24 11:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74651, 'End_Lon': -73.980902, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742652, 'Start_Lon': -73.986027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-17 15:44:00', 'Trip_Pickup_DateTime': '2009-06-17 15:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718757, 'End_Lon': -74.010573, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741613, 'Start_Lon': -74.00709, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-17 15:24:00', 'Trip_Pickup_DateTime': '2009-06-17 15:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722892, 'End_Lon': -74.003322, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732525, 'Start_Lon': -73.995017, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-27 21:59:00', 'Trip_Pickup_DateTime': '2009-06-27 21:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766532, 'End_Lon': -73.957765, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719082, 'Start_Lon': -73.989482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.25, 'Trip_Dropoff_DateTime': '2009-06-27 23:13:00', 'Trip_Pickup_DateTime': '2009-06-27 23:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752037, 'End_Lon': -73.983757, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760047, 'Start_Lon': -73.97584, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-23 22:43:00', 'Trip_Pickup_DateTime': '2009-06-23 22:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787312, 'End_Lon': -73.97733, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762088, 'Start_Lon': -73.993762, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-25 17:41:00', 'Trip_Pickup_DateTime': '2009-06-25 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79475, 'End_Lon': -73.933537, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.825058, 'Start_Lon': -73.951675, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 13.05, 'Trip_Distance': 3.17, 'Trip_Dropoff_DateTime': '2009-06-25 23:35:00', 'Trip_Pickup_DateTime': '2009-06-25 23:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74372, 'End_Lon': -73.976658, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766772, 'Start_Lon': -73.955135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.48, 'Trip_Dropoff_DateTime': '2009-06-27 20:28:00', 'Trip_Pickup_DateTime': '2009-06-27 20:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755707, 'End_Lon': -73.981953, 'Fare_Amt': 30.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768963, 'Start_Lon': -73.862727, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 36.05, 'Trip_Distance': 11.85, 'Trip_Dropoff_DateTime': '2009-06-23 19:46:00', 'Trip_Pickup_DateTime': '2009-06-23 19:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745815, 'End_Lon': -73.998473, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768098, 'Start_Lon': -73.977853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-09 21:47:00', 'Trip_Pickup_DateTime': '2009-06-09 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.84005, 'End_Lon': -73.942798, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76512, 'Start_Lon': -73.961418, 'Tip_Amt': 5.02, 'Tolls_Amt': 0.0, 'Total_Amt': 25.12, 'Trip_Distance': 7.02, 'Trip_Dropoff_DateTime': '2009-06-23 14:22:00', 'Trip_Pickup_DateTime': '2009-06-23 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717195, 'End_Lon': -74.004645, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77856, 'Start_Lon': -73.956247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.1, 'Trip_Distance': 7.42, 'Trip_Dropoff_DateTime': '2009-06-26 18:11:00', 'Trip_Pickup_DateTime': '2009-06-26 17:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779333, 'End_Lon': -73.957618, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741775, 'Start_Lon': -73.904705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.52, 'Trip_Dropoff_DateTime': '2009-06-12 07:00:00', 'Trip_Pickup_DateTime': '2009-06-12 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730313, 'End_Lon': -74.006837, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70618, 'Start_Lon': -74.009125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-27 20:18:00', 'Trip_Pickup_DateTime': '2009-06-27 20:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.715748, 'End_Lon': -73.98049, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729128, 'Start_Lon': -73.978272, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-25 14:29:00', 'Trip_Pickup_DateTime': '2009-06-25 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766712, 'End_Lon': -73.961217, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76579, 'Start_Lon': -73.957527, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-23 19:55:00', 'Trip_Pickup_DateTime': '2009-06-23 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754032, 'End_Lon': -73.977332, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762453, 'Start_Lon': -73.979265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-27 19:50:00', 'Trip_Pickup_DateTime': '2009-06-27 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.638868, 'End_Lon': -73.786512, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75412, 'Start_Lon': -73.988985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 45.0, 'Trip_Distance': 17.06, 'Trip_Dropoff_DateTime': '2009-06-23 17:23:00', 'Trip_Pickup_DateTime': '2009-06-23 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72348, 'End_Lon': -74.002845, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721517, 'Start_Lon': -73.99357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-28 00:00:00', 'Trip_Pickup_DateTime': '2009-06-27 23:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753872, 'End_Lon': -73.9718, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756802, 'Start_Lon': -73.96177, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-10 10:21:00', 'Trip_Pickup_DateTime': '2009-06-10 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772023, 'End_Lon': -73.952517, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778085, 'Start_Lon': -73.978417, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-28 09:58:00', 'Trip_Pickup_DateTime': '2009-06-28 09:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757415, 'End_Lon': -73.97022, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755957, 'Start_Lon': -73.983427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 23:41:00', 'Trip_Pickup_DateTime': '2009-06-26 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694192, 'End_Lon': -73.85219, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.693438, 'Start_Lon': -73.85175, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.5, 'Trip_Distance': 0.12, 'Trip_Dropoff_DateTime': '2009-06-27 07:53:00', 'Trip_Pickup_DateTime': '2009-06-27 07:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769584, 'End_Lon': -73.960744, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.758427, 'Start_Lon': -73.96944, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-07 00:17:16', 'Trip_Pickup_DateTime': '2009-06-07 00:15:26', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75968, 'End_Lon': -73.981002, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74922, 'Start_Lon': -73.98402, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-04 11:48:00', 'Trip_Pickup_DateTime': '2009-06-04 11:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741993, 'End_Lon': -74.00769, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735363, 'Start_Lon': -73.99195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.95, 'Trip_Dropoff_DateTime': '2009-06-06 08:41:00', 'Trip_Pickup_DateTime': '2009-06-06 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728733, 'End_Lon': -74.00319, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737385, 'Start_Lon': -73.990178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-05 15:50:00', 'Trip_Pickup_DateTime': '2009-06-05 15:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719985, 'End_Lon': -73.988018, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72588, 'Start_Lon': -74.008382, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-17 23:23:00', 'Trip_Pickup_DateTime': '2009-06-17 23:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.825998, 'End_Lon': -73.940878, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.841737, 'Start_Lon': -73.939283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.86, 'Trip_Dropoff_DateTime': '2009-06-17 22:51:00', 'Trip_Pickup_DateTime': '2009-06-17 22:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741997, 'End_Lon': -74.004617, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761917, 'Start_Lon': -73.986203, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-25 22:05:00', 'Trip_Pickup_DateTime': '2009-06-25 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732453, 'End_Lon': -74.00873, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741585, 'Start_Lon': -73.981172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-04 22:19:00', 'Trip_Pickup_DateTime': '2009-06-04 22:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76056, 'End_Lon': -73.964457, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780497, 'Start_Lon': -73.949772, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-18 00:12:00', 'Trip_Pickup_DateTime': '2009-06-18 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781487, 'End_Lon': -73.945992, 'Fare_Amt': 21.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76877, 'Start_Lon': -73.862812, 'Tip_Amt': 4.0, 'Tolls_Amt': 5.0, 'Total_Amt': 31.3, 'Trip_Distance': 8.55, 'Trip_Dropoff_DateTime': '2009-06-17 16:31:00', 'Trip_Pickup_DateTime': '2009-06-17 16:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780635, 'End_Lon': -73.972668, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751145, 'Start_Lon': -73.994137, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-26 15:12:00', 'Trip_Pickup_DateTime': '2009-06-26 14:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76548, 'End_Lon': -73.98075, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761527, 'Start_Lon': -73.988165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-15 19:41:00', 'Trip_Pickup_DateTime': '2009-06-15 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776417, 'End_Lon': -73.962377, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776413, 'Start_Lon': -73.975738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-03 19:37:00', 'Trip_Pickup_DateTime': '2009-06-03 19:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719047, 'End_Lon': -73.984963, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76374, 'Start_Lon': -73.961975, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.98, 'Trip_Dropoff_DateTime': '2009-06-03 20:27:00', 'Trip_Pickup_DateTime': '2009-06-03 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718588, 'End_Lon': -74.009968, 'Fare_Amt': 22.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774632, 'Start_Lon': -73.957745, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 8.9, 'Trip_Dropoff_DateTime': '2009-06-03 07:54:00', 'Trip_Pickup_DateTime': '2009-06-03 07:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722247, 'End_Lon': -73.997883, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741188, 'Start_Lon': -73.997882, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-28 21:22:00', 'Trip_Pickup_DateTime': '2009-06-28 21:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732788, 'End_Lon': -73.981563, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721673, 'Start_Lon': -73.995667, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.43, 'Trip_Dropoff_DateTime': '2009-06-06 10:16:00', 'Trip_Pickup_DateTime': '2009-06-06 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702385, 'End_Lon': -74.013263, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707515, 'Start_Lon': -74.002815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-06 15:25:00', 'Trip_Pickup_DateTime': '2009-06-06 15:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748997, 'End_Lon': -73.983777, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757155, 'Start_Lon': -73.967128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-08 14:01:00', 'Trip_Pickup_DateTime': '2009-06-08 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 10 with 1000 records\n",
            "[{'End_Lat': 40.729367, 'End_Lon': -73.993363, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75278, 'Start_Lon': -73.978207, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-02 21:27:00', 'Trip_Pickup_DateTime': '2009-06-02 21:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.732832, 'End_Lon': -73.994302, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733133, 'Start_Lon': -74.005712, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-03 18:55:00', 'Trip_Pickup_DateTime': '2009-06-03 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763913, 'End_Lon': -73.902057, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763913, 'Start_Lon': -73.902057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-02 12:35:00', 'Trip_Pickup_DateTime': '2009-06-02 12:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763307, 'End_Lon': -73.984018, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78205, 'Start_Lon': -73.975482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-07 14:07:00', 'Trip_Pickup_DateTime': '2009-06-07 13:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782308, 'End_Lon': -73.95778, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769215, 'Start_Lon': -73.965172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-03 07:51:00', 'Trip_Pickup_DateTime': '2009-06-03 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748815, 'End_Lon': -73.906478, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750155, 'Start_Lon': -73.91022, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.06, 'Trip_Dropoff_DateTime': '2009-06-28 02:02:00', 'Trip_Pickup_DateTime': '2009-06-28 01:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748403, 'End_Lon': -73.990428, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723658, 'Start_Lon': -73.990683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-07 18:36:00', 'Trip_Pickup_DateTime': '2009-06-07 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.686802, 'End_Lon': -73.958577, 'Fare_Amt': 16.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731257, 'Start_Lon': -73.988742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 4.76, 'Trip_Dropoff_DateTime': '2009-06-26 20:59:00', 'Trip_Pickup_DateTime': '2009-06-26 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.747025, 'End_Lon': -74.00277, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756487, 'Start_Lon': -73.990032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 22:33:00', 'Trip_Pickup_DateTime': '2009-06-17 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741215, 'End_Lon': -73.98507, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776088, 'Start_Lon': -73.953117, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-02 07:51:00', 'Trip_Pickup_DateTime': '2009-06-02 07:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762638, 'End_Lon': -73.967932, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78039, 'Start_Lon': -73.952732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-05 12:09:00', 'Trip_Pickup_DateTime': '2009-06-05 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804647, 'End_Lon': -73.93915, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77933, 'Start_Lon': -73.95532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-27 16:35:00', 'Trip_Pickup_DateTime': '2009-06-27 16:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720243, 'End_Lon': -73.988305, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726083, 'Start_Lon': -74.001567, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-26 19:42:00', 'Trip_Pickup_DateTime': '2009-06-26 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755135, 'End_Lon': -73.983235, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743278, 'Start_Lon': -73.986017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-05 21:23:00', 'Trip_Pickup_DateTime': '2009-06-05 21:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752545, 'End_Lon': -73.974765, 'Fare_Amt': 45.0, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752545, 'Start_Lon': -73.974765, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-17 22:21:00', 'Trip_Pickup_DateTime': '2009-06-17 22:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.667328, 'End_Lon': -73.98788, 'Fare_Amt': 35.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.647527, 'Start_Lon': -73.789977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.7, 'Trip_Distance': 13.9, 'Trip_Dropoff_DateTime': '2009-06-06 14:58:00', 'Trip_Pickup_DateTime': '2009-06-06 14:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762882, 'End_Lon': -73.981865, 'Fare_Amt': 16.1, 'Passenger_Count': 4, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.704979, 'Start_Lon': -74.017523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.2, 'Trip_Dropoff_DateTime': '2009-06-30 15:21:30', 'Trip_Pickup_DateTime': '2009-06-30 14:58:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.75635, 'End_Lon': -73.986357, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780365, 'Start_Lon': -73.949907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.23, 'Trip_Dropoff_DateTime': '2009-06-06 19:48:00', 'Trip_Pickup_DateTime': '2009-06-06 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77572, 'End_Lon': -73.950768, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750335, 'Start_Lon': -73.97606, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-29 09:39:00', 'Trip_Pickup_DateTime': '2009-06-29 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758342, 'End_Lon': -73.992542, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77683, 'Start_Lon': -73.977497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-02 21:01:00', 'Trip_Pickup_DateTime': '2009-06-02 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75582, 'End_Lon': -73.981522, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758872, 'Start_Lon': -73.988968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.57, 'Trip_Dropoff_DateTime': '2009-06-29 10:23:00', 'Trip_Pickup_DateTime': '2009-06-29 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786828, 'End_Lon': -73.971597, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77433, 'Start_Lon': -73.954413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-17 21:36:00', 'Trip_Pickup_DateTime': '2009-06-17 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743603, 'End_Lon': -73.973805, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751688, 'Start_Lon': -73.986907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-17 21:59:00', 'Trip_Pickup_DateTime': '2009-06-17 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763907, 'End_Lon': -73.994005, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751997, 'Start_Lon': -73.973808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-25 21:52:00', 'Trip_Pickup_DateTime': '2009-06-25 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.740235, 'End_Lon': -74.005512, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75985, 'Start_Lon': -73.964818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.47, 'Trip_Dropoff_DateTime': '2009-06-27 23:56:00', 'Trip_Pickup_DateTime': '2009-06-27 23:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749053, 'End_Lon': -73.992095, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736603, 'Start_Lon': -74.001118, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-17 21:41:00', 'Trip_Pickup_DateTime': '2009-06-17 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761948, 'End_Lon': -73.97523, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744857, 'Start_Lon': -73.983237, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-17 21:14:00', 'Trip_Pickup_DateTime': '2009-06-17 21:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734977, 'End_Lon': -73.991803, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729407, 'Start_Lon': -73.993492, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-17 21:21:00', 'Trip_Pickup_DateTime': '2009-06-17 21:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744213, 'End_Lon': -74.006502, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72526, 'Start_Lon': -74.002813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-29 00:46:00', 'Trip_Pickup_DateTime': '2009-06-29 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752843, 'End_Lon': -73.970062, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732363, 'Start_Lon': -73.996162, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-27 20:36:00', 'Trip_Pickup_DateTime': '2009-06-27 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758135, 'End_Lon': -74.000403, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758887, 'Start_Lon': -73.985502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-29 10:18:00', 'Trip_Pickup_DateTime': '2009-06-29 09:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760953, 'End_Lon': -74.010433, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764337, 'Start_Lon': -74.018065, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-27 23:26:00', 'Trip_Pickup_DateTime': '2009-06-27 23:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757758, 'End_Lon': -73.986017, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767515, 'Start_Lon': -73.982877, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.87, 'Trip_Dropoff_DateTime': '2009-06-17 20:51:00', 'Trip_Pickup_DateTime': '2009-06-17 20:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.80742, 'End_Lon': -73.966683, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772533, 'Start_Lon': -73.982448, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-26 22:46:00', 'Trip_Pickup_DateTime': '2009-06-26 22:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75582, 'End_Lon': -73.996188, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748602, 'Start_Lon': -73.988633, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-29 09:10:00', 'Trip_Pickup_DateTime': '2009-06-29 08:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743677, 'End_Lon': -73.994537, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759798, 'Start_Lon': -73.985145, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-27 14:06:00', 'Trip_Pickup_DateTime': '2009-06-27 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764765, 'End_Lon': -73.98262, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756707, 'Start_Lon': -73.990115, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-28 12:37:00', 'Trip_Pickup_DateTime': '2009-06-28 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.733587, 'End_Lon': -74.002313, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718335, 'Start_Lon': -73.990737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-25 22:42:00', 'Trip_Pickup_DateTime': '2009-06-25 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.67486, 'End_Lon': -73.965743, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724395, 'Start_Lon': -73.995618, 'Tip_Amt': 3.06, 'Tolls_Amt': 0.0, 'Total_Amt': 18.36, 'Trip_Distance': 4.28, 'Trip_Dropoff_DateTime': '2009-06-27 15:39:00', 'Trip_Pickup_DateTime': '2009-06-27 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777203, 'End_Lon': -73.980402, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760902, 'Start_Lon': -73.969078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-27 14:10:00', 'Trip_Pickup_DateTime': '2009-06-27 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772243, 'End_Lon': -73.97895, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791888, 'Start_Lon': -73.972042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-17 20:53:00', 'Trip_Pickup_DateTime': '2009-06-17 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71033, 'End_Lon': -74.009643, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.734138, 'Start_Lon': -73.991162, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 3.36, 'Trip_Dropoff_DateTime': '2009-06-28 03:44:00', 'Trip_Pickup_DateTime': '2009-06-28 03:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72664, 'End_Lon': -73.988997, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73834, 'Start_Lon': -73.999917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-27 14:51:00', 'Trip_Pickup_DateTime': '2009-06-27 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744042, 'End_Lon': -73.997598, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763055, 'Start_Lon': -73.983242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-28 07:30:00', 'Trip_Pickup_DateTime': '2009-06-28 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805943, 'End_Lon': -73.954323, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.799437, 'Start_Lon': -73.93606, 'Tip_Amt': 0.3, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-28 07:39:00', 'Trip_Pickup_DateTime': '2009-06-28 07:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755177, 'End_Lon': -73.97843, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750342, 'Start_Lon': -73.990838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-28 01:37:00', 'Trip_Pickup_DateTime': '2009-06-28 01:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764782, 'End_Lon': -73.973973, 'Fare_Amt': 2.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766347, 'Start_Lon': -73.977873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.24, 'Trip_Dropoff_DateTime': '2009-06-28 19:51:00', 'Trip_Pickup_DateTime': '2009-06-28 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747733, 'End_Lon': -73.994573, 'Fare_Amt': 3.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750372, 'Start_Lon': -74.002062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-27 03:20:00', 'Trip_Pickup_DateTime': '2009-06-27 03:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74307, 'End_Lon': -73.995073, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738612, 'Start_Lon': -74.009203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-28 02:45:00', 'Trip_Pickup_DateTime': '2009-06-28 02:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774927, 'End_Lon': -73.982045, 'Fare_Amt': 8.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794377, 'Start_Lon': -73.951005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-28 09:10:00', 'Trip_Pickup_DateTime': '2009-06-28 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.818265, 'End_Lon': -73.938153, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.816918, 'Start_Lon': -73.929867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-27 12:59:00', 'Trip_Pickup_DateTime': '2009-06-27 12:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754275, 'End_Lon': -73.96786, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777437, 'Start_Lon': -73.98931, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-28 10:41:00', 'Trip_Pickup_DateTime': '2009-06-28 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.814813, 'End_Lon': -73.95903, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.795402, 'Start_Lon': -73.97589, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-27 00:30:00', 'Trip_Pickup_DateTime': '2009-06-27 00:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755627, 'End_Lon': -73.986165, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755627, 'Start_Lon': -73.986165, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 28.0, 'Trip_Distance': 9.22, 'Trip_Dropoff_DateTime': '2009-06-26 21:34:00', 'Trip_Pickup_DateTime': '2009-06-26 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.728672, 'End_Lon': -74.005773, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706937, 'Start_Lon': -74.014155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-29 08:17:00', 'Trip_Pickup_DateTime': '2009-06-29 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703852, 'End_Lon': -74.01159, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758852, 'Start_Lon': -73.972083, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-29 08:41:00', 'Trip_Pickup_DateTime': '2009-06-29 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770805, 'End_Lon': -73.988768, 'Fare_Amt': 29.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768888, 'Start_Lon': -73.862685, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 34.35, 'Trip_Distance': 12.09, 'Trip_Dropoff_DateTime': '2009-06-26 21:54:00', 'Trip_Pickup_DateTime': '2009-06-26 21:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769525, 'End_Lon': -73.954682, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76511, 'Start_Lon': -73.972435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-01 14:20:00', 'Trip_Pickup_DateTime': '2009-06-01 14:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745638, 'End_Lon': -74.005638, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756725, 'Start_Lon': -73.968088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.27, 'Trip_Dropoff_DateTime': '2009-06-26 22:27:00', 'Trip_Pickup_DateTime': '2009-06-26 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.713047, 'End_Lon': -74.008897, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739313, 'Start_Lon': -73.991302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-26 15:02:00', 'Trip_Pickup_DateTime': '2009-06-26 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73113, 'End_Lon': -73.98207, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74011, 'Start_Lon': -73.989288, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-27 00:09:00', 'Trip_Pickup_DateTime': '2009-06-27 00:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70982, 'End_Lon': -74.015367, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767233, 'Start_Lon': -73.995863, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-27 03:05:00', 'Trip_Pickup_DateTime': '2009-06-27 02:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73112, 'End_Lon': -73.986105, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719598, 'Start_Lon': -73.99819, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-28 19:54:00', 'Trip_Pickup_DateTime': '2009-06-28 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735323, 'End_Lon': -73.985392, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742105, 'Start_Lon': -73.990943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-28 14:13:00', 'Trip_Pickup_DateTime': '2009-06-28 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.768547, 'End_Lon': -73.958148, 'Fare_Amt': 18.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707013, 'Start_Lon': -74.012278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 7.15, 'Trip_Dropoff_DateTime': '2009-06-26 21:52:00', 'Trip_Pickup_DateTime': '2009-06-26 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716103, 'End_Lon': -73.995598, 'Fare_Amt': 13.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754887, 'Start_Lon': -73.987593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-17 19:46:00', 'Trip_Pickup_DateTime': '2009-06-17 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774257, 'End_Lon': -73.989025, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785135, 'Start_Lon': -73.979202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-25 21:52:00', 'Trip_Pickup_DateTime': '2009-06-25 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743107, 'End_Lon': -74.000003, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.67918, 'Start_Lon': -73.978635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.51, 'Trip_Dropoff_DateTime': '2009-06-28 02:12:00', 'Trip_Pickup_DateTime': '2009-06-28 01:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731757, 'End_Lon': -74.003322, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760782, 'Start_Lon': -73.998427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.51, 'Trip_Dropoff_DateTime': '2009-06-26 19:58:00', 'Trip_Pickup_DateTime': '2009-06-26 19:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754008, 'End_Lon': -73.942268, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778327, 'Start_Lon': -73.98873, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-28 22:28:00', 'Trip_Pickup_DateTime': '2009-06-28 22:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723543, 'End_Lon': -73.951448, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727218, 'Start_Lon': -73.991665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.1, 'Trip_Distance': 3.81, 'Trip_Dropoff_DateTime': '2009-06-26 19:34:00', 'Trip_Pickup_DateTime': '2009-06-26 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.648698, 'End_Lon': -73.782318, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777582, 'Start_Lon': -73.983183, 'Tip_Amt': 9.0, 'Tolls_Amt': 5.0, 'Total_Amt': 59.0, 'Trip_Distance': 20.89, 'Trip_Dropoff_DateTime': '2009-06-26 10:08:00', 'Trip_Pickup_DateTime': '2009-06-26 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740105, 'End_Lon': -73.955307, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741767, 'Start_Lon': -73.953975, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 5.2, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-28 12:19:00', 'Trip_Pickup_DateTime': '2009-06-28 12:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777255, 'End_Lon': -73.978438, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813812, 'Start_Lon': -73.959523, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-27 00:05:00', 'Trip_Pickup_DateTime': '2009-06-26 23:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75912, 'End_Lon': -73.977605, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76458, 'Start_Lon': -73.973617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-26 15:15:00', 'Trip_Pickup_DateTime': '2009-06-26 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744247, 'End_Lon': -74.007568, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733873, 'Start_Lon': -73.986753, 'Tip_Amt': 0.3, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-26 10:13:00', 'Trip_Pickup_DateTime': '2009-06-26 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774232, 'End_Lon': -73.9691, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757632, 'Start_Lon': -73.989387, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.04, 'Trip_Dropoff_DateTime': '2009-06-26 18:08:00', 'Trip_Pickup_DateTime': '2009-06-26 17:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.837638, 'End_Lon': -73.956083, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.828912, 'Start_Lon': -74.000837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.03, 'Trip_Dropoff_DateTime': '2009-06-27 19:31:00', 'Trip_Pickup_DateTime': '2009-06-27 19:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757702, 'End_Lon': -73.988948, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771622, 'Start_Lon': -73.98263, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-26 19:02:00', 'Trip_Pickup_DateTime': '2009-06-26 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76667, 'End_Lon': -73.959477, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774075, 'Start_Lon': -73.948325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-26 14:37:00', 'Trip_Pickup_DateTime': '2009-06-26 14:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7634, 'End_Lon': -73.986322, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732652, 'Start_Lon': -74.006333, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-28 00:45:00', 'Trip_Pickup_DateTime': '2009-06-28 00:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768485, 'End_Lon': -73.984733, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779673, 'Start_Lon': -73.955555, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-27 18:30:00', 'Trip_Pickup_DateTime': '2009-06-27 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75287, 'End_Lon': -73.972152, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7535, 'Start_Lon': -73.980907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-06 21:45:00', 'Trip_Pickup_DateTime': '2009-06-06 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776315, 'End_Lon': -73.979642, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767398, 'Start_Lon': -73.98578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-04 19:46:00', 'Trip_Pickup_DateTime': '2009-06-04 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741412, 'End_Lon': -73.975182, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742333, 'Start_Lon': -73.996918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-03 14:57:00', 'Trip_Pickup_DateTime': '2009-06-03 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730183, 'End_Lon': -73.989615, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725158, 'Start_Lon': -73.992182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-03 14:20:00', 'Trip_Pickup_DateTime': '2009-06-03 14:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7054, 'End_Lon': -74.01738, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769627, 'Start_Lon': -73.984818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.31, 'Trip_Dropoff_DateTime': '2009-06-02 15:12:00', 'Trip_Pickup_DateTime': '2009-06-02 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784377, 'End_Lon': -73.975143, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751557, 'Start_Lon': -73.981585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.88, 'Trip_Dropoff_DateTime': '2009-06-03 08:17:00', 'Trip_Pickup_DateTime': '2009-06-03 08:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774378, 'End_Lon': -73.977365, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787602, 'Start_Lon': -73.97483, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-17 21:59:00', 'Trip_Pickup_DateTime': '2009-06-17 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.790703, 'End_Lon': -73.976512, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763195, 'Start_Lon': -73.966558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-07 11:28:00', 'Trip_Pickup_DateTime': '2009-06-07 11:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739808, 'End_Lon': -74.00613, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70559, 'Start_Lon': -74.009975, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-04 23:42:00', 'Trip_Pickup_DateTime': '2009-06-04 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75809, 'End_Lon': -73.9776, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760765, 'Start_Lon': -73.973218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-24 12:06:00', 'Trip_Pickup_DateTime': '2009-06-24 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73544, 'End_Lon': -73.989773, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743638, 'Start_Lon': -73.973722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-08 08:28:00', 'Trip_Pickup_DateTime': '2009-06-08 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756537, 'End_Lon': -73.972228, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740837, 'Start_Lon': -74.00517, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.15, 'Trip_Dropoff_DateTime': '2009-06-27 01:42:00', 'Trip_Pickup_DateTime': '2009-06-27 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75616, 'End_Lon': -73.986928, 'Fare_Amt': 7.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76159, 'Start_Lon': -73.967687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-05 20:57:00', 'Trip_Pickup_DateTime': '2009-06-05 20:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.742152, 'End_Lon': -73.998703, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747867, 'Start_Lon': -73.973793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-08 15:29:00', 'Trip_Pickup_DateTime': '2009-06-08 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7631, 'End_Lon': -73.972768, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759325, 'Start_Lon': -73.981797, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-03 14:00:00', 'Trip_Pickup_DateTime': '2009-06-03 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725752, 'End_Lon': -74.008338, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724293, 'Start_Lon': -73.992813, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-05 22:14:00', 'Trip_Pickup_DateTime': '2009-06-05 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.699548, 'End_Lon': -73.992047, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711873, 'Start_Lon': -74.00802, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-05 18:30:00', 'Trip_Pickup_DateTime': '2009-06-05 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730497, 'End_Lon': -73.9893, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773773, 'Start_Lon': -73.870847, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 28.5, 'Trip_Distance': 9.32, 'Trip_Dropoff_DateTime': '2009-06-02 19:06:00', 'Trip_Pickup_DateTime': '2009-06-02 18:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750698, 'End_Lon': -73.991322, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75219, 'Start_Lon': -73.97656, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-07 01:35:00', 'Trip_Pickup_DateTime': '2009-06-07 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763497, 'End_Lon': -73.969487, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.772428, 'Start_Lon': -73.953073, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.45, 'Trip_Dropoff_DateTime': '2009-06-08 11:08:00', 'Trip_Pickup_DateTime': '2009-06-08 11:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.609453, 'End_Lon': -74.064507, 'Fare_Amt': 34.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756582, 'Start_Lon': -73.991233, 'Tip_Amt': 0.0, 'Tolls_Amt': 12.45, 'Total_Amt': 47.85, 'Trip_Distance': 15.05, 'Trip_Dropoff_DateTime': '2009-06-07 02:07:00', 'Trip_Pickup_DateTime': '2009-06-07 01:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771347, 'End_Lon': -73.964397, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718612, 'Start_Lon': -73.987957, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 4.54, 'Trip_Dropoff_DateTime': '2009-06-06 08:54:00', 'Trip_Pickup_DateTime': '2009-06-06 08:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759743, 'End_Lon': -73.979185, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775412, 'Start_Lon': -73.982097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-04 12:45:00', 'Trip_Pickup_DateTime': '2009-06-04 12:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750602, 'End_Lon': -73.991215, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777062, 'Start_Lon': -73.963608, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-07 15:20:00', 'Trip_Pickup_DateTime': '2009-06-07 15:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760867, 'End_Lon': -73.966815, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77091, 'Start_Lon': -73.964013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-03 13:34:00', 'Trip_Pickup_DateTime': '2009-06-03 13:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745165, 'End_Lon': -73.908162, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758128, 'Start_Lon': -73.970023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-04 05:19:00', 'Trip_Pickup_DateTime': '2009-06-04 05:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75927, 'End_Lon': -73.987708, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758405, 'Start_Lon': -73.98062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.35, 'Trip_Dropoff_DateTime': '2009-06-05 11:19:00', 'Trip_Pickup_DateTime': '2009-06-05 11:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749972, 'End_Lon': -73.991717, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776113, 'Start_Lon': -73.953315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-18 05:21:00', 'Trip_Pickup_DateTime': '2009-06-18 05:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782347, 'End_Lon': -73.95771, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762465, 'Start_Lon': -73.97265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-15 20:58:00', 'Trip_Pickup_DateTime': '2009-06-15 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760245, 'End_Lon': -73.967843, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751952, 'Start_Lon': -73.973907, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-15 22:18:00', 'Trip_Pickup_DateTime': '2009-06-15 22:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731647, 'End_Lon': -73.987477, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77151, 'Start_Lon': -73.956428, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.6, 'Trip_Distance': 3.34, 'Trip_Dropoff_DateTime': '2009-06-04 21:52:00', 'Trip_Pickup_DateTime': '2009-06-04 21:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.720382, 'End_Lon': -73.992672, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748308, 'Start_Lon': -73.978008, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-15 20:38:00', 'Trip_Pickup_DateTime': '2009-06-15 20:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776492, 'End_Lon': -73.979555, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771018, 'Start_Lon': -73.983925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-06 12:58:00', 'Trip_Pickup_DateTime': '2009-06-06 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763535, 'End_Lon': -73.962528, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750555, 'Start_Lon': -73.994602, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-15 20:43:00', 'Trip_Pickup_DateTime': '2009-06-15 20:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7518, 'End_Lon': -73.977068, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735793, 'Start_Lon': -73.985248, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-04 08:49:00', 'Trip_Pickup_DateTime': '2009-06-04 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741593, 'End_Lon': -73.98561, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759505, 'Start_Lon': -73.977687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-04 14:36:00', 'Trip_Pickup_DateTime': '2009-06-04 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740568, 'End_Lon': -73.998898, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77325, 'Start_Lon': -73.954203, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.03, 'Trip_Dropoff_DateTime': '2009-06-05 22:13:00', 'Trip_Pickup_DateTime': '2009-06-05 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752838, 'End_Lon': -73.975222, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763337, 'Start_Lon': -73.973953, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-04 14:28:00', 'Trip_Pickup_DateTime': '2009-06-04 14:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773175, 'End_Lon': -73.957957, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770265, 'Start_Lon': -73.959997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.21, 'Trip_Dropoff_DateTime': '2009-06-05 11:44:00', 'Trip_Pickup_DateTime': '2009-06-05 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764228, 'End_Lon': -73.970283, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768725, 'Start_Lon': -73.987623, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-18 01:04:00', 'Trip_Pickup_DateTime': '2009-06-18 01:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766187, 'End_Lon': -73.981603, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778862, 'Start_Lon': -73.948088, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-03 16:12:00', 'Trip_Pickup_DateTime': '2009-06-03 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75604, 'End_Lon': -73.976697, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747423, 'Start_Lon': -73.981695, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-03 17:00:00', 'Trip_Pickup_DateTime': '2009-06-03 16:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72819, 'End_Lon': -73.949458, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724712, 'Start_Lon': -73.984583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.91, 'Trip_Dropoff_DateTime': '2009-06-02 07:23:00', 'Trip_Pickup_DateTime': '2009-06-02 07:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-03 17:21:00', 'Trip_Pickup_DateTime': '2009-06-03 17:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753067, 'End_Lon': -73.98014, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755988, 'Start_Lon': -73.990903, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-03 07:32:00', 'Trip_Pickup_DateTime': '2009-06-03 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737915, 'End_Lon': -74.000363, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.736927, 'Start_Lon': -73.989951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-06 18:46:12', 'Trip_Pickup_DateTime': '2009-06-06 18:42:34', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.7792, 'End_Lon': -73.954693, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7734, 'Start_Lon': -73.962117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-03 18:11:00', 'Trip_Pickup_DateTime': '2009-06-03 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747308, 'End_Lon': -73.972103, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755093, 'Start_Lon': -73.992315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-24 21:05:00', 'Trip_Pickup_DateTime': '2009-06-24 20:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748537, 'End_Lon': -73.988207, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748768, 'Start_Lon': -73.986667, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-21 02:44:00', 'Trip_Pickup_DateTime': '2009-06-21 02:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75911, 'End_Lon': -73.964655, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721988, 'Start_Lon': -73.986297, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.1, 'Trip_Dropoff_DateTime': '2009-06-21 03:33:00', 'Trip_Pickup_DateTime': '2009-06-21 03:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772617, 'End_Lon': -73.977197, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766862, 'Start_Lon': -73.978915, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-07 10:27:00', 'Trip_Pickup_DateTime': '2009-06-07 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75777, 'End_Lon': -73.985303, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.732615, 'Start_Lon': -74.003443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-28 22:22:00', 'Trip_Pickup_DateTime': '2009-06-28 22:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76906, 'End_Lon': -73.96535, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750045, 'Start_Lon': -73.991398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-03 18:34:00', 'Trip_Pickup_DateTime': '2009-06-03 18:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75704, 'End_Lon': -73.978432, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755747, 'Start_Lon': -73.96475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-02 22:17:00', 'Trip_Pickup_DateTime': '2009-06-02 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773005, 'End_Lon': -73.981755, 'Fare_Amt': 16.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711983, 'Start_Lon': -74.009127, 'Tip_Amt': 3.3, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 5.13, 'Trip_Dropoff_DateTime': '2009-06-03 14:17:00', 'Trip_Pickup_DateTime': '2009-06-03 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747263, 'End_Lon': -74.007735, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706418, 'Start_Lon': -74.016293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.89, 'Trip_Dropoff_DateTime': '2009-06-04 09:08:00', 'Trip_Pickup_DateTime': '2009-06-04 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754727, 'End_Lon': -73.970175, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770827, 'Start_Lon': -73.95078, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-05 08:39:00', 'Trip_Pickup_DateTime': '2009-06-05 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739223, 'End_Lon': -73.986152, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755613, 'Start_Lon': -73.968033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-06 19:35:00', 'Trip_Pickup_DateTime': '2009-06-06 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753617, 'End_Lon': -73.977057, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763022, 'Start_Lon': -73.978125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-04 22:31:00', 'Trip_Pickup_DateTime': '2009-06-04 22:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760007, 'End_Lon': -73.96793, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764753, 'Start_Lon': -73.980575, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-04 20:34:00', 'Trip_Pickup_DateTime': '2009-06-04 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754888, 'End_Lon': -73.983017, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73045, 'Start_Lon': -73.985502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-06 01:09:00', 'Trip_Pickup_DateTime': '2009-06-06 00:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718083, 'End_Lon': -74.005627, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705443, 'Start_Lon': -74.010822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-07 21:14:00', 'Trip_Pickup_DateTime': '2009-06-07 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73947, 'End_Lon': -73.93469, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767777, 'Start_Lon': -73.981065, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-06 11:26:00', 'Trip_Pickup_DateTime': '2009-06-06 11:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.645317, 'End_Lon': -73.776357, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7225, 'Start_Lon': -73.988618, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 17.7, 'Trip_Dropoff_DateTime': '2009-06-03 16:49:00', 'Trip_Pickup_DateTime': '2009-06-03 15:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75244, 'End_Lon': -73.966687, 'Fare_Amt': 27.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76972, 'Start_Lon': -73.864208, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.45, 'Trip_Distance': 11.84, 'Trip_Dropoff_DateTime': '2009-06-05 08:49:00', 'Trip_Pickup_DateTime': '2009-06-05 08:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760688, 'End_Lon': -73.976907, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75341, 'Start_Lon': -73.969852, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-03 11:40:00', 'Trip_Pickup_DateTime': '2009-06-03 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754552, 'End_Lon': -73.972968, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758635, 'Start_Lon': -73.970582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 2.9, 'Trip_Distance': 0.31, 'Trip_Dropoff_DateTime': '2009-06-03 15:17:00', 'Trip_Pickup_DateTime': '2009-06-03 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715282, 'End_Lon': -74.015602, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72715, 'Start_Lon': -74.000607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-02 21:43:00', 'Trip_Pickup_DateTime': '2009-06-02 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786977, 'End_Lon': -73.954207, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758985, 'Start_Lon': -73.981422, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-04 11:09:00', 'Trip_Pickup_DateTime': '2009-06-04 10:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714888, 'End_Lon': -73.996802, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.710222, 'Start_Lon': -74.009722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-06 19:59:00', 'Trip_Pickup_DateTime': '2009-06-06 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784097, 'End_Lon': -73.956837, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764377, 'Start_Lon': -73.971128, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-05 13:33:00', 'Trip_Pickup_DateTime': '2009-06-05 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.798767, 'End_Lon': -73.959517, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739608, 'Start_Lon': -73.976587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.4, 'Trip_Distance': 5.28, 'Trip_Dropoff_DateTime': '2009-06-29 01:13:00', 'Trip_Pickup_DateTime': '2009-06-29 00:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799685, 'End_Lon': -73.95225, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770982, 'Start_Lon': -73.966188, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-05 22:08:00', 'Trip_Pickup_DateTime': '2009-06-05 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791995, 'End_Lon': -73.977413, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768743, 'Start_Lon': -73.984967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-04 17:47:00', 'Trip_Pickup_DateTime': '2009-06-04 17:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78381, 'End_Lon': -73.954415, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775445, 'Start_Lon': -73.96059, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-05 09:05:00', 'Trip_Pickup_DateTime': '2009-06-05 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810928, 'End_Lon': -73.95271, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775163, 'Start_Lon': -73.960765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-26 12:46:00', 'Trip_Pickup_DateTime': '2009-06-26 12:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769633, 'End_Lon': -73.954663, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777143, 'Start_Lon': -73.9535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-05 17:10:00', 'Trip_Pickup_DateTime': '2009-06-05 17:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71915, 'End_Lon': -73.999973, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743175, 'Start_Lon': -73.996358, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.02, 'Trip_Dropoff_DateTime': '2009-06-15 19:51:00', 'Trip_Pickup_DateTime': '2009-06-15 19:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763955, 'End_Lon': -73.978617, 'Fare_Amt': 8.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725625, 'Start_Lon': -74.003945, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 3.12, 'Trip_Dropoff_DateTime': '2009-06-08 00:35:00', 'Trip_Pickup_DateTime': '2009-06-08 00:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772633, 'End_Lon': -73.967248, 'Fare_Amt': 16.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720058, 'Start_Lon': -73.997098, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-03 14:21:00', 'Trip_Pickup_DateTime': '2009-06-03 13:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745762, 'End_Lon': -73.975982, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769862, 'Start_Lon': -73.954807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.96, 'Trip_Dropoff_DateTime': '2009-06-08 10:46:00', 'Trip_Pickup_DateTime': '2009-06-08 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800807, 'End_Lon': -73.970512, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764212, 'Start_Lon': -73.974895, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-25 21:20:00', 'Trip_Pickup_DateTime': '2009-06-25 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78764, 'End_Lon': -73.968692, 'Fare_Amt': 16.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725578, 'Start_Lon': -73.977708, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.5, 'Trip_Dropoff_DateTime': '2009-06-21 03:15:00', 'Trip_Pickup_DateTime': '2009-06-21 02:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776015, 'End_Lon': -73.949902, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769693, 'Start_Lon': -73.960613, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-06 16:15:00', 'Trip_Pickup_DateTime': '2009-06-06 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773623, 'End_Lon': -73.960732, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763793, 'Start_Lon': -73.975132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-03 14:56:00', 'Trip_Pickup_DateTime': '2009-06-03 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749728, 'End_Lon': -73.971767, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738002, 'Start_Lon': -73.973533, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-08 08:18:00', 'Trip_Pickup_DateTime': '2009-06-08 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749973, 'End_Lon': -73.979403, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752445, 'Start_Lon': -73.967372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-07 18:42:00', 'Trip_Pickup_DateTime': '2009-06-07 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772253, 'End_Lon': -73.964278, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780018, 'Start_Lon': -73.955317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-03 08:50:00', 'Trip_Pickup_DateTime': '2009-06-03 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741548, 'End_Lon': -73.985537, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73406, 'Start_Lon': -73.988887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-17 23:24:00', 'Trip_Pickup_DateTime': '2009-06-17 23:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765373, 'End_Lon': -73.963823, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757702, 'Start_Lon': -73.969498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-02 10:01:00', 'Trip_Pickup_DateTime': '2009-06-02 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.776735, 'End_Lon': -73.986632, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748025, 'Start_Lon': -73.989057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-02 10:12:00', 'Trip_Pickup_DateTime': '2009-06-02 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788778, 'End_Lon': -73.97752, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781297, 'Start_Lon': -73.960552, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-05 02:21:00', 'Trip_Pickup_DateTime': '2009-06-05 02:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744492, 'End_Lon': -73.978928, 'Fare_Amt': 13.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.783847, 'Start_Lon': -73.980215, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-28 19:02:00', 'Trip_Pickup_DateTime': '2009-06-28 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738987, 'End_Lon': -73.982008, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74442, 'Start_Lon': -73.982872, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.6, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-06 03:50:00', 'Trip_Pickup_DateTime': '2009-06-06 03:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734743, 'End_Lon': -74.000043, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.729107, 'Start_Lon': -74.007025, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-15 19:57:00', 'Trip_Pickup_DateTime': '2009-06-15 19:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.705577, 'End_Lon': -74.006185, 'Fare_Amt': 33.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773977, 'Start_Lon': -73.872563, 'Tip_Amt': 4.0, 'Tolls_Amt': 4.15, 'Total_Amt': 41.85, 'Trip_Distance': 14.6, 'Trip_Dropoff_DateTime': '2009-06-08 08:42:00', 'Trip_Pickup_DateTime': '2009-06-08 08:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760323, 'End_Lon': -73.965905, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756292, 'Start_Lon': -73.975817, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-15 19:52:00', 'Trip_Pickup_DateTime': '2009-06-15 19:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737308, 'End_Lon': -73.994615, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755072, 'Start_Lon': -73.977637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.16, 'Trip_Dropoff_DateTime': '2009-06-06 20:53:00', 'Trip_Pickup_DateTime': '2009-06-06 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757582, 'End_Lon': -73.981127, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768515, 'Start_Lon': -73.969673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-03 16:08:00', 'Trip_Pickup_DateTime': '2009-06-03 15:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735083, 'End_Lon': -74.026645, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738923, 'Start_Lon': -73.977185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-05 07:53:00', 'Trip_Pickup_DateTime': '2009-06-05 07:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787635, 'End_Lon': -73.978065, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.691225, 'Start_Lon': -73.991848, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.7, 'Trip_Distance': 8.25, 'Trip_Dropoff_DateTime': '2009-06-06 12:27:00', 'Trip_Pickup_DateTime': '2009-06-06 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757828, 'End_Lon': -73.973602, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72247, 'Start_Lon': -73.997152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.81, 'Trip_Dropoff_DateTime': '2009-06-02 10:01:00', 'Trip_Pickup_DateTime': '2009-06-02 09:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801955, 'End_Lon': -73.967265, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779025, 'Start_Lon': -73.981407, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-07 10:21:00', 'Trip_Pickup_DateTime': '2009-06-07 10:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756475, 'End_Lon': -73.913532, 'Fare_Amt': 23.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70361, 'Start_Lon': -73.994763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 23.8, 'Trip_Distance': 8.78, 'Trip_Dropoff_DateTime': '2009-06-07 23:01:00', 'Trip_Pickup_DateTime': '2009-06-07 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743657, 'End_Lon': -73.996027, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742208, 'Start_Lon': -73.983135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-04 12:13:00', 'Trip_Pickup_DateTime': '2009-06-04 12:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786482, 'End_Lon': -73.968817, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791827, 'Start_Lon': -73.974063, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-05 14:32:00', 'Trip_Pickup_DateTime': '2009-06-05 14:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749938, 'End_Lon': -73.991505, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764845, 'Start_Lon': -73.973985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.69, 'Trip_Dropoff_DateTime': '2009-06-02 17:09:00', 'Trip_Pickup_DateTime': '2009-06-02 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722602, 'End_Lon': -73.987152, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758563, 'Start_Lon': -73.986373, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.17, 'Trip_Dropoff_DateTime': '2009-06-27 01:00:00', 'Trip_Pickup_DateTime': '2009-06-27 00:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753497, 'End_Lon': -73.977647, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762988, 'Start_Lon': -73.969755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-05 18:52:00', 'Trip_Pickup_DateTime': '2009-06-05 18:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76623, 'End_Lon': -73.982002, 'Fare_Amt': 27.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76896, 'Start_Lon': -73.863392, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 36.45, 'Trip_Distance': 10.46, 'Trip_Dropoff_DateTime': '2009-06-02 10:57:00', 'Trip_Pickup_DateTime': '2009-06-02 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.678762, 'End_Lon': -73.995555, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.689545, 'Start_Lon': -73.970423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-07 23:30:00', 'Trip_Pickup_DateTime': '2009-06-07 23:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776205, 'End_Lon': -73.904312, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759917, 'Start_Lon': -73.987923, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.31, 'Trip_Dropoff_DateTime': '2009-06-03 06:08:00', 'Trip_Pickup_DateTime': '2009-06-03 05:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777918, 'End_Lon': -73.950703, 'Fare_Amt': 19.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711118, 'Start_Lon': -74.015663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 8.07, 'Trip_Dropoff_DateTime': '2009-06-05 00:44:00', 'Trip_Pickup_DateTime': '2009-06-05 00:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751122, 'End_Lon': -73.990435, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744747, 'Start_Lon': -73.975938, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-06 02:12:00', 'Trip_Pickup_DateTime': '2009-06-06 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74139, 'End_Lon': -73.98073, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749645, 'Start_Lon': -73.976967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-15 22:44:00', 'Trip_Pickup_DateTime': '2009-06-15 22:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.778088, 'End_Lon': -73.962903, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757627, 'Start_Lon': -73.975193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-28 18:47:00', 'Trip_Pickup_DateTime': '2009-06-28 18:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723377, 'End_Lon': -73.999363, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720265, 'Start_Lon': -74.010192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-08 10:20:00', 'Trip_Pickup_DateTime': '2009-06-08 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786567, 'End_Lon': -73.953285, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777778, 'Start_Lon': -73.947572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.17, 'Trip_Dropoff_DateTime': '2009-06-02 16:54:00', 'Trip_Pickup_DateTime': '2009-06-02 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.680333, 'End_Lon': -73.97256, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76526, 'Start_Lon': -73.98008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 7.69, 'Trip_Dropoff_DateTime': '2009-06-15 22:57:00', 'Trip_Pickup_DateTime': '2009-06-15 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.86584, 'End_Lon': -73.923185, 'Fare_Amt': 30.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720272, 'Start_Lon': -73.993632, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 31.0, 'Trip_Distance': 12.83, 'Trip_Dropoff_DateTime': '2009-06-05 01:54:00', 'Trip_Pickup_DateTime': '2009-06-05 01:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.687712, 'End_Lon': -74.181695, 'Fare_Amt': 49.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757522, 'Start_Lon': -73.989273, 'Tip_Amt': 7.7, 'Tolls_Amt': 8.0, 'Total_Amt': 66.1, 'Trip_Distance': 16.16, 'Trip_Dropoff_DateTime': '2009-06-05 06:05:00', 'Trip_Pickup_DateTime': '2009-06-05 05:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.762727, 'End_Lon': -73.956485, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767763, 'Start_Lon': -73.963943, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-08 07:04:00', 'Trip_Pickup_DateTime': '2009-06-08 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.632668, 'End_Lon': -74.021418, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752647, 'Start_Lon': -73.97528, 'Tip_Amt': 5.88, 'Tolls_Amt': 0.0, 'Total_Amt': 35.68, 'Trip_Distance': 12.06, 'Trip_Dropoff_DateTime': '2009-06-15 22:29:00', 'Trip_Pickup_DateTime': '2009-06-15 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76001, 'End_Lon': -73.971837, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767915, 'Start_Lon': -73.956333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-24 07:33:00', 'Trip_Pickup_DateTime': '2009-06-24 07:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762043, 'End_Lon': -73.967793, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735405, 'Start_Lon': -73.996163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-06 01:14:00', 'Trip_Pickup_DateTime': '2009-06-06 01:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768763, 'End_Lon': -73.993765, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752365, 'Start_Lon': -73.978435, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.06, 'Trip_Dropoff_DateTime': '2009-06-18 08:12:00', 'Trip_Pickup_DateTime': '2009-06-18 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.829142, 'End_Lon': -73.937472, 'Fare_Amt': 24.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715952, 'Start_Lon': -73.995352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.4, 'Trip_Distance': 10.52, 'Trip_Dropoff_DateTime': '2009-06-02 02:32:00', 'Trip_Pickup_DateTime': '2009-06-02 02:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.695617, 'End_Lon': -73.993908, 'Fare_Amt': 43.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.645012, 'Start_Lon': -73.776867, 'Tip_Amt': 10.95, 'Tolls_Amt': 0.0, 'Total_Amt': 54.75, 'Trip_Distance': 19.51, 'Trip_Dropoff_DateTime': '2009-06-15 22:03:00', 'Trip_Pickup_DateTime': '2009-06-15 21:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786075, 'End_Lon': -73.97616, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761878, 'Start_Lon': -73.983052, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-08 14:58:00', 'Trip_Pickup_DateTime': '2009-06-08 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800455, 'End_Lon': -73.942602, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726322, 'Start_Lon': -74.0057, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.2, 'Trip_Distance': 9.24, 'Trip_Dropoff_DateTime': '2009-06-02 00:41:00', 'Trip_Pickup_DateTime': '2009-06-02 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.669025, 'End_Lon': -73.982465, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734937, 'Start_Lon': -74.007042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 5.47, 'Trip_Dropoff_DateTime': '2009-06-06 22:20:00', 'Trip_Pickup_DateTime': '2009-06-06 21:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.803415, 'End_Lon': -73.970165, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78228, 'Start_Lon': -73.97775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-15 23:38:00', 'Trip_Pickup_DateTime': '2009-06-15 23:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750152, 'End_Lon': -73.994947, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711188, 'Start_Lon': -74.015648, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 3.42, 'Trip_Dropoff_DateTime': '2009-06-05 15:59:00', 'Trip_Pickup_DateTime': '2009-06-05 15:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758645, 'End_Lon': -73.967427, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76985, 'Start_Lon': -73.951468, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-18 07:51:00', 'Trip_Pickup_DateTime': '2009-06-18 07:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749797, 'End_Lon': -73.991165, 'Fare_Amt': 11.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.71935, 'Start_Lon': -73.997283, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-15 23:11:00', 'Trip_Pickup_DateTime': '2009-06-15 22:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754327, 'End_Lon': -73.991708, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745315, 'Start_Lon': -73.998722, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-18 07:35:00', 'Trip_Pickup_DateTime': '2009-06-18 07:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786067, 'End_Lon': -73.942678, 'Fare_Amt': 11.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76101, 'Start_Lon': -73.990255, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.13, 'Trip_Dropoff_DateTime': '2009-06-08 02:29:00', 'Trip_Pickup_DateTime': '2009-06-08 02:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77667, 'End_Lon': -73.984775, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755713, 'Start_Lon': -73.977438, 'Tip_Amt': 1.4, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-05 21:16:00', 'Trip_Pickup_DateTime': '2009-06-05 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.694805, 'End_Lon': -73.969113, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729112, 'Start_Lon': -73.993617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.76, 'Trip_Dropoff_DateTime': '2009-06-27 00:18:00', 'Trip_Pickup_DateTime': '2009-06-27 00:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770583, 'End_Lon': -73.95865, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.794893, 'Start_Lon': -73.962488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.38, 'Trip_Dropoff_DateTime': '2009-06-06 20:31:00', 'Trip_Pickup_DateTime': '2009-06-06 20:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719288, 'End_Lon': -74.004045, 'Fare_Amt': 3.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709943, 'Start_Lon': -74.011338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-04 23:26:00', 'Trip_Pickup_DateTime': '2009-06-04 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.625942, 'End_Lon': -74.028112, 'Fare_Amt': 24.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734448, 'Start_Lon': -74.002222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.4, 'Trip_Distance': 10.42, 'Trip_Dropoff_DateTime': '2009-06-18 03:08:00', 'Trip_Pickup_DateTime': '2009-06-18 02:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.813752, 'End_Lon': -73.961072, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756238, 'Start_Lon': -73.975825, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 5.57, 'Trip_Dropoff_DateTime': '2009-06-18 02:33:00', 'Trip_Pickup_DateTime': '2009-06-18 02:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736488, 'End_Lon': -73.990805, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743292, 'Start_Lon': -73.98672, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-04 21:46:00', 'Trip_Pickup_DateTime': '2009-06-04 21:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764684, 'End_Lon': -73.964451, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.756221, 'Start_Lon': -73.965648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-30 07:34:18', 'Trip_Pickup_DateTime': '2009-06-30 07:31:47', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.7615, 'End_Lon': -73.966375, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75507, 'Start_Lon': -73.968292, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-16 07:04:00', 'Trip_Pickup_DateTime': '2009-06-16 07:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722437, 'End_Lon': -73.99341, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.685082, 'Start_Lon': -73.977892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-06 18:52:00', 'Trip_Pickup_DateTime': '2009-06-06 18:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759957, 'End_Lon': -73.987397, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754718, 'Start_Lon': -73.989093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.48, 'Trip_Dropoff_DateTime': '2009-06-06 13:10:00', 'Trip_Pickup_DateTime': '2009-06-06 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-05 09:23:00', 'Trip_Pickup_DateTime': '2009-06-05 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759898, 'End_Lon': -73.970163, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77919, 'Start_Lon': -73.962123, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-07 16:27:00', 'Trip_Pickup_DateTime': '2009-06-07 16:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755052, 'End_Lon': -73.983992, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725957, 'Start_Lon': -73.983617, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-05 11:49:00', 'Trip_Pickup_DateTime': '2009-06-05 11:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.65951, 'End_Lon': -73.991728, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742707, 'Start_Lon': -73.984717, 'Tip_Amt': 3.64, 'Tolls_Amt': 0.0, 'Total_Amt': 21.84, 'Trip_Distance': 6.86, 'Trip_Dropoff_DateTime': '2009-06-16 03:42:00', 'Trip_Pickup_DateTime': '2009-06-16 03:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760243, 'End_Lon': -73.97523, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75109, 'Start_Lon': -73.988317, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-02 21:45:00', 'Trip_Pickup_DateTime': '2009-06-02 21:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.634537, 'End_Lon': -73.967375, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.595132, 'Start_Lon': -73.96093, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-04 15:54:00', 'Trip_Pickup_DateTime': '2009-06-04 15:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.843772, 'End_Lon': -73.942308, 'Fare_Amt': 18.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759467, 'Start_Lon': -73.988988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.6, 'Trip_Distance': 7.44, 'Trip_Dropoff_DateTime': '2009-06-16 04:21:00', 'Trip_Pickup_DateTime': '2009-06-16 04:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741275, 'End_Lon': -73.993963, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728722, 'Start_Lon': -74.006988, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.51, 'Trip_Dropoff_DateTime': '2009-06-04 12:46:00', 'Trip_Pickup_DateTime': '2009-06-04 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.802392, 'End_Lon': -73.938978, 'Fare_Amt': 12.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760138, 'Start_Lon': -73.987518, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.6, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-16 02:13:00', 'Trip_Pickup_DateTime': '2009-06-16 01:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782003, 'End_Lon': -73.957975, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764658, 'Start_Lon': -73.970585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-05 10:32:00', 'Trip_Pickup_DateTime': '2009-06-05 10:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752475, 'End_Lon': -73.985652, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761745, 'Start_Lon': -73.99031, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-03 22:56:00', 'Trip_Pickup_DateTime': '2009-06-03 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.797928, 'End_Lon': -73.969142, 'Fare_Amt': 26.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724488, 'Start_Lon': -73.990728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 27.4, 'Trip_Distance': 8.26, 'Trip_Dropoff_DateTime': '2009-06-06 04:56:00', 'Trip_Pickup_DateTime': '2009-06-06 04:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758003, 'End_Lon': -73.91, 'Fare_Amt': 22.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74792, 'Start_Lon': -73.985048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.6, 'Trip_Distance': 7.66, 'Trip_Dropoff_DateTime': '2009-06-05 00:36:00', 'Trip_Pickup_DateTime': '2009-06-05 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.842458, 'End_Lon': -73.940783, 'Fare_Amt': 20.1, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757167, 'Start_Lon': -73.97003, 'Tip_Amt': 4.02, 'Tolls_Amt': 0.0, 'Total_Amt': 24.12, 'Trip_Distance': 7.97, 'Trip_Dropoff_DateTime': '2009-06-07 13:21:00', 'Trip_Pickup_DateTime': '2009-06-07 13:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788888, 'End_Lon': -73.953082, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781957, 'Start_Lon': -73.949355, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-18 08:33:00', 'Trip_Pickup_DateTime': '2009-06-18 08:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782082, 'End_Lon': -73.953743, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774545, 'Start_Lon': -73.957988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-07 18:33:00', 'Trip_Pickup_DateTime': '2009-06-07 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75666, 'End_Lon': -73.975983, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804167, 'Start_Lon': -73.966807, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.2, 'Trip_Dropoff_DateTime': '2009-06-05 07:32:00', 'Trip_Pickup_DateTime': '2009-06-05 07:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736427, 'End_Lon': -73.974607, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752638, 'Start_Lon': -73.970337, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-02 21:47:00', 'Trip_Pickup_DateTime': '2009-06-02 21:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764928, 'End_Lon': -73.956288, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767158, 'Start_Lon': -73.97104, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-04 10:02:00', 'Trip_Pickup_DateTime': '2009-06-04 09:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727428, 'End_Lon': -73.996302, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727428, 'Start_Lon': -73.996302, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-06 04:25:00', 'Trip_Pickup_DateTime': '2009-06-06 04:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779367, 'End_Lon': -73.95286, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727772, 'Start_Lon': -73.985297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 4.21, 'Trip_Dropoff_DateTime': '2009-06-16 00:33:00', 'Trip_Pickup_DateTime': '2009-06-16 00:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.737672, 'End_Lon': -73.996867, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.724443, 'Start_Lon': -73.990827, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-07 03:29:00', 'Trip_Pickup_DateTime': '2009-06-07 03:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765115, 'End_Lon': -73.970712, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758373, 'Start_Lon': -73.975143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-07 21:10:00', 'Trip_Pickup_DateTime': '2009-06-07 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.723482, 'End_Lon': -73.994752, 'Fare_Amt': 18.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779352, 'Start_Lon': -73.95084, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.1, 'Trip_Distance': 6.21, 'Trip_Dropoff_DateTime': '2009-06-05 17:04:00', 'Trip_Pickup_DateTime': '2009-06-05 16:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764038, 'End_Lon': -73.997792, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78111, 'Start_Lon': -73.9499, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.11, 'Trip_Dropoff_DateTime': '2009-06-07 14:23:00', 'Trip_Pickup_DateTime': '2009-06-07 14:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770513, 'End_Lon': -73.865072, 'Fare_Amt': 23.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765407, 'Start_Lon': -73.96456, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 27.85, 'Trip_Distance': 10.05, 'Trip_Dropoff_DateTime': '2009-06-18 08:31:00', 'Trip_Pickup_DateTime': '2009-06-18 08:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78339, 'End_Lon': -73.958655, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763295, 'Start_Lon': -73.970997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-04 12:54:00', 'Trip_Pickup_DateTime': '2009-06-04 12:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744613, 'End_Lon': -73.991933, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.77031, 'Start_Lon': -73.991605, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-08 09:04:00', 'Trip_Pickup_DateTime': '2009-06-08 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.672513, 'End_Lon': -73.976945, 'Fare_Amt': 14.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723, 'Start_Lon': -73.989055, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.35, 'Trip_Dropoff_DateTime': '2009-06-02 01:01:00', 'Trip_Pickup_DateTime': '2009-06-02 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76803, 'End_Lon': -73.963995, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789143, 'Start_Lon': -73.966615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-03 09:56:00', 'Trip_Pickup_DateTime': '2009-06-03 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74297, 'End_Lon': -74.000553, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.728142, 'Start_Lon': -73.9954, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-03 19:37:00', 'Trip_Pickup_DateTime': '2009-06-03 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791188, 'End_Lon': -73.974398, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79965, 'Start_Lon': -73.968377, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-05 11:44:00', 'Trip_Pickup_DateTime': '2009-06-05 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752807, 'End_Lon': -73.989565, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760915, 'Start_Lon': -73.970803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.76, 'Trip_Dropoff_DateTime': '2009-06-08 15:42:00', 'Trip_Pickup_DateTime': '2009-06-08 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772253, 'End_Lon': -73.966465, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756395, 'Start_Lon': -73.96447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-05 08:46:00', 'Trip_Pickup_DateTime': '2009-06-05 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756345, 'End_Lon': -73.973445, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750602, 'Start_Lon': -73.996252, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-21 06:58:00', 'Trip_Pickup_DateTime': '2009-06-21 06:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79498, 'End_Lon': -73.973375, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.81894, 'Start_Lon': -73.956172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-02 17:52:00', 'Trip_Pickup_DateTime': '2009-06-02 17:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773473, 'End_Lon': -73.963212, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780833, 'Start_Lon': -73.956718, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-05 18:29:00', 'Trip_Pickup_DateTime': '2009-06-05 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749668, 'End_Lon': -73.972082, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745433, 'Start_Lon': -74.002187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-02 20:22:00', 'Trip_Pickup_DateTime': '2009-06-02 20:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789667, 'End_Lon': -73.950142, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78108, 'Start_Lon': -73.956828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-02 13:49:00', 'Trip_Pickup_DateTime': '2009-06-02 13:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.797217, 'End_Lon': -73.938173, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804625, 'Start_Lon': -73.937858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-07 16:40:00', 'Trip_Pickup_DateTime': '2009-06-07 16:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756595, 'End_Lon': -73.972168, 'Fare_Amt': 6.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774673, 'Start_Lon': -73.953925, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.78, 'Trip_Dropoff_DateTime': '2009-06-15 22:35:00', 'Trip_Pickup_DateTime': '2009-06-15 22:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.773165, 'End_Lon': -73.885568, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753035, 'Start_Lon': -73.987303, 'Tip_Amt': 4.34, 'Tolls_Amt': 4.15, 'Total_Amt': 30.19, 'Trip_Distance': 8.43, 'Trip_Dropoff_DateTime': '2009-06-04 15:10:00', 'Trip_Pickup_DateTime': '2009-06-04 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737233, 'End_Lon': -73.97851, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742142, 'Start_Lon': -73.989143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-18 08:00:00', 'Trip_Pickup_DateTime': '2009-06-18 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702458, 'End_Lon': -73.988422, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724963, 'Start_Lon': -73.981293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 4.2, 'Trip_Dropoff_DateTime': '2009-06-02 13:35:00', 'Trip_Pickup_DateTime': '2009-06-02 13:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775072, 'End_Lon': -73.947803, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764545, 'Start_Lon': -73.963918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-05 20:26:00', 'Trip_Pickup_DateTime': '2009-06-05 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.60522, 'End_Lon': -74.097952, 'Fare_Amt': 42.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753742, 'Start_Lon': -73.973523, 'Tip_Amt': 0.0, 'Tolls_Amt': 12.45, 'Total_Amt': 55.45, 'Trip_Distance': 18.73, 'Trip_Dropoff_DateTime': '2009-06-06 21:17:00', 'Trip_Pickup_DateTime': '2009-06-06 20:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76528, 'End_Lon': -73.967558, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776238, 'Start_Lon': -73.95805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-04 18:59:00', 'Trip_Pickup_DateTime': '2009-06-04 18:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721375, 'End_Lon': -74.008397, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717982, 'Start_Lon': -73.999832, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-05 19:14:00', 'Trip_Pickup_DateTime': '2009-06-05 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737707, 'End_Lon': -74.0044, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729547, 'Start_Lon': -74.007003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-03 02:44:00', 'Trip_Pickup_DateTime': '2009-06-03 02:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77216, 'End_Lon': -73.92923, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772073, 'Start_Lon': -73.919128, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-21 00:49:00', 'Trip_Pickup_DateTime': '2009-06-21 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771515, 'End_Lon': -73.983208, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758293, 'Start_Lon': -73.994513, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-04 16:15:00', 'Trip_Pickup_DateTime': '2009-06-04 16:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77417, 'End_Lon': -73.948845, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771652, 'Start_Lon': -73.959228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-03 18:42:00', 'Trip_Pickup_DateTime': '2009-06-03 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758147, 'End_Lon': -73.98202, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768035, 'Start_Lon': -73.968225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-04 09:58:00', 'Trip_Pickup_DateTime': '2009-06-04 09:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751982, 'End_Lon': -73.99042, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767698, 'Start_Lon': -73.984422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-21 13:03:00', 'Trip_Pickup_DateTime': '2009-06-21 12:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748888, 'End_Lon': -73.981825, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735438, 'Start_Lon': -73.9794, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-06 14:41:00', 'Trip_Pickup_DateTime': '2009-06-06 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721578, 'End_Lon': -73.98236, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71948, 'Start_Lon': -74.00528, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-04 22:49:00', 'Trip_Pickup_DateTime': '2009-06-04 22:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748628, 'End_Lon': -73.984657, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761567, 'Start_Lon': -73.97785, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-08 14:30:00', 'Trip_Pickup_DateTime': '2009-06-08 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75634, 'End_Lon': -73.974812, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.69468, 'Start_Lon': -73.99428, 'Tip_Amt': 4.18, 'Tolls_Amt': 0.0, 'Total_Amt': 25.08, 'Trip_Distance': 7.21, 'Trip_Dropoff_DateTime': '2009-06-02 13:30:00', 'Trip_Pickup_DateTime': '2009-06-02 13:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73687, 'End_Lon': -73.882758, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721852, 'Start_Lon': -73.844172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-20 02:03:00', 'Trip_Pickup_DateTime': '2009-06-20 01:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74219, 'End_Lon': -74.008423, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767088, 'Start_Lon': -73.99377, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-06 10:20:00', 'Trip_Pickup_DateTime': '2009-06-06 10:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757218, 'End_Lon': -73.969528, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764082, 'Start_Lon': -73.955727, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-02 14:33:00', 'Trip_Pickup_DateTime': '2009-06-02 14:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780615, 'End_Lon': -73.91232, 'Fare_Amt': 16.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76181, 'Start_Lon': -73.977602, 'Tip_Amt': 3.4, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 5.79, 'Trip_Dropoff_DateTime': '2009-06-08 01:54:00', 'Trip_Pickup_DateTime': '2009-06-08 01:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.695485, 'End_Lon': -74.177905, 'Fare_Amt': 82.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.695485, 'Start_Lon': -74.177905, 'Tip_Amt': 10.0, 'Tolls_Amt': 0.0, 'Total_Amt': 92.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-21 12:30:00', 'Trip_Pickup_DateTime': '2009-06-21 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764695, 'End_Lon': -73.991873, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74225, 'Start_Lon': -73.993198, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-21 10:44:00', 'Trip_Pickup_DateTime': '2009-06-21 10:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783373, 'End_Lon': -73.975115, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761638, 'Start_Lon': -73.994025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-07 14:42:00', 'Trip_Pickup_DateTime': '2009-06-07 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758583, 'End_Lon': -73.95827, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743533, 'Start_Lon': -73.993132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.24, 'Trip_Dropoff_DateTime': '2009-06-07 02:28:00', 'Trip_Pickup_DateTime': '2009-06-07 02:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73291, 'End_Lon': -73.995877, 'Fare_Amt': 3.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735985, 'Start_Lon': -73.993535, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-04 11:21:00', 'Trip_Pickup_DateTime': '2009-06-04 11:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765937, 'End_Lon': -73.981708, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762418, 'Start_Lon': -73.97837, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-06 19:21:00', 'Trip_Pickup_DateTime': '2009-06-06 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755408, 'End_Lon': -73.993042, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767178, 'Start_Lon': -73.986353, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-04 11:34:00', 'Trip_Pickup_DateTime': '2009-06-04 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739248, 'End_Lon': -74.006082, 'Fare_Amt': 9.3, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728597, 'Start_Lon': -73.998515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-06 22:26:00', 'Trip_Pickup_DateTime': '2009-06-06 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.734448, 'End_Lon': -73.983438, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743618, 'Start_Lon': -74.007185, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.49, 'Trip_Dropoff_DateTime': '2009-06-16 09:04:00', 'Trip_Pickup_DateTime': '2009-06-16 08:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752117, 'End_Lon': -73.979955, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73711, 'Start_Lon': -73.990512, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-18 12:44:00', 'Trip_Pickup_DateTime': '2009-06-18 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741173, 'End_Lon': -74.005282, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75501, 'Start_Lon': -73.983392, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-03 11:11:00', 'Trip_Pickup_DateTime': '2009-06-03 10:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71702, 'End_Lon': -74.001872, 'Fare_Amt': 24.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773733, 'Start_Lon': -73.871015, 'Tip_Amt': 4.9, 'Tolls_Amt': 0.0, 'Total_Amt': 29.4, 'Trip_Distance': 10.01, 'Trip_Dropoff_DateTime': '2009-06-07 20:16:00', 'Trip_Pickup_DateTime': '2009-06-07 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-18 11:49:00', 'Trip_Pickup_DateTime': '2009-06-18 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7459, 'End_Lon': -73.977392, 'Fare_Amt': 17.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773843, 'Start_Lon': -73.977788, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 2.58, 'Trip_Dropoff_DateTime': '2009-06-18 12:34:00', 'Trip_Pickup_DateTime': '2009-06-18 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.701922, 'End_Lon': -74.01074, 'Fare_Amt': 20.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791703, 'Start_Lon': -73.941563, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 8.46, 'Trip_Dropoff_DateTime': '2009-06-05 09:30:00', 'Trip_Pickup_DateTime': '2009-06-05 09:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739078, 'End_Lon': -73.995473, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768165, 'Start_Lon': -73.992968, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 2.76, 'Trip_Dropoff_DateTime': '2009-06-03 17:59:00', 'Trip_Pickup_DateTime': '2009-06-03 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750938, 'End_Lon': -73.992562, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742973, 'Start_Lon': -73.992693, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-08 09:40:00', 'Trip_Pickup_DateTime': '2009-06-08 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713675, 'End_Lon': -74.003282, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.690082, 'Start_Lon': -73.994385, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.2, 'Trip_Dropoff_DateTime': '2009-06-08 09:29:00', 'Trip_Pickup_DateTime': '2009-06-08 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731517, 'End_Lon': -73.983652, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737407, 'Start_Lon': -73.977463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-08 13:45:00', 'Trip_Pickup_DateTime': '2009-06-08 13:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714152, 'End_Lon': -74.014872, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735413, 'Start_Lon': -73.998538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-05 06:39:00', 'Trip_Pickup_DateTime': '2009-06-05 06:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765525, 'End_Lon': -73.977013, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755057, 'Start_Lon': -73.971425, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-18 11:39:00', 'Trip_Pickup_DateTime': '2009-06-18 11:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777035, 'End_Lon': -73.950933, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741715, 'Start_Lon': -73.97502, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 3.01, 'Trip_Dropoff_DateTime': '2009-06-04 17:06:00', 'Trip_Pickup_DateTime': '2009-06-04 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80783, 'End_Lon': -73.96394, 'Fare_Amt': 9.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779935, 'Start_Lon': -73.959477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.63, 'Trip_Dropoff_DateTime': '2009-06-05 09:18:00', 'Trip_Pickup_DateTime': '2009-06-05 09:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770812, 'End_Lon': -73.963375, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776255, 'Start_Lon': -73.960195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-18 12:01:00', 'Trip_Pickup_DateTime': '2009-06-18 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773595, 'End_Lon': -73.918235, 'Fare_Amt': 19.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7577, 'Start_Lon': -73.99023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.8, 'Trip_Distance': 5.85, 'Trip_Dropoff_DateTime': '2009-06-04 23:23:00', 'Trip_Pickup_DateTime': '2009-06-04 22:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767165, 'End_Lon': -73.954708, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762357, 'Start_Lon': -73.97242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-03 12:55:00', 'Trip_Pickup_DateTime': '2009-06-03 12:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742918, 'End_Lon': -74.003863, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747873, 'Start_Lon': -74.007072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-08 02:38:00', 'Trip_Pickup_DateTime': '2009-06-08 02:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750458, 'End_Lon': -73.9947, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725297, 'Start_Lon': -73.986893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-07 18:31:00', 'Trip_Pickup_DateTime': '2009-06-07 18:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.69255, 'End_Lon': -73.993273, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.682722, 'Start_Lon': -73.997968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-16 09:07:00', 'Trip_Pickup_DateTime': '2009-06-16 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774445, 'End_Lon': -73.963442, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766813, 'Start_Lon': -73.969258, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-03 16:21:00', 'Trip_Pickup_DateTime': '2009-06-03 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759148, 'End_Lon': -73.985872, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770045, 'Start_Lon': -73.984185, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-05 19:33:00', 'Trip_Pickup_DateTime': '2009-06-05 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762815, 'End_Lon': -73.963627, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.799745, 'Start_Lon': -73.969845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.1, 'Trip_Distance': 3.58, 'Trip_Dropoff_DateTime': '2009-06-06 16:03:00', 'Trip_Pickup_DateTime': '2009-06-06 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756325, 'End_Lon': -73.98511, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75925, 'Start_Lon': -73.977248, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-04 14:29:00', 'Trip_Pickup_DateTime': '2009-06-04 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765768, 'End_Lon': -73.954503, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742815, 'Start_Lon': -73.992598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.54, 'Trip_Dropoff_DateTime': '2009-06-16 08:45:00', 'Trip_Pickup_DateTime': '2009-06-16 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791238, 'End_Lon': -73.977552, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755888, 'Start_Lon': -73.963065, 'Tip_Amt': 3.92, 'Tolls_Amt': 0.0, 'Total_Amt': 19.62, 'Trip_Distance': 3.71, 'Trip_Dropoff_DateTime': '2009-06-05 13:45:00', 'Trip_Pickup_DateTime': '2009-06-05 13:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796268, 'End_Lon': -73.963198, 'Fare_Amt': 20.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747255, 'Start_Lon': -73.888158, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 25.15, 'Trip_Distance': 7.93, 'Trip_Dropoff_DateTime': '2009-06-08 01:06:00', 'Trip_Pickup_DateTime': '2009-06-08 00:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751852, 'End_Lon': -73.98918, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75012, 'Start_Lon': -73.994862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-06 12:44:00', 'Trip_Pickup_DateTime': '2009-06-06 12:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745517, 'End_Lon': -73.990785, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742143, 'Start_Lon': -73.99687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-08 13:25:00', 'Trip_Pickup_DateTime': '2009-06-08 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717135, 'End_Lon': -73.980265, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72418, 'Start_Lon': -73.997848, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-16 08:17:00', 'Trip_Pickup_DateTime': '2009-06-16 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767803, 'End_Lon': -73.968353, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764272, 'Start_Lon': -74.057233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-05 10:32:00', 'Trip_Pickup_DateTime': '2009-06-05 10:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752475, 'End_Lon': -73.979222, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744527, 'Start_Lon': -73.991413, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-05 20:00:00', 'Trip_Pickup_DateTime': '2009-06-05 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772985, 'End_Lon': -73.955395, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782772, 'Start_Lon': -73.948213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-18 11:39:00', 'Trip_Pickup_DateTime': '2009-06-18 11:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761787, 'End_Lon': -73.972885, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.729793, 'Start_Lon': -73.99704, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-07 16:56:00', 'Trip_Pickup_DateTime': '2009-06-07 16:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744515, 'End_Lon': -73.98907, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733877, 'Start_Lon': -73.980633, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-08 10:39:00', 'Trip_Pickup_DateTime': '2009-06-08 10:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739568, 'End_Lon': -73.995275, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733013, 'Start_Lon': -74.007532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-16 07:31:00', 'Trip_Pickup_DateTime': '2009-06-16 07:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758445, 'End_Lon': -73.963182, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734152, 'Start_Lon': -73.983285, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-04 21:08:00', 'Trip_Pickup_DateTime': '2009-06-04 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.726992, 'End_Lon': -73.987485, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742097, 'Start_Lon': -73.97779, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-08 10:26:00', 'Trip_Pickup_DateTime': '2009-06-08 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758225, 'End_Lon': -73.93763, 'Fare_Amt': 2.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758227, 'Start_Lon': -73.93763, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-03 20:59:00', 'Trip_Pickup_DateTime': '2009-06-03 20:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755955, 'End_Lon': -73.985678, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71166, 'Start_Lon': -74.011582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 3.51, 'Trip_Dropoff_DateTime': '2009-06-06 22:33:00', 'Trip_Pickup_DateTime': '2009-06-06 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763165, 'End_Lon': -73.976523, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735717, 'Start_Lon': -73.985287, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-18 11:21:00', 'Trip_Pickup_DateTime': '2009-06-18 10:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739325, 'End_Lon': -73.982763, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742392, 'Start_Lon': -74.004242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-06 22:17:00', 'Trip_Pickup_DateTime': '2009-06-06 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761933, 'End_Lon': -73.979162, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733097, 'Start_Lon': -73.9756, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-16 07:54:00', 'Trip_Pickup_DateTime': '2009-06-16 07:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737117, 'End_Lon': -73.981273, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769565, 'Start_Lon': -73.960253, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-06 23:04:00', 'Trip_Pickup_DateTime': '2009-06-06 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74027, 'End_Lon': -74.005297, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751808, 'Start_Lon': -73.977152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-04 21:09:00', 'Trip_Pickup_DateTime': '2009-06-04 20:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760787, 'End_Lon': -73.967107, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7462, 'Start_Lon': -73.977793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-16 07:59:00', 'Trip_Pickup_DateTime': '2009-06-16 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72077, 'End_Lon': -73.978197, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7215, 'Start_Lon': -73.98916, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-16 07:56:00', 'Trip_Pickup_DateTime': '2009-06-16 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754398, 'End_Lon': -73.983487, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782618, 'Start_Lon': -73.9809, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-08 03:38:00', 'Trip_Pickup_DateTime': '2009-06-08 03:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750348, 'End_Lon': -73.981687, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755023, 'Start_Lon': -73.987692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-16 08:06:00', 'Trip_Pickup_DateTime': '2009-06-16 08:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770297, 'End_Lon': -73.982053, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761228, 'Start_Lon': -73.975687, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-04 19:20:00', 'Trip_Pickup_DateTime': '2009-06-04 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735155, 'End_Lon': -73.9916, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768282, 'Start_Lon': -73.982375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.79, 'Trip_Dropoff_DateTime': '2009-06-18 10:43:00', 'Trip_Pickup_DateTime': '2009-06-18 10:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720767, 'End_Lon': -74.008512, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73748, 'Start_Lon': -73.997063, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-08 10:17:00', 'Trip_Pickup_DateTime': '2009-06-08 10:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750935, 'End_Lon': -73.991333, 'Fare_Amt': 14.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754055, 'Start_Lon': -73.93741, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.88, 'Trip_Dropoff_DateTime': '2009-06-07 14:08:00', 'Trip_Pickup_DateTime': '2009-06-07 13:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75158, 'End_Lon': -73.975607, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751117, 'Start_Lon': -73.970532, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.33, 'Trip_Dropoff_DateTime': '2009-06-18 10:52:00', 'Trip_Pickup_DateTime': '2009-06-18 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758922, 'End_Lon': -73.98152, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764472, 'Start_Lon': -73.981152, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-18 09:01:00', 'Trip_Pickup_DateTime': '2009-06-18 08:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74759, 'End_Lon': -73.978497, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759477, 'Start_Lon': -73.97281, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-18 10:02:00', 'Trip_Pickup_DateTime': '2009-06-18 09:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73636, 'End_Lon': -73.98682, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744388, 'Start_Lon': -73.981593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-06 23:15:00', 'Trip_Pickup_DateTime': '2009-06-06 23:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.751625, 'End_Lon': -74.007702, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776962, 'Start_Lon': -73.982295, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-06 17:16:00', 'Trip_Pickup_DateTime': '2009-06-06 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765933, 'End_Lon': -73.919962, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72593, 'Start_Lon': -74.003457, 'Tip_Amt': 5.35, 'Tolls_Amt': 0.0, 'Total_Amt': 26.75, 'Trip_Distance': 7.02, 'Trip_Dropoff_DateTime': '2009-06-07 01:46:00', 'Trip_Pickup_DateTime': '2009-06-07 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702065, 'End_Lon': -74.01278, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746953, 'Start_Lon': -74.008115, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-06 14:15:00', 'Trip_Pickup_DateTime': '2009-06-06 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775727, 'End_Lon': -73.978787, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769233, 'Start_Lon': -73.967453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 10:12:00', 'Trip_Pickup_DateTime': '2009-06-18 10:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773643, 'End_Lon': -73.870472, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.786307, 'Start_Lon': -73.951737, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.5, 'Trip_Distance': 7.67, 'Trip_Dropoff_DateTime': '2009-06-16 06:16:00', 'Trip_Pickup_DateTime': '2009-06-16 06:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781313, 'End_Lon': -73.959913, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74995, 'Start_Lon': -73.970657, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-16 07:14:00', 'Trip_Pickup_DateTime': '2009-06-16 07:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753258, 'End_Lon': -73.974902, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746535, 'Start_Lon': -73.971645, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-18 09:10:00', 'Trip_Pickup_DateTime': '2009-06-18 09:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774443, 'End_Lon': -73.982223, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758945, 'Start_Lon': -73.96559, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.2, 'Trip_Distance': 1.81, 'Trip_Dropoff_DateTime': '2009-06-07 20:56:00', 'Trip_Pickup_DateTime': '2009-06-07 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735015, 'End_Lon': -73.995472, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754878, 'Start_Lon': -73.988342, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-02 21:15:00', 'Trip_Pickup_DateTime': '2009-06-02 21:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73589, 'End_Lon': -73.98203, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773768, 'Start_Lon': -73.948768, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-16 06:37:00', 'Trip_Pickup_DateTime': '2009-06-16 06:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754102, 'End_Lon': -73.978202, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752053, 'Start_Lon': -73.989968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-18 09:53:00', 'Trip_Pickup_DateTime': '2009-06-18 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765615, 'End_Lon': -73.971582, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779437, 'Start_Lon': -73.987887, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-08 14:16:00', 'Trip_Pickup_DateTime': '2009-06-08 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72873, 'End_Lon': -73.987512, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73862, 'Start_Lon': -73.989965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-05 19:49:00', 'Trip_Pickup_DateTime': '2009-06-05 19:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711055, 'End_Lon': -73.853832, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721923, 'Start_Lon': -73.844603, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-04 19:26:00', 'Trip_Pickup_DateTime': '2009-06-04 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737892, 'End_Lon': -73.98746, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.737552, 'Start_Lon': -74.000598, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-08 12:06:00', 'Trip_Pickup_DateTime': '2009-06-08 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76042, 'End_Lon': -73.975163, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762925, 'Start_Lon': -73.985638, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-18 09:42:00', 'Trip_Pickup_DateTime': '2009-06-18 09:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749553, 'End_Lon': -73.979132, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750743, 'Start_Lon': -74.001623, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-03 09:03:00', 'Trip_Pickup_DateTime': '2009-06-03 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766535, 'End_Lon': -73.978125, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760153, 'Start_Lon': -73.974097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-02 12:30:00', 'Trip_Pickup_DateTime': '2009-06-02 12:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769965, 'End_Lon': -73.951547, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.775948, 'Start_Lon': -73.982153, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-02 20:13:00', 'Trip_Pickup_DateTime': '2009-06-02 20:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771737, 'End_Lon': -73.951138, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77477, 'Start_Lon': -73.950985, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-04 20:47:00', 'Trip_Pickup_DateTime': '2009-06-04 20:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73876, 'End_Lon': -73.991452, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74218, 'Start_Lon': -73.991092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.29, 'Trip_Dropoff_DateTime': '2009-06-03 20:44:00', 'Trip_Pickup_DateTime': '2009-06-03 20:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761177, 'End_Lon': -73.965727, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777527, 'Start_Lon': -73.959207, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-18 09:08:00', 'Trip_Pickup_DateTime': '2009-06-18 08:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.80999, 'End_Lon': -73.950607, 'Fare_Amt': 15.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757082, 'Start_Lon': -73.969723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.49, 'Trip_Dropoff_DateTime': '2009-06-02 09:24:00', 'Trip_Pickup_DateTime': '2009-06-02 08:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763038, 'End_Lon': -73.987958, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804992, 'Start_Lon': -73.962265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-07 22:07:00', 'Trip_Pickup_DateTime': '2009-06-07 21:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761998, 'End_Lon': -73.98557, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.651433, 'Start_Lon': -73.805618, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 16.4, 'Trip_Dropoff_DateTime': '2009-06-18 15:46:00', 'Trip_Pickup_DateTime': '2009-06-18 14:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.796855, 'End_Lon': -73.970955, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779348, 'Start_Lon': -73.950893, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-03 14:42:00', 'Trip_Pickup_DateTime': '2009-06-03 14:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765943, 'End_Lon': -73.979007, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770065, 'Start_Lon': -73.964665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-07 10:50:00', 'Trip_Pickup_DateTime': '2009-06-07 10:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76374, 'End_Lon': -73.971348, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743647, 'Start_Lon': -73.99229, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-02 07:49:00', 'Trip_Pickup_DateTime': '2009-06-02 07:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789293, 'End_Lon': -73.977668, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791128, 'Start_Lon': -73.9723, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-08 12:03:00', 'Trip_Pickup_DateTime': '2009-06-08 12:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764197, 'End_Lon': -73.978065, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739778, 'Start_Lon': -74.006507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-05 03:06:00', 'Trip_Pickup_DateTime': '2009-06-05 02:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774825, 'End_Lon': -73.988028, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78567, 'Start_Lon': -73.976547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-06 21:55:00', 'Trip_Pickup_DateTime': '2009-06-06 21:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776803, 'End_Lon': -73.953093, 'Fare_Amt': 4.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786502, 'Start_Lon': -73.952793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-05 23:20:00', 'Trip_Pickup_DateTime': '2009-06-05 23:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756853, 'End_Lon': -73.983985, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775412, 'Start_Lon': -73.98006, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.92, 'Trip_Dropoff_DateTime': '2009-06-03 08:09:00', 'Trip_Pickup_DateTime': '2009-06-03 07:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751125, 'End_Lon': -73.99014, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762657, 'Start_Lon': -73.978498, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-08 11:02:00', 'Trip_Pickup_DateTime': '2009-06-08 10:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758573, 'End_Lon': -73.992407, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735915, 'Start_Lon': -73.997792, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-05 22:05:00', 'Trip_Pickup_DateTime': '2009-06-05 21:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-03 21:22:00', 'Trip_Pickup_DateTime': '2009-06-03 21:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763657, 'End_Lon': -73.99525, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727445, 'Start_Lon': -73.991407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-05 15:06:00', 'Trip_Pickup_DateTime': '2009-06-05 14:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.706997, 'End_Lon': -74.004755, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72747, 'Start_Lon': -73.988525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.79, 'Trip_Dropoff_DateTime': '2009-06-04 08:46:00', 'Trip_Pickup_DateTime': '2009-06-04 08:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.718067, 'End_Lon': -73.999835, 'Fare_Amt': 19.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76694, 'Start_Lon': -73.953598, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.3, 'Trip_Distance': 5.84, 'Trip_Dropoff_DateTime': '2009-06-07 19:02:00', 'Trip_Pickup_DateTime': '2009-06-07 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762592, 'End_Lon': -73.983268, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80712, 'Start_Lon': -73.964645, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-04 09:38:00', 'Trip_Pickup_DateTime': '2009-06-04 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76299, 'End_Lon': -73.969795, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76178, 'Start_Lon': -73.978598, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-16 09:30:00', 'Trip_Pickup_DateTime': '2009-06-16 09:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739903, 'End_Lon': -73.989935, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755408, 'Start_Lon': -73.982578, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-06 23:16:00', 'Trip_Pickup_DateTime': '2009-06-06 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774277, 'End_Lon': -73.872672, 'Fare_Amt': 29.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.70368, 'Start_Lon': -74.011603, 'Tip_Amt': 5.94, 'Tolls_Amt': 4.15, 'Total_Amt': 39.79, 'Trip_Distance': 13.2, 'Trip_Dropoff_DateTime': '2009-06-02 13:53:00', 'Trip_Pickup_DateTime': '2009-06-02 13:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77331, 'End_Lon': -73.955032, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781245, 'Start_Lon': -73.952447, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-02 21:18:00', 'Trip_Pickup_DateTime': '2009-06-02 21:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.708235, 'End_Lon': -74.012022, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751947, 'Start_Lon': -73.987225, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-04 14:46:00', 'Trip_Pickup_DateTime': '2009-06-04 14:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740788, 'End_Lon': -74.00484, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756235, 'Start_Lon': -73.97331, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-05 18:24:00', 'Trip_Pickup_DateTime': '2009-06-05 18:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785243, 'End_Lon': -73.949168, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762567, 'Start_Lon': -73.978477, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.69, 'Trip_Dropoff_DateTime': '2009-06-06 08:24:00', 'Trip_Pickup_DateTime': '2009-06-06 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.804635, 'End_Lon': -73.963993, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813713, 'Start_Lon': -73.959847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-23 08:52:00', 'Trip_Pickup_DateTime': '2009-06-23 08:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727547, 'End_Lon': -73.816305, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721402, 'Start_Lon': -73.844445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-06 03:24:00', 'Trip_Pickup_DateTime': '2009-06-06 03:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.768415, 'End_Lon': -73.96596, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788215, 'Start_Lon': -73.97646, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.05, 'Trip_Dropoff_DateTime': '2009-06-02 09:43:00', 'Trip_Pickup_DateTime': '2009-06-02 09:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752953, 'End_Lon': -73.995255, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759638, 'Start_Lon': -73.999257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-18 14:37:00', 'Trip_Pickup_DateTime': '2009-06-18 14:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70925, 'End_Lon': -73.980753, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.717287, 'Start_Lon': -73.993195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.45, 'Trip_Dropoff_DateTime': '2009-06-08 07:42:00', 'Trip_Pickup_DateTime': '2009-06-08 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730372, 'End_Lon': -74.006765, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742057, 'Start_Lon': -74.000392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-18 12:49:00', 'Trip_Pickup_DateTime': '2009-06-18 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750105, 'End_Lon': -73.972125, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760223, 'Start_Lon': -73.964585, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-05 16:54:00', 'Trip_Pickup_DateTime': '2009-06-05 16:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74929, 'End_Lon': -73.981095, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767762, 'Start_Lon': -73.964085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-16 10:52:00', 'Trip_Pickup_DateTime': '2009-06-16 10:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759582, 'End_Lon': -73.96787, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764332, 'Start_Lon': -73.961637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 0.73, 'Trip_Dropoff_DateTime': '2009-06-03 16:10:00', 'Trip_Pickup_DateTime': '2009-06-03 15:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743355, 'End_Lon': -74.000055, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727445, 'Start_Lon': -73.979607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-03 00:16:00', 'Trip_Pickup_DateTime': '2009-06-03 00:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750717, 'End_Lon': -73.973998, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746507, 'Start_Lon': -74.00509, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.35, 'Trip_Dropoff_DateTime': '2009-06-06 15:45:00', 'Trip_Pickup_DateTime': '2009-06-06 15:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722833, 'End_Lon': -74.000068, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7602, 'Start_Lon': -73.985393, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-18 14:18:00', 'Trip_Pickup_DateTime': '2009-06-18 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748205, 'End_Lon': -73.987682, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759325, 'Start_Lon': -73.991877, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-06 04:15:00', 'Trip_Pickup_DateTime': '2009-06-06 04:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77973, 'End_Lon': -73.982342, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76411, 'Start_Lon': -73.992153, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.26, 'Trip_Dropoff_DateTime': '2009-06-03 21:33:00', 'Trip_Pickup_DateTime': '2009-06-03 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.758603, 'End_Lon': -73.965787, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766742, 'Start_Lon': -73.959937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-21 08:46:00', 'Trip_Pickup_DateTime': '2009-06-21 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743373, 'End_Lon': -73.97261, 'Fare_Amt': 10.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703715, 'Start_Lon': -74.007095, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 4.01, 'Trip_Dropoff_DateTime': '2009-06-03 07:10:00', 'Trip_Pickup_DateTime': '2009-06-03 07:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75349, 'End_Lon': -73.968995, 'Fare_Amt': 22.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773513, 'Start_Lon': -73.870877, 'Tip_Amt': 3.5, 'Tolls_Amt': 4.15, 'Total_Amt': 31.05, 'Trip_Distance': 10.1, 'Trip_Dropoff_DateTime': '2009-06-04 21:42:00', 'Trip_Pickup_DateTime': '2009-06-04 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739587, 'End_Lon': -74.006375, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727595, 'Start_Lon': -73.993503, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-18 13:45:00', 'Trip_Pickup_DateTime': '2009-06-18 13:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757917, 'End_Lon': -73.977788, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77378, 'Start_Lon': -73.959765, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.72, 'Trip_Dropoff_DateTime': '2009-06-03 10:36:00', 'Trip_Pickup_DateTime': '2009-06-03 10:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.717225, 'End_Lon': -74.0049, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76697, 'Start_Lon': -73.959902, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.9, 'Trip_Distance': 6.39, 'Trip_Dropoff_DateTime': '2009-06-18 14:14:00', 'Trip_Pickup_DateTime': '2009-06-18 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78684, 'End_Lon': -73.981207, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770855, 'Start_Lon': -73.987178, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-05 08:23:00', 'Trip_Pickup_DateTime': '2009-06-05 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786992, 'End_Lon': -73.97778, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780522, 'Start_Lon': -73.956955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-18 14:25:00', 'Trip_Pickup_DateTime': '2009-06-18 14:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 3.18, 'Trip_Dropoff_DateTime': '2009-06-08 01:02:00', 'Trip_Pickup_DateTime': '2009-06-08 00:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780998, 'End_Lon': -73.959017, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764365, 'Start_Lon': -73.97099, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-05 09:31:00', 'Trip_Pickup_DateTime': '2009-06-05 09:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753938, 'End_Lon': -73.972505, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741472, 'Start_Lon': -73.978352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-08 07:23:00', 'Trip_Pickup_DateTime': '2009-06-08 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756052, 'End_Lon': -73.974188, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750172, 'Start_Lon': -73.987803, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-18 13:29:00', 'Trip_Pickup_DateTime': '2009-06-18 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754275, 'End_Lon': -73.989463, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721925, 'Start_Lon': -74.004187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.74, 'Trip_Dropoff_DateTime': '2009-06-08 10:15:00', 'Trip_Pickup_DateTime': '2009-06-08 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759832, 'End_Lon': -73.933587, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759832, 'Start_Lon': -73.933587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 2.43, 'Trip_Dropoff_DateTime': '2009-06-06 20:40:00', 'Trip_Pickup_DateTime': '2009-06-06 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799665, 'End_Lon': -73.971757, 'Fare_Amt': 10.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760573, 'Start_Lon': -73.991077, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.67, 'Trip_Dropoff_DateTime': '2009-06-03 22:55:00', 'Trip_Pickup_DateTime': '2009-06-03 22:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770927, 'End_Lon': -73.979927, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777588, 'Start_Lon': -73.95521, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-16 09:14:00', 'Trip_Pickup_DateTime': '2009-06-16 09:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77734, 'End_Lon': -73.959292, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711918, 'Start_Lon': -74.010315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.5, 'Trip_Distance': 7.32, 'Trip_Dropoff_DateTime': '2009-06-05 10:10:00', 'Trip_Pickup_DateTime': '2009-06-05 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75628, 'End_Lon': -73.979075, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763488, 'Start_Lon': -73.972908, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-18 13:23:00', 'Trip_Pickup_DateTime': '2009-06-18 13:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70477, 'End_Lon': -74.016787, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760923, 'Start_Lon': -73.983475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.28, 'Trip_Dropoff_DateTime': '2009-06-08 13:25:00', 'Trip_Pickup_DateTime': '2009-06-08 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78391, 'End_Lon': -73.980233, 'Fare_Amt': 20.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.702548, 'Start_Lon': -74.012933, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.9, 'Trip_Distance': 6.57, 'Trip_Dropoff_DateTime': '2009-06-02 19:22:00', 'Trip_Pickup_DateTime': '2009-06-02 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.791328, 'End_Lon': -73.969727, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781475, 'Start_Lon': -73.971547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-04 17:34:00', 'Trip_Pickup_DateTime': '2009-06-04 17:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766035, 'End_Lon': -73.98077, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750948, 'Start_Lon': -73.990143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-04 16:42:00', 'Trip_Pickup_DateTime': '2009-06-04 16:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.779597, 'End_Lon': -73.95252, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780325, 'Start_Lon': -73.954885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-06 00:57:00', 'Trip_Pickup_DateTime': '2009-06-06 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752432, 'End_Lon': -73.973788, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745037, 'Start_Lon': -73.987443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-05 13:46:00', 'Trip_Pickup_DateTime': '2009-06-05 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77659, 'End_Lon': -73.90217, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803992, 'Start_Lon': -73.966763, 'Tip_Amt': 4.22, 'Tolls_Amt': 4.15, 'Total_Amt': 29.47, 'Trip_Distance': 6.59, 'Trip_Dropoff_DateTime': '2009-06-03 20:20:00', 'Trip_Pickup_DateTime': '2009-06-03 19:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.848692, 'End_Lon': -73.939342, 'Fare_Amt': 18.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75714, 'Start_Lon': -73.986265, 'Tip_Amt': 3.88, 'Tolls_Amt': 0.0, 'Total_Amt': 23.28, 'Trip_Distance': 7.8, 'Trip_Dropoff_DateTime': '2009-06-03 00:17:00', 'Trip_Pickup_DateTime': '2009-06-03 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.750422, 'End_Lon': -73.99473, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.793148, 'Start_Lon': -73.972872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 4.83, 'Trip_Dropoff_DateTime': '2009-06-06 07:39:00', 'Trip_Pickup_DateTime': '2009-06-06 07:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770427, 'End_Lon': -73.987483, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744537, 'Start_Lon': -73.978892, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 17.0, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-04 16:28:00', 'Trip_Pickup_DateTime': '2009-06-04 16:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73669, 'End_Lon': -73.990982, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731938, 'Start_Lon': -74.007712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-16 09:36:00', 'Trip_Pickup_DateTime': '2009-06-16 09:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760305, 'End_Lon': -73.978817, 'Fare_Amt': 25.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745665, 'Start_Lon': -73.987282, 'Tip_Amt': 7.59, 'Tolls_Amt': 0.0, 'Total_Amt': 32.89, 'Trip_Distance': 4.58, 'Trip_Dropoff_DateTime': '2009-06-18 13:07:00', 'Trip_Pickup_DateTime': '2009-06-18 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762007, 'End_Lon': -73.993143, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785898, 'Start_Lon': -73.956833, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.65, 'Trip_Dropoff_DateTime': '2009-06-03 19:35:00', 'Trip_Pickup_DateTime': '2009-06-03 19:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-03 12:04:00', 'Trip_Pickup_DateTime': '2009-06-03 11:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774852, 'End_Lon': -73.964008, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766178, 'Start_Lon': -73.97035, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-04 17:29:00', 'Trip_Pickup_DateTime': '2009-06-04 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741573, 'End_Lon': -74.005112, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758642, 'Start_Lon': -73.985117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-02 20:40:00', 'Trip_Pickup_DateTime': '2009-06-02 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.805883, 'End_Lon': -73.960955, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.802658, 'Start_Lon': -73.967543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-07 12:55:00', 'Trip_Pickup_DateTime': '2009-06-07 12:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.6136, 'End_Lon': -73.926328, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.645033, 'Start_Lon': -73.777082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 29.8, 'Trip_Distance': 12.89, 'Trip_Dropoff_DateTime': '2009-06-04 20:38:00', 'Trip_Pickup_DateTime': '2009-06-04 20:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738952, 'End_Lon': -73.999382, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764818, 'Start_Lon': -73.988043, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.19, 'Trip_Dropoff_DateTime': '2009-06-28 00:04:00', 'Trip_Pickup_DateTime': '2009-06-27 23:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777938, 'End_Lon': -73.95397, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781848, 'Start_Lon': -73.949008, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-21 08:08:00', 'Trip_Pickup_DateTime': '2009-06-21 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780682, 'End_Lon': -73.946702, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751625, 'Start_Lon': -73.994202, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.7, 'Trip_Distance': 4.4, 'Trip_Dropoff_DateTime': '2009-06-02 15:26:00', 'Trip_Pickup_DateTime': '2009-06-02 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751475, 'End_Lon': -73.990362, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757482, 'Start_Lon': -73.98428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-06 18:36:00', 'Trip_Pickup_DateTime': '2009-06-06 18:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74364, 'End_Lon': -73.823907, 'Fare_Amt': 24.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.641305, 'Start_Lon': -73.78855, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.1, 'Trip_Distance': 9.82, 'Trip_Dropoff_DateTime': '2009-06-21 07:53:00', 'Trip_Pickup_DateTime': '2009-06-21 07:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.827332, 'End_Lon': -73.941198, 'Fare_Amt': 24.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769133, 'Start_Lon': -73.862755, 'Tip_Amt': 0.0, 'Tolls_Amt': 5.0, 'Total_Amt': 29.5, 'Trip_Distance': 10.08, 'Trip_Dropoff_DateTime': '2009-06-02 12:21:00', 'Trip_Pickup_DateTime': '2009-06-02 11:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730063, 'End_Lon': -73.991987, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721595, 'Start_Lon': -73.983635, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.08, 'Trip_Dropoff_DateTime': '2009-06-05 11:54:00', 'Trip_Pickup_DateTime': '2009-06-05 11:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782148, 'End_Lon': -73.917743, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782787, 'Start_Lon': -73.971413, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.83, 'Trip_Dropoff_DateTime': '2009-06-07 01:36:00', 'Trip_Pickup_DateTime': '2009-06-07 01:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.716523, 'End_Lon': -73.9958, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738622, 'Start_Lon': -74.005503, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.33, 'Trip_Dropoff_DateTime': '2009-06-06 19:02:00', 'Trip_Pickup_DateTime': '2009-06-06 18:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.784227, 'End_Lon': -73.980982, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769338, 'Start_Lon': -73.985047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-02 09:41:00', 'Trip_Pickup_DateTime': '2009-06-02 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744955, 'End_Lon': -73.974355, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758025, 'Start_Lon': -73.985963, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-21 12:49:00', 'Trip_Pickup_DateTime': '2009-06-21 12:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74245, 'End_Lon': -73.975365, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727477, 'Start_Lon': -73.986023, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-21 06:22:00', 'Trip_Pickup_DateTime': '2009-06-21 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695555, 'End_Lon': -73.905128, 'Fare_Amt': 15.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.696607, 'Start_Lon': -73.884213, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.3, 'Trip_Distance': 5.93, 'Trip_Dropoff_DateTime': '2009-06-21 12:31:00', 'Trip_Pickup_DateTime': '2009-06-21 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749922, 'End_Lon': -73.99185, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.747662, 'Start_Lon': -73.97393, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.6, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-21 11:58:00', 'Trip_Pickup_DateTime': '2009-06-21 11:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773108, 'End_Lon': -73.964362, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766902, 'Start_Lon': -73.980955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-03 19:03:00', 'Trip_Pickup_DateTime': '2009-06-03 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75127, 'End_Lon': -73.990387, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773763, 'Start_Lon': -73.960275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 3.32, 'Trip_Dropoff_DateTime': '2009-06-04 11:41:00', 'Trip_Pickup_DateTime': '2009-06-04 11:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742558, 'End_Lon': -73.992258, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.724172, 'Start_Lon': -73.997892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-21 12:00:00', 'Trip_Pickup_DateTime': '2009-06-21 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74893, 'End_Lon': -73.985742, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76259, 'Start_Lon': -73.976983, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-21 13:25:00', 'Trip_Pickup_DateTime': '2009-06-21 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751445, 'End_Lon': -73.990108, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748577, 'Start_Lon': -73.978197, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-03 21:43:00', 'Trip_Pickup_DateTime': '2009-06-03 21:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.78481, 'End_Lon': -73.953923, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.782005, 'Start_Lon': -73.955995, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-08 11:35:00', 'Trip_Pickup_DateTime': '2009-06-08 11:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731408, 'End_Lon': -74.005552, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.771155, 'Start_Lon': -73.96405, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.08, 'Trip_Dropoff_DateTime': '2009-06-03 20:46:00', 'Trip_Pickup_DateTime': '2009-06-03 20:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769913, 'End_Lon': -73.962592, 'Fare_Amt': 2.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774202, 'Start_Lon': -73.95951, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.9, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-02 18:52:00', 'Trip_Pickup_DateTime': '2009-06-02 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750782, 'End_Lon': -73.994425, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7345, 'Start_Lon': -74.006163, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-21 11:23:00', 'Trip_Pickup_DateTime': '2009-06-21 11:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778723, 'End_Lon': -73.964622, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763843, 'Start_Lon': -73.976242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.95, 'Trip_Dropoff_DateTime': '2009-06-21 11:43:00', 'Trip_Pickup_DateTime': '2009-06-21 11:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748862, 'End_Lon': -73.973823, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7348, 'Start_Lon': -73.994535, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-05 18:37:00', 'Trip_Pickup_DateTime': '2009-06-05 18:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.852685, 'End_Lon': -73.932888, 'Fare_Amt': 21.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748633, 'Start_Lon': -73.981315, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 9.28, 'Trip_Dropoff_DateTime': '2009-06-07 02:29:00', 'Trip_Pickup_DateTime': '2009-06-07 02:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.739655, 'End_Lon': -73.990385, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745627, 'Start_Lon': -74.005652, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-03 16:19:00', 'Trip_Pickup_DateTime': '2009-06-03 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.789815, 'End_Lon': -73.970518, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70758, 'Start_Lon': -74.008133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.3, 'Trip_Distance': 8.45, 'Trip_Dropoff_DateTime': '2009-06-01 15:03:00', 'Trip_Pickup_DateTime': '2009-06-01 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773153, 'End_Lon': -73.962767, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749383, 'Start_Lon': -73.969472, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-03 21:18:00', 'Trip_Pickup_DateTime': '2009-06-03 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763475, 'End_Lon': -73.996375, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785332, 'Start_Lon': -73.979023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-18 17:42:00', 'Trip_Pickup_DateTime': '2009-06-18 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719233, 'End_Lon': -74.009741, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773888, 'Start_Lon': -73.874925, 'Tip_Amt': 6.0, 'Tolls_Amt': 0.0, 'Total_Amt': 35.3, 'Trip_Distance': 10.8, 'Trip_Dropoff_DateTime': '2009-06-16 13:14:59', 'Trip_Pickup_DateTime': '2009-06-16 12:39:46', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.740498, 'End_Lon': -73.99055, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.752097, 'Start_Lon': -73.987877, 'Tip_Amt': 0.75, 'Tolls_Amt': 0.0, 'Total_Amt': 6.45, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-12 14:09:00', 'Trip_Pickup_DateTime': '2009-06-12 14:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758935, 'End_Lon': -73.99178, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74027, 'Start_Lon': -73.994642, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-18 17:06:00', 'Trip_Pickup_DateTime': '2009-06-18 16:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735315, 'End_Lon': -73.99813, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.738805, 'Start_Lon': -73.982878, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.42, 'Trip_Dropoff_DateTime': '2009-06-09 08:34:00', 'Trip_Pickup_DateTime': '2009-06-09 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727847, 'End_Lon': -74.002163, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728175, 'Start_Lon': -74.000013, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.4, 'Trip_Dropoff_DateTime': '2009-06-09 09:33:00', 'Trip_Pickup_DateTime': '2009-06-09 09:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.790708, 'End_Lon': -73.974205, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749085, 'Start_Lon': -73.982005, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.77, 'Trip_Dropoff_DateTime': '2009-06-12 12:03:00', 'Trip_Pickup_DateTime': '2009-06-12 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786772, 'End_Lon': -73.974892, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.789773, 'Start_Lon': -73.969882, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-12 13:18:00', 'Trip_Pickup_DateTime': '2009-06-12 13:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-09 08:14:00', 'Trip_Pickup_DateTime': '2009-06-09 08:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764855, 'End_Lon': -73.968578, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766793, 'Start_Lon': -73.982828, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-12 14:46:00', 'Trip_Pickup_DateTime': '2009-06-12 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739535, 'End_Lon': -73.987382, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.68655, 'Start_Lon': -73.990728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 4.45, 'Trip_Dropoff_DateTime': '2009-06-09 06:56:00', 'Trip_Pickup_DateTime': '2009-06-09 06:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746652, 'End_Lon': -73.981532, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719063, 'Start_Lon': -74.005015, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.72, 'Trip_Dropoff_DateTime': '2009-06-12 12:15:00', 'Trip_Pickup_DateTime': '2009-06-12 12:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764597, 'End_Lon': -73.970922, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765738, 'Start_Lon': -73.994232, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-12 13:28:00', 'Trip_Pickup_DateTime': '2009-06-12 13:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748995, 'End_Lon': -73.991897, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73967, 'Start_Lon': -73.984942, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-09 08:31:00', 'Trip_Pickup_DateTime': '2009-06-09 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752802, 'End_Lon': -73.995005, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773897, 'Start_Lon': -73.96607, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 2.82, 'Trip_Dropoff_DateTime': '2009-06-12 14:50:00', 'Trip_Pickup_DateTime': '2009-06-12 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76481, 'End_Lon': -73.965622, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769063, 'Start_Lon': -73.958375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-09 06:09:00', 'Trip_Pickup_DateTime': '2009-06-09 06:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757153, 'End_Lon': -73.988658, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751292, 'Start_Lon': -74.00511, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-09 02:12:00', 'Trip_Pickup_DateTime': '2009-06-09 02:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 24.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 28.75, 'Trip_Distance': 10.28, 'Trip_Dropoff_DateTime': '2009-06-08 22:31:00', 'Trip_Pickup_DateTime': '2009-06-08 22:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.703107, 'End_Lon': -74.010978, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742837, 'Start_Lon': -73.974567, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 13.75, 'Trip_Distance': 4.48, 'Trip_Dropoff_DateTime': '2009-06-09 08:01:00', 'Trip_Pickup_DateTime': '2009-06-09 07:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742508, 'End_Lon': -73.993013, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726018, 'Start_Lon': -73.995862, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-12 13:10:00', 'Trip_Pickup_DateTime': '2009-06-12 13:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754817, 'End_Lon': -73.984193, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74429, 'Start_Lon': -73.999222, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-09 07:14:00', 'Trip_Pickup_DateTime': '2009-06-09 07:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754633, 'End_Lon': -73.989228, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749078, 'Start_Lon': -73.980113, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-12 09:25:00', 'Trip_Pickup_DateTime': '2009-06-12 09:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760285, 'End_Lon': -73.979787, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727125, 'Start_Lon': -74.000195, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-05 07:09:00', 'Trip_Pickup_DateTime': '2009-06-05 07:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.807152, 'End_Lon': -73.966245, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.792588, 'Start_Lon': -73.973418, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-04 00:42:00', 'Trip_Pickup_DateTime': '2009-06-04 00:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759002, 'End_Lon': -73.974552, 'Fare_Amt': 15.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.71819, 'Start_Lon': -74.015462, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 4.9, 'Trip_Dropoff_DateTime': '2009-06-12 10:17:00', 'Trip_Pickup_DateTime': '2009-06-12 09:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75731, 'End_Lon': -73.986445, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782748, 'Start_Lon': -73.98241, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.34, 'Trip_Dropoff_DateTime': '2009-06-09 00:55:00', 'Trip_Pickup_DateTime': '2009-06-09 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.743733, 'End_Lon': -73.973282, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769012, 'Start_Lon': -73.958613, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 2.98, 'Trip_Dropoff_DateTime': '2009-06-12 10:08:00', 'Trip_Pickup_DateTime': '2009-06-12 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761518, 'End_Lon': -73.975888, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748893, 'Start_Lon': -74.003485, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.45, 'Trip_Dropoff_DateTime': '2009-06-12 11:01:00', 'Trip_Pickup_DateTime': '2009-06-12 10:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727712, 'End_Lon': -73.993217, 'Fare_Amt': 7.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73935, 'Start_Lon': -74.006445, 'Tip_Amt': 0.8, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 1.77, 'Trip_Dropoff_DateTime': '2009-06-06 02:42:00', 'Trip_Pickup_DateTime': '2009-06-06 02:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786087, 'End_Lon': -73.97733, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78101, 'Start_Lon': -73.979997, 'Tip_Amt': 0.7, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-02 18:05:00', 'Trip_Pickup_DateTime': '2009-06-02 18:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774052, 'End_Lon': -73.959513, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777483, 'Start_Lon': -73.957097, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.3, 'Trip_Dropoff_DateTime': '2009-06-12 09:46:00', 'Trip_Pickup_DateTime': '2009-06-12 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750127, 'End_Lon': -73.991907, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753695, 'Start_Lon': -73.969855, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-05 18:02:00', 'Trip_Pickup_DateTime': '2009-06-05 17:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788048, 'End_Lon': -73.955712, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741022, 'Start_Lon': -73.987752, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 4.05, 'Trip_Dropoff_DateTime': '2009-06-06 04:54:00', 'Trip_Pickup_DateTime': '2009-06-06 04:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783495, 'End_Lon': -73.978227, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767778, 'Start_Lon': -73.962033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-06 18:50:00', 'Trip_Pickup_DateTime': '2009-06-06 18:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.79601, 'End_Lon': -73.96909, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.787842, 'Start_Lon': -73.974845, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-05 17:58:00', 'Trip_Pickup_DateTime': '2009-06-05 17:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762195, 'End_Lon': -73.986133, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763055, 'Start_Lon': -73.974257, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-02 19:43:00', 'Trip_Pickup_DateTime': '2009-06-02 19:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732238, 'End_Lon': -73.998738, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753677, 'Start_Lon': -73.974583, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-12 09:49:00', 'Trip_Pickup_DateTime': '2009-06-12 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745588, 'End_Lon': -73.922006, 'Fare_Amt': 20.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.781603, 'Start_Lon': -73.975735, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.1, 'Trip_Distance': 8.3, 'Trip_Dropoff_DateTime': '2009-06-07 01:45:42', 'Trip_Pickup_DateTime': '2009-06-07 01:04:42', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.753455, 'End_Lon': -73.986175, 'Fare_Amt': 4.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753217, 'Start_Lon': -73.977738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.6, 'Trip_Dropoff_DateTime': '2009-06-08 09:23:00', 'Trip_Pickup_DateTime': '2009-06-08 09:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719812, 'End_Lon': -74.006715, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763612, 'Start_Lon': -73.97367, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.5, 'Trip_Distance': 4.24, 'Trip_Dropoff_DateTime': '2009-06-08 12:50:00', 'Trip_Pickup_DateTime': '2009-06-08 12:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.794253, 'End_Lon': -73.963172, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.805458, 'Start_Lon': -73.962003, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-07 10:10:00', 'Trip_Pickup_DateTime': '2009-06-07 10:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756797, 'End_Lon': -73.985347, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760348, 'Start_Lon': -73.979887, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-08 23:14:00', 'Trip_Pickup_DateTime': '2009-06-08 23:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774252, 'End_Lon': -73.954275, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780463, 'Start_Lon': -73.949705, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-22 19:32:00', 'Trip_Pickup_DateTime': '2009-06-22 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745283, 'End_Lon': -73.978593, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739488, 'Start_Lon': -74.001752, 'Tip_Amt': 1.75, 'Tolls_Amt': 0.0, 'Total_Amt': 10.35, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-07 00:45:00', 'Trip_Pickup_DateTime': '2009-06-07 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.881267, 'End_Lon': -73.904415, 'Fare_Amt': 36.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713415, 'Start_Lon': -73.998675, 'Tip_Amt': 7.32, 'Tolls_Amt': 0.0, 'Total_Amt': 43.92, 'Trip_Distance': 15.51, 'Trip_Dropoff_DateTime': '2009-06-08 23:05:00', 'Trip_Pickup_DateTime': '2009-06-08 22:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738355, 'End_Lon': -73.987818, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739923, 'Start_Lon': -73.998525, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-08 06:27:00', 'Trip_Pickup_DateTime': '2009-06-08 06:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76804, 'End_Lon': -73.861322, 'Fare_Amt': 27.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764102, 'Start_Lon': -73.978127, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 31.45, 'Trip_Distance': 10.98, 'Trip_Dropoff_DateTime': '2009-06-04 13:23:00', 'Trip_Pickup_DateTime': '2009-06-04 12:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75571, 'End_Lon': -73.991115, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741642, 'Start_Lon': -73.989728, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-21 14:29:00', 'Trip_Pickup_DateTime': '2009-06-21 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735107, 'End_Lon': -74.001873, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.737572, 'Start_Lon': -73.987891, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-06 13:09:34', 'Trip_Pickup_DateTime': '2009-06-06 13:02:02', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.766358, 'End_Lon': -73.97788, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7581, 'Start_Lon': -73.976305, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-21 14:32:00', 'Trip_Pickup_DateTime': '2009-06-21 14:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774005, 'End_Lon': -73.94661, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714105, 'Start_Lon': -73.953707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.34, 'Trip_Dropoff_DateTime': '2009-06-02 22:41:00', 'Trip_Pickup_DateTime': '2009-06-02 22:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.749063, 'End_Lon': -73.991277, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739622, 'Start_Lon': -73.986987, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-21 13:41:00', 'Trip_Pickup_DateTime': '2009-06-21 13:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777848, 'End_Lon': -73.943795, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78719, 'Start_Lon': -73.954057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-21 14:30:00', 'Trip_Pickup_DateTime': '2009-06-21 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728905, 'End_Lon': -74.000617, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759032, 'Start_Lon': -73.992178, 'Tip_Amt': 0.4, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-03 22:15:00', 'Trip_Pickup_DateTime': '2009-06-03 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759157, 'End_Lon': -73.96515, 'Fare_Amt': 18.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.709005, 'Start_Lon': -74.015333, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 20.4, 'Trip_Distance': 6.83, 'Trip_Dropoff_DateTime': '2009-06-06 12:01:00', 'Trip_Pickup_DateTime': '2009-06-06 11:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77852, 'End_Lon': -73.959855, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779328, 'Start_Lon': -73.956173, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.27, 'Trip_Dropoff_DateTime': '2009-06-07 11:42:00', 'Trip_Pickup_DateTime': '2009-06-07 11:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755655, 'End_Lon': -73.973045, 'Fare_Amt': 13.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749832, 'Start_Lon': -73.993593, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 2.08, 'Trip_Dropoff_DateTime': '2009-06-05 11:35:00', 'Trip_Pickup_DateTime': '2009-06-05 11:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773718, 'End_Lon': -73.946157, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77459, 'Start_Lon': -73.957265, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-05 15:22:00', 'Trip_Pickup_DateTime': '2009-06-05 15:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695193, 'End_Lon': -73.995602, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742838, 'Start_Lon': -74.000223, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.4, 'Trip_Distance': 4.3, 'Trip_Dropoff_DateTime': '2009-06-06 00:01:00', 'Trip_Pickup_DateTime': '2009-06-05 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72683, 'End_Lon': -73.942815, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757557, 'Start_Lon': -73.9818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.46, 'Trip_Dropoff_DateTime': '2009-06-05 03:46:00', 'Trip_Pickup_DateTime': '2009-06-05 03:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765137, 'End_Lon': -73.961807, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759338, 'Start_Lon': -73.980897, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-02 21:22:00', 'Trip_Pickup_DateTime': '2009-06-02 21:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.696487, 'End_Lon': -73.988608, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.685677, 'Start_Lon': -74.00247, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-07 20:03:00', 'Trip_Pickup_DateTime': '2009-06-07 19:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77534, 'End_Lon': -73.976433, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757723, 'Start_Lon': -73.970587, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-03 14:08:00', 'Trip_Pickup_DateTime': '2009-06-03 13:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727918, 'End_Lon': -74.001677, 'Fare_Amt': 19.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763863, 'Start_Lon': -73.958937, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.7, 'Trip_Distance': 5.3, 'Trip_Dropoff_DateTime': '2009-06-16 12:56:00', 'Trip_Pickup_DateTime': '2009-06-16 12:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788065, 'End_Lon': -73.953853, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739925, 'Start_Lon': -74.002293, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 4.76, 'Trip_Dropoff_DateTime': '2009-06-06 09:06:00', 'Trip_Pickup_DateTime': '2009-06-06 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76509, 'End_Lon': -73.958063, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746603, 'Start_Lon': -73.971372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-07 10:26:00', 'Trip_Pickup_DateTime': '2009-06-07 10:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757059, 'End_Lon': -73.993342, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.770319, 'Start_Lon': -73.954044, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-06 15:49:24', 'Trip_Pickup_DateTime': '2009-06-06 15:34:07', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.750072, 'End_Lon': -73.99342, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75769, 'Start_Lon': -73.971202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.1, 'Trip_Dropoff_DateTime': '2009-06-18 16:39:00', 'Trip_Pickup_DateTime': '2009-06-18 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759215, 'End_Lon': -73.986218, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74955, 'Start_Lon': -73.991998, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-05 17:43:00', 'Trip_Pickup_DateTime': '2009-06-05 17:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783237, 'End_Lon': -73.959142, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756142, 'Start_Lon': -73.974712, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-05 11:00:00', 'Trip_Pickup_DateTime': '2009-06-05 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772915, 'End_Lon': -73.952162, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76677, 'Start_Lon': -73.956658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.49, 'Trip_Dropoff_DateTime': '2009-06-04 11:25:00', 'Trip_Pickup_DateTime': '2009-06-04 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754352, 'End_Lon': -73.990685, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744607, 'Start_Lon': -73.99151, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.13, 'Trip_Dropoff_DateTime': '2009-06-04 09:19:00', 'Trip_Pickup_DateTime': '2009-06-04 09:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731313, 'End_Lon': -73.990597, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733582, 'Start_Lon': -74.007133, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-02 13:43:00', 'Trip_Pickup_DateTime': '2009-06-02 13:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749045, 'End_Lon': -73.972645, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752468, 'Start_Lon': -73.98429, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-04 00:31:00', 'Trip_Pickup_DateTime': '2009-06-04 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772658, 'End_Lon': -73.977403, 'Fare_Amt': 9.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74891, 'Start_Lon': -73.99161, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.7, 'Trip_Dropoff_DateTime': '2009-06-07 13:52:00', 'Trip_Pickup_DateTime': '2009-06-07 13:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775115, 'End_Lon': -73.959115, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.783105, 'Start_Lon': -73.978097, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-16 12:59:00', 'Trip_Pickup_DateTime': '2009-06-16 12:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75364, 'End_Lon': -73.872005, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773958, 'Start_Lon': -73.874428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.67, 'Trip_Dropoff_DateTime': '2009-06-04 06:54:00', 'Trip_Pickup_DateTime': '2009-06-04 06:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766317, 'End_Lon': -73.966398, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766763, 'Start_Lon': -73.983682, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-16 12:43:00', 'Trip_Pickup_DateTime': '2009-06-16 12:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774865, 'End_Lon': -73.963278, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763382, 'Start_Lon': -73.969997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-04 12:17:00', 'Trip_Pickup_DateTime': '2009-06-04 12:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74644, 'End_Lon': -73.972047, 'Fare_Amt': 5.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75654, 'Start_Lon': -73.979333, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-08 14:54:00', 'Trip_Pickup_DateTime': '2009-06-08 14:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744768, 'End_Lon': -73.97879, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744768, 'Start_Lon': -73.97879, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-18 15:56:00', 'Trip_Pickup_DateTime': '2009-06-18 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75819, 'End_Lon': -74.000797, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756983, 'Start_Lon': -73.983803, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-16 12:09:00', 'Trip_Pickup_DateTime': '2009-06-16 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711747, 'End_Lon': -73.963005, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75632, 'Start_Lon': -73.984397, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.5, 'Trip_Distance': 5.65, 'Trip_Dropoff_DateTime': '2009-06-08 16:50:00', 'Trip_Pickup_DateTime': '2009-06-08 16:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755938, 'End_Lon': -73.97446, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761683, 'Start_Lon': -73.971312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.72, 'Trip_Dropoff_DateTime': '2009-06-18 16:03:00', 'Trip_Pickup_DateTime': '2009-06-18 15:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762995, 'End_Lon': -73.970187, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735245, 'Start_Lon': -73.990132, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.25, 'Trip_Dropoff_DateTime': '2009-06-16 12:03:00', 'Trip_Pickup_DateTime': '2009-06-16 11:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754602, 'End_Lon': -73.984307, 'Fare_Amt': 11.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72014, 'Start_Lon': -73.979055, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.44, 'Trip_Dropoff_DateTime': '2009-06-03 08:44:00', 'Trip_Pickup_DateTime': '2009-06-03 08:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73568, 'End_Lon': -73.992958, 'Fare_Amt': 7.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756883, 'Start_Lon': -73.986482, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-06 17:33:00', 'Trip_Pickup_DateTime': '2009-06-06 17:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76358, 'End_Lon': -73.975308, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740247, 'Start_Lon': -73.986173, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.98, 'Trip_Dropoff_DateTime': '2009-06-04 08:25:00', 'Trip_Pickup_DateTime': '2009-06-04 08:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752298, 'End_Lon': -73.983725, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754092, 'Start_Lon': -73.974612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-07 00:53:00', 'Trip_Pickup_DateTime': '2009-06-07 00:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-18 15:55:00', 'Trip_Pickup_DateTime': '2009-06-18 15:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778015, 'End_Lon': -73.976223, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.785432, 'Start_Lon': -73.978782, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-06 10:03:00', 'Trip_Pickup_DateTime': '2009-06-06 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756778, 'End_Lon': -73.97625, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756135, 'Start_Lon': -73.990072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-05 06:36:00', 'Trip_Pickup_DateTime': '2009-06-05 06:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756905, 'End_Lon': -73.967127, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.777605, 'Start_Lon': -73.954588, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-06 09:50:00', 'Trip_Pickup_DateTime': '2009-06-06 09:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774037, 'End_Lon': -73.988652, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.757318, 'Start_Lon': -73.983725, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-15 21:35:00', 'Trip_Pickup_DateTime': '2009-06-15 21:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76077, 'End_Lon': -73.967062, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74789, 'Start_Lon': -73.976343, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.02, 'Trip_Dropoff_DateTime': '2009-06-16 10:26:00', 'Trip_Pickup_DateTime': '2009-06-16 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771172, 'End_Lon': -73.9505, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.781992, 'Start_Lon': -73.955872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-18 14:54:00', 'Trip_Pickup_DateTime': '2009-06-18 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761513, 'End_Lon': -73.977517, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750727, 'Start_Lon': -73.969772, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-03 14:39:00', 'Trip_Pickup_DateTime': '2009-06-03 14:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73697, 'End_Lon': -73.990475, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757147, 'Start_Lon': -73.976092, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.28, 'Trip_Dropoff_DateTime': '2009-06-07 23:36:00', 'Trip_Pickup_DateTime': '2009-06-07 23:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748845, 'End_Lon': -73.972108, 'Fare_Amt': 20.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771153, 'Start_Lon': -73.865837, 'Tip_Amt': 6.27, 'Tolls_Amt': 4.15, 'Total_Amt': 31.32, 'Trip_Distance': 8.72, 'Trip_Dropoff_DateTime': '2009-06-08 06:42:00', 'Trip_Pickup_DateTime': '2009-06-08 06:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727187, 'End_Lon': -73.98443, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.705773, 'Start_Lon': -74.005455, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.13, 'Trip_Dropoff_DateTime': '2009-06-18 12:40:00', 'Trip_Pickup_DateTime': '2009-06-18 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744108, 'End_Lon': -73.983495, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752363, 'Start_Lon': -73.993295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-12 19:47:00', 'Trip_Pickup_DateTime': '2009-06-12 19:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759765, 'End_Lon': -73.968202, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74953, 'Start_Lon': -73.975663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-18 08:47:00', 'Trip_Pickup_DateTime': '2009-06-18 08:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742487, 'End_Lon': -73.976775, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740773, 'Start_Lon': -74.002423, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.93, 'Trip_Dropoff_DateTime': '2009-06-09 17:08:00', 'Trip_Pickup_DateTime': '2009-06-09 16:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.713475, 'End_Lon': -73.958852, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730253, 'Start_Lon': -73.95407, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-12 21:18:00', 'Trip_Pickup_DateTime': '2009-06-12 21:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.766085, 'End_Lon': -73.977287, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756233, 'Start_Lon': -73.990155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-12 14:44:00', 'Trip_Pickup_DateTime': '2009-06-12 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714553, 'End_Lon': -73.981783, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748115, 'Start_Lon': -73.98547, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 3.2, 'Trip_Dropoff_DateTime': '2009-06-16 14:42:00', 'Trip_Pickup_DateTime': '2009-06-16 14:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724693, 'End_Lon': -73.990447, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736823, 'Start_Lon': -73.990473, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.14, 'Trip_Dropoff_DateTime': '2009-06-09 15:17:00', 'Trip_Pickup_DateTime': '2009-06-09 15:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734097, 'End_Lon': -73.97788, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747977, 'Start_Lon': -73.984958, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.39, 'Trip_Dropoff_DateTime': '2009-06-12 21:36:00', 'Trip_Pickup_DateTime': '2009-06-12 21:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.82211, 'End_Lon': -73.949755, 'Fare_Amt': 18.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750027, 'Start_Lon': -73.991438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 6.93, 'Trip_Dropoff_DateTime': '2009-06-12 20:25:00', 'Trip_Pickup_DateTime': '2009-06-12 20:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.748287, 'End_Lon': -73.984587, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759185, 'Start_Lon': -73.985668, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.28, 'Trip_Dropoff_DateTime': '2009-06-01 13:07:00', 'Trip_Pickup_DateTime': '2009-06-01 12:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738438, 'End_Lon': -73.99051, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.72858, 'Start_Lon': -74.002777, 'Tip_Amt': 1.2, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-12 21:10:00', 'Trip_Pickup_DateTime': '2009-06-12 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73002, 'End_Lon': -73.989202, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.710985, 'Start_Lon': -74.016033, 'Tip_Amt': 2.4, 'Tolls_Amt': 0.0, 'Total_Amt': 17.5, 'Trip_Distance': 4.88, 'Trip_Dropoff_DateTime': '2009-06-12 19:31:00', 'Trip_Pickup_DateTime': '2009-06-12 19:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725882, 'End_Lon': -73.9964, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.753188, 'Start_Lon': -73.979483, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-01 15:43:00', 'Trip_Pickup_DateTime': '2009-06-01 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750297, 'End_Lon': -73.971772, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773622, 'Start_Lon': -73.94883, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.55, 'Trip_Dropoff_DateTime': '2009-06-01 15:08:00', 'Trip_Pickup_DateTime': '2009-06-01 15:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728933, 'End_Lon': -73.98446, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721368, 'Start_Lon': -73.99746, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-01 18:32:00', 'Trip_Pickup_DateTime': '2009-06-01 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769248, 'End_Lon': -73.963377, 'Fare_Amt': 3.3, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766823, 'Start_Lon': -73.96735, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.34, 'Trip_Dropoff_DateTime': '2009-06-12 19:32:00', 'Trip_Pickup_DateTime': '2009-06-12 19:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747282, 'End_Lon': -73.9458, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753422, 'Start_Lon': -73.945918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-16 17:08:00', 'Trip_Pickup_DateTime': '2009-06-16 16:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715373, 'End_Lon': -73.984982, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.723132, 'Start_Lon': -73.999062, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-09 13:59:00', 'Trip_Pickup_DateTime': '2009-06-09 13:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760628, 'End_Lon': -73.989832, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766045, 'Start_Lon': -73.987088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.45, 'Trip_Dropoff_DateTime': '2009-06-12 19:18:00', 'Trip_Pickup_DateTime': '2009-06-12 19:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.810237, 'End_Lon': -73.954123, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.81283, 'Start_Lon': -73.95412, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-16 16:16:00', 'Trip_Pickup_DateTime': '2009-06-16 16:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781892, 'End_Lon': -73.947382, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749127, 'Start_Lon': -73.969453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.85, 'Trip_Dropoff_DateTime': '2009-06-12 19:04:00', 'Trip_Pickup_DateTime': '2009-06-12 18:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724385, 'End_Lon': -73.993042, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743482, 'Start_Lon': -73.976343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-18 20:40:00', 'Trip_Pickup_DateTime': '2009-06-18 20:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.79231, 'End_Lon': -73.971597, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.803677, 'Start_Lon': -73.955692, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-12 18:42:00', 'Trip_Pickup_DateTime': '2009-06-12 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738383, 'End_Lon': -73.987685, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748218, 'Start_Lon': -73.980612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-12 18:36:00', 'Trip_Pickup_DateTime': '2009-06-12 18:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735278, 'End_Lon': -73.989465, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735087, 'Start_Lon': -73.979732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-09 13:58:00', 'Trip_Pickup_DateTime': '2009-06-09 13:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757517, 'End_Lon': -73.984228, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752882, 'Start_Lon': -73.973685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-01 21:04:00', 'Trip_Pickup_DateTime': '2009-06-01 21:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.738045, 'End_Lon': -73.99238, 'Fare_Amt': 3.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738965, 'Start_Lon': -73.987453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-18 19:27:00', 'Trip_Pickup_DateTime': '2009-06-18 19:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76307, 'End_Lon': -73.96848, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.741813, 'Start_Lon': -73.989937, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-01 22:28:00', 'Trip_Pickup_DateTime': '2009-06-01 22:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775453, 'End_Lon': -73.950498, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77319, 'Start_Lon': -73.94606, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-12 19:00:00', 'Trip_Pickup_DateTime': '2009-06-12 18:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76612, 'End_Lon': -73.9519, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76533, 'Start_Lon': -73.967815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-12 18:39:00', 'Trip_Pickup_DateTime': '2009-06-12 18:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750533, 'End_Lon': -73.991257, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741715, 'Start_Lon': -73.989703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-16 17:12:00', 'Trip_Pickup_DateTime': '2009-06-16 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77993, 'End_Lon': -73.952523, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.789095, 'Start_Lon': -73.954582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-12 18:41:00', 'Trip_Pickup_DateTime': '2009-06-12 18:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772652, 'End_Lon': -73.953465, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756293, 'Start_Lon': -73.973283, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-18 18:14:00', 'Trip_Pickup_DateTime': '2009-06-18 18:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745012, 'End_Lon': -73.986172, 'Fare_Amt': 30.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768925, 'Start_Lon': -73.862707, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 30.6, 'Trip_Distance': 13.37, 'Trip_Dropoff_DateTime': '2009-06-18 20:46:00', 'Trip_Pickup_DateTime': '2009-06-18 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746222, 'End_Lon': -73.997928, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.711488, 'Start_Lon': -74.010505, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.4, 'Trip_Distance': 2.66, 'Trip_Dropoff_DateTime': '2009-06-01 23:58:00', 'Trip_Pickup_DateTime': '2009-06-01 23:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.727298, 'End_Lon': -73.982572, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721917, 'Start_Lon': -73.999628, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.58, 'Trip_Dropoff_DateTime': '2009-06-01 15:37:00', 'Trip_Pickup_DateTime': '2009-06-01 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752152, 'End_Lon': -73.985517, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.717147, 'Start_Lon': -74.005043, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-01 21:45:00', 'Trip_Pickup_DateTime': '2009-06-01 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770425, 'End_Lon': -73.885175, 'Fare_Amt': 37.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707797, 'Start_Lon': -74.010812, 'Tip_Amt': 6.0, 'Tolls_Amt': 0.0, 'Total_Amt': 44.3, 'Trip_Distance': 13.77, 'Trip_Dropoff_DateTime': '2009-06-02 17:45:00', 'Trip_Pickup_DateTime': '2009-06-02 16:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714598, 'End_Lon': -74.015665, 'Fare_Amt': 8.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738315, 'Start_Lon': -73.999927, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-06 19:39:00', 'Trip_Pickup_DateTime': '2009-06-06 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77786, 'End_Lon': -73.95138, 'Fare_Amt': 20.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.737958, 'Start_Lon': -73.98799, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.0, 'Trip_Distance': 7.11, 'Trip_Dropoff_DateTime': '2009-06-01 22:36:00', 'Trip_Pickup_DateTime': '2009-06-01 22:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.733113, 'End_Lon': -73.99838, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746988, 'Start_Lon': -74.000948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-18 19:57:00', 'Trip_Pickup_DateTime': '2009-06-18 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76037, 'End_Lon': -74.002897, 'Fare_Amt': 18.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.70199, 'Start_Lon': -74.01127, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.9, 'Trip_Distance': 4.48, 'Trip_Dropoff_DateTime': '2009-06-01 14:44:00', 'Trip_Pickup_DateTime': '2009-06-01 14:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754957, 'End_Lon': -73.969357, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757785, 'Start_Lon': -73.982122, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-06 22:06:00', 'Trip_Pickup_DateTime': '2009-06-06 22:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.785393, 'End_Lon': -73.980337, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756168, 'Start_Lon': -73.97918, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.2, 'Trip_Distance': 2.87, 'Trip_Dropoff_DateTime': '2009-06-01 23:10:00', 'Trip_Pickup_DateTime': '2009-06-01 22:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763575, 'End_Lon': -73.977282, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747473, 'Start_Lon': -73.985847, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.53, 'Trip_Dropoff_DateTime': '2009-06-01 14:11:00', 'Trip_Pickup_DateTime': '2009-06-01 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765833, 'End_Lon': -73.983262, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744022, 'Start_Lon': -73.999287, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-01 22:14:00', 'Trip_Pickup_DateTime': '2009-06-01 22:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.736117, 'End_Lon': -73.998028, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746482, 'Start_Lon': -73.993867, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-01 21:26:00', 'Trip_Pickup_DateTime': '2009-06-01 21:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.693095, 'End_Lon': -73.993015, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769295, 'Start_Lon': -73.86298, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.33, 'Trip_Dropoff_DateTime': '2009-06-01 23:39:00', 'Trip_Pickup_DateTime': '2009-06-01 23:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.718688, 'End_Lon': -74.004962, 'Fare_Amt': 20.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718703, 'Start_Lon': -74.004965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-09 10:30:00', 'Trip_Pickup_DateTime': '2009-06-09 10:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.841022, 'End_Lon': -73.92228, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734555, 'Start_Lon': -73.99053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 28.6, 'Trip_Distance': 11.47, 'Trip_Dropoff_DateTime': '2009-06-01 23:42:00', 'Trip_Pickup_DateTime': '2009-06-01 23:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.786128, 'End_Lon': -73.980917, 'Fare_Amt': 14.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.731337, 'Start_Lon': -73.988488, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.6, 'Trip_Distance': 4.97, 'Trip_Dropoff_DateTime': '2009-06-01 22:52:00', 'Trip_Pickup_DateTime': '2009-06-01 22:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77088, 'End_Lon': -73.967483, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760413, 'Start_Lon': -73.97208, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-09 11:57:00', 'Trip_Pickup_DateTime': '2009-06-09 11:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.65653, 'End_Lon': -73.79396, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.658588, 'Start_Lon': -73.797797, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.7, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-01 17:57:00', 'Trip_Pickup_DateTime': '2009-06-01 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75944, 'End_Lon': -73.972402, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74094, 'Start_Lon': -73.985783, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-01 20:19:00', 'Trip_Pickup_DateTime': '2009-06-01 20:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.770212, 'End_Lon': -73.954212, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703933, 'Start_Lon': -74.011375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.7, 'Trip_Distance': 6.83, 'Trip_Dropoff_DateTime': '2009-06-01 18:59:00', 'Trip_Pickup_DateTime': '2009-06-01 18:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.805495, 'End_Lon': -73.965873, 'Fare_Amt': 3.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.81091, 'Start_Lon': -73.962948, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-01 14:36:00', 'Trip_Pickup_DateTime': '2009-06-01 14:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740343, 'End_Lon': -73.993472, 'Fare_Amt': 9.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75859, 'Start_Lon': -73.971663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.22, 'Trip_Dropoff_DateTime': '2009-06-09 12:11:00', 'Trip_Pickup_DateTime': '2009-06-09 11:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.4, 'Trip_Distance': 5.94, 'Trip_Dropoff_DateTime': '2009-06-13 02:32:00', 'Trip_Pickup_DateTime': '2009-06-13 02:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.746557, 'End_Lon': -73.980598, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754598, 'Start_Lon': -73.984467, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.1, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-09 10:10:00', 'Trip_Pickup_DateTime': '2009-06-09 10:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.799123, 'End_Lon': -73.959203, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.746628, 'Start_Lon': -73.981632, 'Tip_Amt': 3.18, 'Tolls_Amt': 0.0, 'Total_Amt': 19.08, 'Trip_Distance': 4.51, 'Trip_Dropoff_DateTime': '2009-06-18 18:20:00', 'Trip_Pickup_DateTime': '2009-06-18 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736507, 'End_Lon': -73.98716, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75863, 'Start_Lon': -73.988955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 2.36, 'Trip_Dropoff_DateTime': '2009-06-12 16:58:00', 'Trip_Pickup_DateTime': '2009-06-12 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769435, 'End_Lon': -73.96579, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785505, 'Start_Lon': -73.955978, 'Tip_Amt': 1.3, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-16 15:31:00', 'Trip_Pickup_DateTime': '2009-06-16 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711742, 'End_Lon': -74.008493, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761472, 'Start_Lon': -73.982793, 'Tip_Amt': 2.1, 'Tolls_Amt': 0.0, 'Total_Amt': 18.0, 'Trip_Distance': 3.91, 'Trip_Dropoff_DateTime': '2009-06-18 19:32:00', 'Trip_Pickup_DateTime': '2009-06-18 19:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.672662, 'End_Lon': -73.973602, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754082, 'Start_Lon': -73.973918, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 6.99, 'Trip_Dropoff_DateTime': '2009-06-01 21:30:00', 'Trip_Pickup_DateTime': '2009-06-01 21:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.793625, 'End_Lon': -73.943195, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779007, 'Start_Lon': -73.953908, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-16 15:24:00', 'Trip_Pickup_DateTime': '2009-06-16 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.727937, 'End_Lon': -73.98582, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.728228, 'Start_Lon': -73.999227, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-02 23:46:00', 'Trip_Pickup_DateTime': '2009-06-02 23:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765362, 'End_Lon': -73.968357, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775273, 'Start_Lon': -73.957335, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-01 17:20:00', 'Trip_Pickup_DateTime': '2009-06-01 17:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765563, 'End_Lon': -73.968193, 'Fare_Amt': 7.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774893, 'Start_Lon': -73.958068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 0.93, 'Trip_Dropoff_DateTime': '2009-06-18 19:24:00', 'Trip_Pickup_DateTime': '2009-06-18 19:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731068, 'End_Lon': -73.993233, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720298, 'Start_Lon': -74.009703, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-01 14:33:00', 'Trip_Pickup_DateTime': '2009-06-01 14:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741028, 'End_Lon': -73.978627, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7414, 'Start_Lon': -74.002303, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.68, 'Trip_Dropoff_DateTime': '2009-06-01 19:27:00', 'Trip_Pickup_DateTime': '2009-06-01 19:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711153, 'End_Lon': -73.98328, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.706202, 'Start_Lon': -74.005937, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-04 10:31:00', 'Trip_Pickup_DateTime': '2009-06-04 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71867, 'End_Lon': -74.008032, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756335, 'Start_Lon': -73.974972, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.9, 'Trip_Distance': 4.09, 'Trip_Dropoff_DateTime': '2009-06-18 18:44:00', 'Trip_Pickup_DateTime': '2009-06-18 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729995, 'End_Lon': -73.991307, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.754198, 'Start_Lon': -73.974623, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.7, 'Trip_Distance': 1.97, 'Trip_Dropoff_DateTime': '2009-06-09 11:04:00', 'Trip_Pickup_DateTime': '2009-06-09 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773273, 'End_Lon': -73.964458, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798055, 'Start_Lon': -73.969222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-01 18:26:00', 'Trip_Pickup_DateTime': '2009-06-01 18:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777237, 'End_Lon': -73.985868, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.782585, 'Start_Lon': -73.980738, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.54, 'Trip_Dropoff_DateTime': '2009-06-01 16:44:00', 'Trip_Pickup_DateTime': '2009-06-01 16:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773767, 'End_Lon': -73.949793, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741463, 'Start_Lon': -73.983355, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-18 17:00:00', 'Trip_Pickup_DateTime': '2009-06-18 16:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756988, 'End_Lon': -73.97253, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744012, 'Start_Lon': -73.987802, 'Tip_Amt': 1.6, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.63, 'Trip_Dropoff_DateTime': '2009-06-01 12:58:00', 'Trip_Pickup_DateTime': '2009-06-01 12:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734376, 'End_Lon': -73.983581, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.74093, 'Start_Lon': -73.978753, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-19 17:53:02', 'Trip_Pickup_DateTime': '2009-06-19 17:51:03', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.789665, 'End_Lon': -73.975515, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773937, 'Start_Lon': -73.982185, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 1.18, 'Trip_Dropoff_DateTime': '2009-06-01 15:30:00', 'Trip_Pickup_DateTime': '2009-06-01 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75998, 'End_Lon': -73.918157, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743325, 'Start_Lon': -73.91751, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-01 15:56:00', 'Trip_Pickup_DateTime': '2009-06-01 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76081, 'End_Lon': -73.958102, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775432, 'Start_Lon': -73.946167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-01 12:17:00', 'Trip_Pickup_DateTime': '2009-06-01 12:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737728, 'End_Lon': -73.984477, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755325, 'Start_Lon': -73.968268, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.66, 'Trip_Dropoff_DateTime': '2009-06-09 09:27:00', 'Trip_Pickup_DateTime': '2009-06-09 09:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750983, 'End_Lon': -73.990357, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752992, 'Start_Lon': -73.982312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.65, 'Trip_Dropoff_DateTime': '2009-06-01 15:37:00', 'Trip_Pickup_DateTime': '2009-06-01 15:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.719287, 'End_Lon': -73.976472, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765345, 'Start_Lon': -73.954493, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.68, 'Trip_Dropoff_DateTime': '2009-06-01 16:03:00', 'Trip_Pickup_DateTime': '2009-06-01 15:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783755, 'End_Lon': -73.957635, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778462, 'Start_Lon': -73.982967, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-01 14:47:00', 'Trip_Pickup_DateTime': '2009-06-01 14:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.807542, 'End_Lon': -73.96058, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779283, 'Start_Lon': -73.959467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-01 13:58:00', 'Trip_Pickup_DateTime': '2009-06-01 13:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739813, 'End_Lon': -73.984515, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748752, 'Start_Lon': -73.978205, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-01 12:04:00', 'Trip_Pickup_DateTime': '2009-06-01 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738367, 'End_Lon': -73.989668, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.736283, 'Start_Lon': -73.976872, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-18 13:10:00', 'Trip_Pickup_DateTime': '2009-06-18 13:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759262, 'End_Lon': -73.97727, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76864, 'Start_Lon': -73.992615, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-09 09:04:00', 'Trip_Pickup_DateTime': '2009-06-09 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750843, 'End_Lon': -73.990883, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75013, 'Start_Lon': -73.988338, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.71, 'Trip_Dropoff_DateTime': '2009-06-01 15:26:00', 'Trip_Pickup_DateTime': '2009-06-01 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729248, 'End_Lon': -74.003628, 'Fare_Amt': 4.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722372, 'Start_Lon': -73.997085, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-09 09:35:00', 'Trip_Pickup_DateTime': '2009-06-09 09:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785315, 'End_Lon': -73.977532, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776868, 'Start_Lon': -73.986357, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-12 15:08:00', 'Trip_Pickup_DateTime': '2009-06-12 15:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.714882, 'End_Lon': -74.007748, 'Fare_Amt': 14.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75467, 'Start_Lon': -73.968577, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 3.97, 'Trip_Dropoff_DateTime': '2009-06-01 15:15:00', 'Trip_Pickup_DateTime': '2009-06-01 14:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759857, 'End_Lon': -73.984412, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761135, 'Start_Lon': -73.977805, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.52, 'Trip_Dropoff_DateTime': '2009-06-01 12:19:00', 'Trip_Pickup_DateTime': '2009-06-01 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.81139, 'End_Lon': -73.956598, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.813662, 'Start_Lon': -73.959222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.69, 'Trip_Dropoff_DateTime': '2009-06-18 17:43:00', 'Trip_Pickup_DateTime': '2009-06-18 17:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752543, 'End_Lon': -73.976457, 'Fare_Amt': 8.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.742888, 'Start_Lon': -74.000218, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-12 16:39:00', 'Trip_Pickup_DateTime': '2009-06-12 16:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765922, 'End_Lon': -73.992562, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775723, 'Start_Lon': -73.960437, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.53, 'Trip_Dropoff_DateTime': '2009-06-12 12:29:00', 'Trip_Pickup_DateTime': '2009-06-12 12:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747977, 'End_Lon': -73.980378, 'Fare_Amt': 8.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.761057, 'Start_Lon': -73.97123, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-09 08:58:00', 'Trip_Pickup_DateTime': '2009-06-09 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783192, 'End_Lon': -73.957028, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.798908, 'Start_Lon': -73.936312, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.7, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-18 16:48:00', 'Trip_Pickup_DateTime': '2009-06-18 16:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769347, 'End_Lon': -73.965742, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76381, 'Start_Lon': -73.958958, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-09 08:45:00', 'Trip_Pickup_DateTime': '2009-06-09 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766703, 'End_Lon': -73.983175, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749915, 'Start_Lon': -73.992495, 'Tip_Amt': 2.9, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 2.52, 'Trip_Dropoff_DateTime': '2009-06-13 13:43:00', 'Trip_Pickup_DateTime': '2009-06-13 13:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750027, 'End_Lon': -73.991283, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.646945, 'Start_Lon': -73.789968, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 49.15, 'Trip_Distance': 17.41, 'Trip_Dropoff_DateTime': '2009-06-13 15:22:00', 'Trip_Pickup_DateTime': '2009-06-13 14:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 29.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 10.86, 'Tolls_Amt': 0.0, 'Total_Amt': 40.16, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-13 12:10:00', 'Trip_Pickup_DateTime': '2009-06-13 11:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781978, 'End_Lon': -73.967015, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780125, 'Start_Lon': -73.97448, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-10 08:38:00', 'Trip_Pickup_DateTime': '2009-06-10 08:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748952, 'End_Lon': -73.976332, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735522, 'Start_Lon': -73.992463, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-13 15:42:00', 'Trip_Pickup_DateTime': '2009-06-13 15:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.735982, 'End_Lon': -73.982243, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.767575, 'Start_Lon': -73.956182, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.38, 'Trip_Dropoff_DateTime': '2009-06-16 19:41:00', 'Trip_Pickup_DateTime': '2009-06-16 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758138, 'End_Lon': -73.992213, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765747, 'Start_Lon': -73.976863, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.36, 'Trip_Dropoff_DateTime': '2009-06-16 19:58:00', 'Trip_Pickup_DateTime': '2009-06-16 19:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76091, 'End_Lon': -73.972497, 'Fare_Amt': 11.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.78415, 'Start_Lon': -73.954383, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-09 18:48:00', 'Trip_Pickup_DateTime': '2009-06-09 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.748652, 'End_Lon': -73.988648, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756212, 'Start_Lon': -73.972428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-13 12:55:00', 'Trip_Pickup_DateTime': '2009-06-13 12:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745448, 'End_Lon': -73.979668, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726437, 'Start_Lon': -73.98617, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-09 22:30:00', 'Trip_Pickup_DateTime': '2009-06-09 22:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73993, 'End_Lon': -74.005043, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765662, 'Start_Lon': -73.979838, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 2.56, 'Trip_Dropoff_DateTime': '2009-06-13 00:02:00', 'Trip_Pickup_DateTime': '2009-06-12 23:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.701613, 'End_Lon': -74.012545, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733808, 'Start_Lon': -73.980782, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.96, 'Trip_Dropoff_DateTime': '2009-06-10 05:38:00', 'Trip_Pickup_DateTime': '2009-06-10 05:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744925, 'End_Lon': -73.991737, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755275, 'Start_Lon': -73.995023, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-10 06:48:00', 'Trip_Pickup_DateTime': '2009-06-10 06:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754953, 'End_Lon': -73.97688, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760727, 'Start_Lon': -73.994618, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-13 12:48:00', 'Trip_Pickup_DateTime': '2009-06-13 12:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.722128, 'End_Lon': -74.005757, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761038, 'Start_Lon': -73.999917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-13 13:34:00', 'Trip_Pickup_DateTime': '2009-06-13 13:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.770907, 'End_Lon': -73.96025, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.726797, 'Start_Lon': -74.005788, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.62, 'Trip_Dropoff_DateTime': '2009-06-10 02:04:00', 'Trip_Pickup_DateTime': '2009-06-10 01:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76096, 'End_Lon': -73.98342, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761512, 'Start_Lon': -73.981823, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-04 19:59:00', 'Trip_Pickup_DateTime': '2009-06-04 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773558, 'End_Lon': -73.95818, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764077, 'Start_Lon': -73.964675, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.76, 'Trip_Dropoff_DateTime': '2009-06-13 08:47:00', 'Trip_Pickup_DateTime': '2009-06-13 08:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765958, 'End_Lon': -73.963548, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.75758, 'Start_Lon': -73.963627, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-13 08:59:00', 'Trip_Pickup_DateTime': '2009-06-13 08:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751992, 'End_Lon': -73.975783, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.777588, 'Start_Lon': -73.96121, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.23, 'Trip_Dropoff_DateTime': '2009-06-13 10:00:00', 'Trip_Pickup_DateTime': '2009-06-13 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746493, 'End_Lon': -73.993693, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722977, 'Start_Lon': -73.988295, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.29, 'Trip_Dropoff_DateTime': '2009-06-13 00:22:00', 'Trip_Pickup_DateTime': '2009-06-13 00:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.767247, 'End_Lon': -73.995838, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765272, 'Start_Lon': -73.980868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.22, 'Trip_Dropoff_DateTime': '2009-06-10 02:09:00', 'Trip_Pickup_DateTime': '2009-06-10 02:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755067, 'End_Lon': -73.973732, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761723, 'Start_Lon': -73.98594, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.84, 'Trip_Dropoff_DateTime': '2009-06-13 11:17:00', 'Trip_Pickup_DateTime': '2009-06-13 11:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769637, 'End_Lon': -73.960322, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773285, 'Start_Lon': -73.955057, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.82, 'Trip_Dropoff_DateTime': '2009-06-13 11:17:00', 'Trip_Pickup_DateTime': '2009-06-13 11:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.765705, 'End_Lon': -73.975768, 'Fare_Amt': 4.1, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759475, 'Start_Lon': -73.976662, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-13 10:29:00', 'Trip_Pickup_DateTime': '2009-06-13 10:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74148, 'End_Lon': -73.99362, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725595, 'Start_Lon': -73.98392, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.71, 'Trip_Dropoff_DateTime': '2009-06-18 22:30:00', 'Trip_Pickup_DateTime': '2009-06-18 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.765738, 'End_Lon': -73.98851, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733382, 'Start_Lon': -74.00297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-10 00:24:00', 'Trip_Pickup_DateTime': '2009-06-10 00:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74521, 'End_Lon': -74.008107, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719702, 'Start_Lon': -74.00526, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-13 10:58:00', 'Trip_Pickup_DateTime': '2009-06-13 10:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70809, 'End_Lon': -74.007065, 'Fare_Amt': 31.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769138, 'Start_Lon': -73.862857, 'Tip_Amt': 9.54, 'Tolls_Amt': 0.0, 'Total_Amt': 41.34, 'Trip_Distance': 13.03, 'Trip_Dropoff_DateTime': '2009-06-10 00:34:00', 'Trip_Pickup_DateTime': '2009-06-10 00:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789672, 'End_Lon': -73.950178, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805107, 'Start_Lon': -73.963053, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-09 22:07:00', 'Trip_Pickup_DateTime': '2009-06-09 21:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.730648, 'End_Lon': -73.998827, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726492, 'Start_Lon': -73.983192, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-13 00:35:00', 'Trip_Pickup_DateTime': '2009-06-13 00:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741718, 'End_Lon': -73.985582, 'Fare_Amt': 9.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763962, 'Start_Lon': -73.973737, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-16 15:40:00', 'Trip_Pickup_DateTime': '2009-06-16 15:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75785, 'End_Lon': -73.9855, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761087, 'Start_Lon': -73.97132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-16 18:31:00', 'Trip_Pickup_DateTime': '2009-06-16 18:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755932, 'End_Lon': -73.982143, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740597, 'Start_Lon': -74.005612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.73, 'Trip_Dropoff_DateTime': '2009-06-18 21:46:00', 'Trip_Pickup_DateTime': '2009-06-18 21:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.84616, 'End_Lon': -73.936335, 'Fare_Amt': 25.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730148, 'Start_Lon': -74.00199, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 25.8, 'Trip_Distance': 10.08, 'Trip_Dropoff_DateTime': '2009-06-13 05:04:00', 'Trip_Pickup_DateTime': '2009-06-13 04:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.724837, 'End_Lon': -73.995533, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.711525, 'Start_Lon': -74.010538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-13 10:10:00', 'Trip_Pickup_DateTime': '2009-06-13 10:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772642, 'End_Lon': -73.89966, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773723, 'Start_Lon': -73.907222, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-09 23:49:00', 'Trip_Pickup_DateTime': '2009-06-09 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722432, 'End_Lon': -73.951042, 'Fare_Amt': 16.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7434, 'Start_Lon': -73.99589, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.0, 'Trip_Distance': 5.39, 'Trip_Dropoff_DateTime': '2009-06-09 23:39:00', 'Trip_Pickup_DateTime': '2009-06-09 23:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777763, 'End_Lon': -73.977555, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.780115, 'Start_Lon': -73.95517, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-13 09:43:00', 'Trip_Pickup_DateTime': '2009-06-13 09:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750783, 'End_Lon': -73.987192, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739998, 'Start_Lon': -73.994955, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-16 18:26:00', 'Trip_Pickup_DateTime': '2009-06-16 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.695102, 'End_Lon': -73.995483, 'Fare_Amt': 20.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758248, 'Start_Lon': -73.985358, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 7.76, 'Trip_Dropoff_DateTime': '2009-06-09 22:28:00', 'Trip_Pickup_DateTime': '2009-06-09 22:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.73096, 'End_Lon': -73.983768, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754463, 'Start_Lon': -73.965637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-09 21:57:00', 'Trip_Pickup_DateTime': '2009-06-09 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.787408, 'End_Lon': -73.974253, 'Fare_Amt': 12.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752093, 'Start_Lon': -73.974203, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.26, 'Trip_Dropoff_DateTime': '2009-06-16 18:47:00', 'Trip_Pickup_DateTime': '2009-06-16 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.831935, 'End_Lon': -73.949325, 'Fare_Amt': 10.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.0, 'Trip_Distance': 0.0, 'Trip_Dropoff_DateTime': '2009-06-09 20:44:00', 'Trip_Pickup_DateTime': '2009-06-09 20:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.737428, 'End_Lon': -73.992495, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756727, 'Start_Lon': -73.972445, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.96, 'Trip_Dropoff_DateTime': '2009-06-09 20:33:00', 'Trip_Pickup_DateTime': '2009-06-09 20:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.788672, 'End_Lon': -73.975302, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.759922, 'Start_Lon': -73.985768, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-16 18:31:00', 'Trip_Pickup_DateTime': '2009-06-16 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761403, 'End_Lon': -73.974227, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721013, 'Start_Lon': -73.99748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.19, 'Trip_Dropoff_DateTime': '2009-06-13 04:07:00', 'Trip_Pickup_DateTime': '2009-06-13 03:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.753363, 'End_Lon': -73.967165, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.791683, 'Start_Lon': -73.953677, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.31, 'Trip_Dropoff_DateTime': '2009-06-16 18:40:00', 'Trip_Pickup_DateTime': '2009-06-16 18:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.631102, 'End_Lon': -74.026165, 'Fare_Amt': 23.3, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739767, 'Start_Lon': -73.976227, 'Tip_Amt': 4.76, 'Tolls_Amt': 0.0, 'Total_Amt': 28.56, 'Trip_Distance': 10.23, 'Trip_Dropoff_DateTime': '2009-06-09 20:38:00', 'Trip_Pickup_DateTime': '2009-06-09 20:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761707, 'End_Lon': -73.983318, 'Fare_Amt': 11.3, 'Passenger_Count': 4, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740043, 'Start_Lon': -74.00469, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 3.37, 'Trip_Dropoff_DateTime': '2009-06-13 04:12:00', 'Trip_Pickup_DateTime': '2009-06-13 03:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761077, 'End_Lon': -73.987242, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761077, 'Start_Lon': -73.987242, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-09 20:34:00', 'Trip_Pickup_DateTime': '2009-06-09 20:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760653, 'End_Lon': -74.00275, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744283, 'Start_Lon': -73.99177, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.8, 'Trip_Distance': 1.73, 'Trip_Dropoff_DateTime': '2009-06-09 20:24:00', 'Trip_Pickup_DateTime': '2009-06-09 20:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735898, 'End_Lon': -73.987262, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725682, 'Start_Lon': -73.986723, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-09 20:23:00', 'Trip_Pickup_DateTime': '2009-06-09 20:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.683198, 'End_Lon': -73.97381, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714093, 'Start_Lon': -74.006443, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.79, 'Trip_Dropoff_DateTime': '2009-06-09 00:40:00', 'Trip_Pickup_DateTime': '2009-06-09 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77083, 'End_Lon': -73.953715, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749118, 'Start_Lon': -73.976135, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.4, 'Trip_Distance': 2.14, 'Trip_Dropoff_DateTime': '2009-06-09 20:12:00', 'Trip_Pickup_DateTime': '2009-06-09 20:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764352, 'End_Lon': -73.968693, 'Fare_Amt': 6.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776422, 'Start_Lon': -73.962143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-09 18:35:00', 'Trip_Pickup_DateTime': '2009-06-09 18:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762882, 'End_Lon': -73.97432, 'Fare_Amt': 15.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.721553, 'Start_Lon': -74.000178, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-01 18:42:00', 'Trip_Pickup_DateTime': '2009-06-01 18:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755347, 'End_Lon': -73.991328, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.741845, 'Start_Lon': -74.001073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-18 21:29:00', 'Trip_Pickup_DateTime': '2009-06-18 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744017, 'End_Lon': -73.995927, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756855, 'Start_Lon': -73.9859, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.03, 'Trip_Dropoff_DateTime': '2009-06-12 15:39:00', 'Trip_Pickup_DateTime': '2009-06-12 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774898, 'End_Lon': -73.982053, 'Fare_Amt': 12.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.742673, 'Start_Lon': -73.986645, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.5, 'Trip_Distance': 2.93, 'Trip_Dropoff_DateTime': '2009-06-16 18:04:00', 'Trip_Pickup_DateTime': '2009-06-16 17:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716867, 'End_Lon': -74.008207, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.709395, 'Start_Lon': -74.00167, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-09 19:43:00', 'Trip_Pickup_DateTime': '2009-06-09 19:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766445, 'End_Lon': -73.993767, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804822, 'Start_Lon': -73.966365, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 3.46, 'Trip_Dropoff_DateTime': '2009-06-13 01:36:00', 'Trip_Pickup_DateTime': '2009-06-13 01:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7594, 'End_Lon': -73.994868, 'Fare_Amt': 11.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764472, 'Start_Lon': -73.97019, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.8, 'Trip_Distance': 1.83, 'Trip_Dropoff_DateTime': '2009-06-12 23:11:00', 'Trip_Pickup_DateTime': '2009-06-12 22:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7345, 'End_Lon': -74.005983, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749605, 'Start_Lon': -74.006478, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-16 18:14:00', 'Trip_Pickup_DateTime': '2009-06-16 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756802, 'End_Lon': -73.982253, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749837, 'Start_Lon': -73.975422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.1, 'Trip_Distance': 0.75, 'Trip_Dropoff_DateTime': '2009-06-09 19:54:00', 'Trip_Pickup_DateTime': '2009-06-09 19:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.782202, 'End_Lon': -73.945365, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760715, 'Start_Lon': -73.96111, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 0.17, 'Trip_Dropoff_DateTime': '2009-06-16 17:59:00', 'Trip_Pickup_DateTime': '2009-06-16 17:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.716692, 'End_Lon': -74.011587, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.713345, 'Start_Lon': -74.006975, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.7, 'Trip_Distance': 0.42, 'Trip_Dropoff_DateTime': '2009-06-09 20:00:00', 'Trip_Pickup_DateTime': '2009-06-09 19:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.711495, 'End_Lon': -73.995443, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.718903, 'Start_Lon': -74.010477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.07, 'Trip_Dropoff_DateTime': '2009-06-09 00:55:00', 'Trip_Pickup_DateTime': '2009-06-09 00:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.776347, 'End_Lon': -73.960223, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759458, 'Start_Lon': -73.96202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-09 19:40:00', 'Trip_Pickup_DateTime': '2009-06-09 19:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709005, 'End_Lon': -74.008105, 'Fare_Amt': 12.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751182, 'Start_Lon': -74.006388, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.1, 'Trip_Distance': 3.43, 'Trip_Dropoff_DateTime': '2009-06-18 21:06:00', 'Trip_Pickup_DateTime': '2009-06-18 20:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702395, 'End_Lon': -73.989722, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7508, 'Start_Lon': -74.005737, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.1, 'Trip_Distance': 4.44, 'Trip_Dropoff_DateTime': '2009-06-09 17:57:00', 'Trip_Pickup_DateTime': '2009-06-09 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801398, 'End_Lon': -73.932723, 'Fare_Amt': 14.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75445, 'Start_Lon': -73.98732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 5.28, 'Trip_Dropoff_DateTime': '2009-06-12 20:42:00', 'Trip_Pickup_DateTime': '2009-06-12 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781868, 'End_Lon': -73.947022, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732058, 'Start_Lon': -74.003583, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 19.4, 'Trip_Distance': 5.76, 'Trip_Dropoff_DateTime': '2009-06-13 00:57:00', 'Trip_Pickup_DateTime': '2009-06-13 00:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760225, 'End_Lon': -73.98368, 'Fare_Amt': 21.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.797733, 'Start_Lon': -73.934082, 'Tip_Amt': 4.26, 'Tolls_Amt': 0.0, 'Total_Amt': 25.56, 'Trip_Distance': 4.52, 'Trip_Dropoff_DateTime': '2009-06-09 16:11:00', 'Trip_Pickup_DateTime': '2009-06-09 15:30:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.785922, 'End_Lon': -73.952982, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77813, 'Start_Lon': -73.958777, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.63, 'Trip_Dropoff_DateTime': '2009-06-13 01:47:00', 'Trip_Pickup_DateTime': '2009-06-13 01:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7427, 'End_Lon': -73.982605, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752462, 'Start_Lon': -73.974835, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.79, 'Trip_Dropoff_DateTime': '2009-06-09 18:10:00', 'Trip_Pickup_DateTime': '2009-06-09 18:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763078, 'End_Lon': -73.989843, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774108, 'Start_Lon': -73.959468, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.1, 'Trip_Distance': 2.47, 'Trip_Dropoff_DateTime': '2009-06-09 19:39:00', 'Trip_Pickup_DateTime': '2009-06-09 19:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.724268, 'End_Lon': -73.990845, 'Fare_Amt': 6.9, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744598, 'Start_Lon': -73.97606, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.61, 'Trip_Dropoff_DateTime': '2009-06-12 21:56:00', 'Trip_Pickup_DateTime': '2009-06-12 21:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.760803, 'End_Lon': -74.002427, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75788, 'Start_Lon': -73.986438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.0, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-12 23:33:00', 'Trip_Pickup_DateTime': '2009-06-12 23:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779417, 'End_Lon': -73.954363, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790982, 'Start_Lon': -73.95352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-09 17:17:00', 'Trip_Pickup_DateTime': '2009-06-09 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773618, 'End_Lon': -73.981725, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.795048, 'Start_Lon': -73.950428, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.3, 'Trip_Distance': 2.99, 'Trip_Dropoff_DateTime': '2009-06-09 17:41:00', 'Trip_Pickup_DateTime': '2009-06-09 17:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.690308, 'End_Lon': -73.989828, 'Fare_Amt': 19.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755047, 'Start_Lon': -73.981635, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.2, 'Trip_Distance': 7.01, 'Trip_Dropoff_DateTime': '2009-06-26 22:44:00', 'Trip_Pickup_DateTime': '2009-06-26 22:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.722128, 'End_Lon': -73.996598, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748622, 'Start_Lon': -73.988475, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.64, 'Trip_Dropoff_DateTime': '2009-06-16 17:46:00', 'Trip_Pickup_DateTime': '2009-06-16 17:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751558, 'End_Lon': -73.973603, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772675, 'Start_Lon': -73.958618, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 1.75, 'Trip_Dropoff_DateTime': '2009-06-09 16:03:00', 'Trip_Pickup_DateTime': '2009-06-09 15:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74423, 'End_Lon': -73.977007, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.749973, 'Start_Lon': -73.99155, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-12 21:57:00', 'Trip_Pickup_DateTime': '2009-06-12 21:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757762, 'End_Lon': -73.971328, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775157, 'Start_Lon': -73.9476, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-27 12:25:00', 'Trip_Pickup_DateTime': '2009-06-27 12:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.72327, 'End_Lon': -73.990208, 'Fare_Amt': 23.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.768978, 'Start_Lon': -73.862583, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 24.7, 'Trip_Distance': 10.27, 'Trip_Dropoff_DateTime': '2009-06-09 16:30:00', 'Trip_Pickup_DateTime': '2009-06-09 16:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764583, 'End_Lon': -73.965342, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764012, 'Start_Lon': -73.966773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.3, 'Trip_Distance': 0.18, 'Trip_Dropoff_DateTime': '2009-06-09 16:12:00', 'Trip_Pickup_DateTime': '2009-06-09 16:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760173, 'End_Lon': -73.982402, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759517, 'Start_Lon': -73.98596, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.46, 'Trip_Dropoff_DateTime': '2009-06-09 14:47:00', 'Trip_Pickup_DateTime': '2009-06-09 14:43:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78459, 'End_Lon': -73.958195, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778957, 'Start_Lon': -73.957997, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.55, 'Trip_Dropoff_DateTime': '2009-06-16 17:21:00', 'Trip_Pickup_DateTime': '2009-06-16 17:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760553, 'End_Lon': -73.989815, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763127, 'Start_Lon': -73.973885, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.4, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-12 21:33:00', 'Trip_Pickup_DateTime': '2009-06-12 21:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752047, 'End_Lon': -73.981008, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733333, 'Start_Lon': -73.995348, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.74, 'Trip_Dropoff_DateTime': '2009-06-09 15:20:00', 'Trip_Pickup_DateTime': '2009-06-09 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750473, 'End_Lon': -73.991352, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763407, 'Start_Lon': -73.982202, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.99, 'Trip_Dropoff_DateTime': '2009-06-16 16:58:00', 'Trip_Pickup_DateTime': '2009-06-16 16:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772572, 'End_Lon': -73.960365, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778995, 'Start_Lon': -73.95812, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-12 20:43:00', 'Trip_Pickup_DateTime': '2009-06-12 20:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.806568, 'End_Lon': -73.964323, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.743992, 'Start_Lon': -73.973265, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.1, 'Trip_Distance': 5.95, 'Trip_Dropoff_DateTime': '2009-06-28 10:08:00', 'Trip_Pickup_DateTime': '2009-06-28 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749023, 'End_Lon': -73.982505, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769352, 'Start_Lon': -73.984708, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 11.6, 'Trip_Distance': 1.92, 'Trip_Dropoff_DateTime': '2009-06-01 11:50:00', 'Trip_Pickup_DateTime': '2009-06-01 11:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761437, 'End_Lon': -73.993997, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734632, 'Start_Lon': -73.998665, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 2.41, 'Trip_Dropoff_DateTime': '2009-06-27 20:02:00', 'Trip_Pickup_DateTime': '2009-06-27 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731462, 'End_Lon': -73.986797, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738875, 'Start_Lon': -73.985193, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-09 00:21:00', 'Trip_Pickup_DateTime': '2009-06-09 00:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752228, 'End_Lon': -73.98229, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.765818, 'Start_Lon': -73.961143, 'Tip_Amt': 3.18, 'Tolls_Amt': 0.0, 'Total_Amt': 19.08, 'Trip_Distance': 1.89, 'Trip_Dropoff_DateTime': '2009-06-18 19:32:00', 'Trip_Pickup_DateTime': '2009-06-18 19:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73159, 'End_Lon': -74.001697, 'Fare_Amt': 21.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.779417, 'Start_Lon': -73.961965, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.7, 'Trip_Distance': 4.74, 'Trip_Dropoff_DateTime': '2009-06-18 18:20:00', 'Trip_Pickup_DateTime': '2009-06-18 17:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.801365, 'End_Lon': -73.966517, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.809087, 'Start_Lon': -73.953088, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-18 01:58:00', 'Trip_Pickup_DateTime': '2009-06-18 01:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.741298, 'End_Lon': -73.987652, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.760723, 'Start_Lon': -73.991005, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.94, 'Trip_Dropoff_DateTime': '2009-06-18 08:40:00', 'Trip_Pickup_DateTime': '2009-06-18 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.766763, 'End_Lon': -73.969235, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73928, 'Start_Lon': -73.985968, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.46, 'Trip_Dropoff_DateTime': '2009-06-18 08:44:00', 'Trip_Pickup_DateTime': '2009-06-18 08:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75093, 'End_Lon': -73.99256, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762927, 'Start_Lon': -73.985182, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.41, 'Trip_Dropoff_DateTime': '2009-06-18 08:04:00', 'Trip_Pickup_DateTime': '2009-06-18 07:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754678, 'End_Lon': -73.981357, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778002, 'Start_Lon': -73.948818, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 3.08, 'Trip_Dropoff_DateTime': '2009-06-16 07:08:00', 'Trip_Pickup_DateTime': '2009-06-16 06:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760922, 'End_Lon': -73.980625, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.763972, 'Start_Lon': -73.964858, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.19, 'Trip_Dropoff_DateTime': '2009-06-18 10:07:00', 'Trip_Pickup_DateTime': '2009-06-18 09:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775538, 'End_Lon': -73.960798, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.778847, 'Start_Lon': -73.977775, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.33, 'Trip_Dropoff_DateTime': '2009-06-16 21:55:00', 'Trip_Pickup_DateTime': '2009-06-16 21:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.702537, 'End_Lon': -74.012678, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.718157, 'Start_Lon': -74.01452, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-18 08:28:00', 'Trip_Pickup_DateTime': '2009-06-18 08:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743845, 'End_Lon': -73.985923, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73231, 'Start_Lon': -73.984772, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.1, 'Trip_Dropoff_DateTime': '2009-06-16 19:28:00', 'Trip_Pickup_DateTime': '2009-06-16 19:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763832, 'End_Lon': -73.96489, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759145, 'Start_Lon': -73.968658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.38, 'Trip_Dropoff_DateTime': '2009-06-18 07:56:00', 'Trip_Pickup_DateTime': '2009-06-18 07:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.728957, 'End_Lon': -74.011183, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756608, 'Start_Lon': -73.976143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-15 20:30:00', 'Trip_Pickup_DateTime': '2009-06-15 20:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.796433, 'End_Lon': -73.972337, 'Fare_Amt': 8.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766787, 'Start_Lon': -73.967505, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.97, 'Trip_Dropoff_DateTime': '2009-06-17 23:45:00', 'Trip_Pickup_DateTime': '2009-06-17 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.772208, 'End_Lon': -73.928768, 'Fare_Amt': 17.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.771292, 'Start_Lon': -73.990648, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 5.16, 'Trip_Dropoff_DateTime': '2009-06-17 23:33:00', 'Trip_Pickup_DateTime': '2009-06-17 23:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72735, 'End_Lon': -73.990322, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.766287, 'Start_Lon': -73.982073, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.64, 'Trip_Dropoff_DateTime': '2009-06-16 21:30:00', 'Trip_Pickup_DateTime': '2009-06-16 21:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.70502, 'End_Lon': -74.009687, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.714313, 'Start_Lon': -74.008275, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.41, 'Trip_Dropoff_DateTime': '2009-06-18 01:52:00', 'Trip_Pickup_DateTime': '2009-06-18 01:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.7749, 'End_Lon': -73.950393, 'Fare_Amt': 9.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.738733, 'Start_Lon': -73.983375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.41, 'Trip_Dropoff_DateTime': '2009-06-19 01:04:00', 'Trip_Pickup_DateTime': '2009-06-19 00:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779015, 'End_Lon': -73.95794, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762433, 'Start_Lon': -73.972257, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.46, 'Trip_Dropoff_DateTime': '2009-06-15 19:39:00', 'Trip_Pickup_DateTime': '2009-06-15 19:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.745148, 'End_Lon': -73.994231, 'Fare_Amt': 14.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.704947, 'Start_Lon': -74.007922, 'Tip_Amt': 2.17, 'Tolls_Amt': 0.0, 'Total_Amt': 16.67, 'Trip_Distance': 4.9, 'Trip_Dropoff_DateTime': '2009-06-12 07:49:30', 'Trip_Pickup_DateTime': '2009-06-12 07:32:41', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.67754, 'End_Lon': -74.00061, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715357, 'Start_Lon': -74.004663, 'Tip_Amt': 2.2, 'Tolls_Amt': 4.15, 'Total_Amt': 17.35, 'Trip_Distance': 3.69, 'Trip_Dropoff_DateTime': '2009-06-17 23:46:00', 'Trip_Pickup_DateTime': '2009-06-17 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775588, 'End_Lon': -73.956347, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756457, 'Start_Lon': -73.970262, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.55, 'Trip_Dropoff_DateTime': '2009-06-17 22:24:00', 'Trip_Pickup_DateTime': '2009-06-17 22:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.8028, 'End_Lon': -73.956945, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.80784, 'Start_Lon': -73.964692, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-17 21:49:00', 'Trip_Pickup_DateTime': '2009-06-17 21:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763065, 'End_Lon': -73.928807, 'Fare_Amt': 17.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.79159, 'Start_Lon': -73.974278, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.2, 'Trip_Distance': 6.16, 'Trip_Dropoff_DateTime': '2009-06-18 22:57:00', 'Trip_Pickup_DateTime': '2009-06-18 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.735868, 'End_Lon': -74.005733, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758833, 'Start_Lon': -73.97687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-21 19:07:00', 'Trip_Pickup_DateTime': '2009-06-21 18:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.788295, 'End_Lon': -73.981052, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774075, 'Start_Lon': -73.984932, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 22:09:00', 'Trip_Pickup_DateTime': '2009-06-17 22:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779132, 'End_Lon': -73.981563, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754835, 'Start_Lon': -73.986048, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.0, 'Trip_Distance': 2.17, 'Trip_Dropoff_DateTime': '2009-06-09 21:40:00', 'Trip_Pickup_DateTime': '2009-06-09 21:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.714475, 'End_Lon': -74.010533, 'Fare_Amt': 5.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.725037, 'Start_Lon': -74.007682, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.12, 'Trip_Dropoff_DateTime': '2009-06-17 23:37:00', 'Trip_Pickup_DateTime': '2009-06-17 23:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.77855, 'End_Lon': -73.953818, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.76906, 'Start_Lon': -73.967768, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 18:43:00', 'Trip_Pickup_DateTime': '2009-06-17 18:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752745, 'End_Lon': -73.981178, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765678, 'Start_Lon': -73.98565, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.35, 'Trip_Dropoff_DateTime': '2009-06-17 16:06:00', 'Trip_Pickup_DateTime': '2009-06-17 15:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.786493, 'End_Lon': -73.953233, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769977, 'Start_Lon': -73.966805, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.8, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-17 23:42:00', 'Trip_Pickup_DateTime': '2009-06-17 23:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752968, 'End_Lon': -73.988828, 'Fare_Amt': 36.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.769607, 'Start_Lon': -73.862527, 'Tip_Amt': 7.3, 'Tolls_Amt': 0.0, 'Total_Amt': 43.8, 'Trip_Distance': 10.88, 'Trip_Dropoff_DateTime': '2009-06-10 10:44:00', 'Trip_Pickup_DateTime': '2009-06-10 09:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783128, 'End_Lon': -73.97439, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.764357, 'Start_Lon': -73.955447, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 2.24, 'Trip_Dropoff_DateTime': '2009-06-18 01:03:00', 'Trip_Pickup_DateTime': '2009-06-18 00:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.764223, 'End_Lon': -73.979005, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750775, 'Start_Lon': -73.991082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.57, 'Trip_Dropoff_DateTime': '2009-06-21 15:30:00', 'Trip_Pickup_DateTime': '2009-06-21 15:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760722, 'End_Lon': -73.990115, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773343, 'Start_Lon': -73.981903, 'Tip_Amt': 0.5, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-21 19:09:00', 'Trip_Pickup_DateTime': '2009-06-21 19:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.679617, 'End_Lon': -73.961122, 'Fare_Amt': 14.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.721555, 'Start_Lon': -73.999, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 4.77, 'Trip_Dropoff_DateTime': '2009-06-18 00:51:00', 'Trip_Pickup_DateTime': '2009-06-18 00:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.721465, 'End_Lon': -73.994765, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.732397, 'Start_Lon': -74.003445, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-17 20:44:00', 'Trip_Pickup_DateTime': '2009-06-17 20:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.789645, 'End_Lon': -73.950142, 'Fare_Amt': 11.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756557, 'Start_Lon': -73.987143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-18 00:41:00', 'Trip_Pickup_DateTime': '2009-06-18 00:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.614565, 'End_Lon': -74.033752, 'Fare_Amt': 22.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.715408, 'Start_Lon': -74.001925, 'Tip_Amt': 4.7, 'Tolls_Amt': 0.0, 'Total_Amt': 28.2, 'Trip_Distance': 9.23, 'Trip_Dropoff_DateTime': '2009-06-15 20:09:00', 'Trip_Pickup_DateTime': '2009-06-15 19:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75018, 'End_Lon': -73.994913, 'Fare_Amt': 4.5, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744443, 'Start_Lon': -73.987612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-13 18:04:00', 'Trip_Pickup_DateTime': '2009-06-13 17:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743612, 'End_Lon': -73.921487, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748292, 'Start_Lon': -73.91678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-17 23:46:00', 'Trip_Pickup_DateTime': '2009-06-17 23:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75617, 'End_Lon': -73.990385, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740178, 'Start_Lon': -73.990398, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-17 20:00:00', 'Trip_Pickup_DateTime': '2009-06-17 19:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.849637, 'End_Lon': -73.87493, 'Fare_Amt': 16.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.837283, 'Start_Lon': -73.882947, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.9, 'Trip_Distance': 5.87, 'Trip_Dropoff_DateTime': '2009-06-10 10:46:00', 'Trip_Pickup_DateTime': '2009-06-10 10:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.725085, 'End_Lon': -74.00251, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772485, 'Start_Lon': -73.953378, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 18.3, 'Trip_Distance': 6.07, 'Trip_Dropoff_DateTime': '2009-06-17 19:53:00', 'Trip_Pickup_DateTime': '2009-06-17 19:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778895, 'End_Lon': -73.953858, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752007, 'Start_Lon': -73.973395, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-17 19:35:00', 'Trip_Pickup_DateTime': '2009-06-17 19:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.720048, 'End_Lon': -74.010165, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764917, 'Start_Lon': -73.980363, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 3.61, 'Trip_Dropoff_DateTime': '2009-06-17 17:28:00', 'Trip_Pickup_DateTime': '2009-06-17 17:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741678, 'End_Lon': -73.989803, 'Fare_Amt': 4.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733855, 'Start_Lon': -73.980683, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.91, 'Trip_Dropoff_DateTime': '2009-06-17 19:10:00', 'Trip_Pickup_DateTime': '2009-06-17 19:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762552, 'End_Lon': -73.983983, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761508, 'Start_Lon': -74.000125, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.23, 'Trip_Dropoff_DateTime': '2009-06-17 20:31:00', 'Trip_Pickup_DateTime': '2009-06-17 20:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.771637, 'End_Lon': -73.964888, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77025, 'Start_Lon': -73.955685, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.61, 'Trip_Dropoff_DateTime': '2009-06-17 18:26:00', 'Trip_Pickup_DateTime': '2009-06-17 18:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715887, 'End_Lon': -74.00408, 'Fare_Amt': 4.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.727607, 'Start_Lon': -74.007263, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 6.0, 'Trip_Distance': 1.06, 'Trip_Dropoff_DateTime': '2009-06-21 18:59:00', 'Trip_Pickup_DateTime': '2009-06-21 18:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.827592, 'End_Lon': -73.94912, 'Fare_Amt': 11.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77394, 'Start_Lon': -73.982018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.2, 'Trip_Distance': 4.23, 'Trip_Dropoff_DateTime': '2009-06-19 00:40:00', 'Trip_Pickup_DateTime': '2009-06-19 00:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.75156, 'End_Lon': -73.98007, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740427, 'Start_Lon': -74.005755, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-12 10:57:00', 'Trip_Pickup_DateTime': '2009-06-12 10:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.800615, 'End_Lon': -73.968238, 'Fare_Amt': 12.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755867, 'Start_Lon': -73.983072, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.5, 'Trip_Distance': 3.63, 'Trip_Dropoff_DateTime': '2009-06-17 19:06:00', 'Trip_Pickup_DateTime': '2009-06-17 18:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.775767, 'End_Lon': -73.95062, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730945, 'Start_Lon': -73.981748, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 3.52, 'Trip_Dropoff_DateTime': '2009-06-14 00:07:00', 'Trip_Pickup_DateTime': '2009-06-13 23:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.781138, 'End_Lon': -73.959655, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.817782, 'Start_Lon': -73.9603, 'Tip_Amt': 1.1, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 3.35, 'Trip_Dropoff_DateTime': '2009-06-17 18:53:00', 'Trip_Pickup_DateTime': '2009-06-17 18:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754417, 'End_Lon': -73.975207, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766565, 'Start_Lon': -73.969183, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-17 15:56:00', 'Trip_Pickup_DateTime': '2009-06-17 15:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74569, 'End_Lon': -73.994683, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.739843, 'Start_Lon': -73.998827, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-13 16:20:00', 'Trip_Pickup_DateTime': '2009-06-13 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734262, 'End_Lon': -73.994878, 'Fare_Amt': 12.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772673, 'Start_Lon': -73.966973, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 3.0, 'Trip_Dropoff_DateTime': '2009-06-17 19:46:00', 'Trip_Pickup_DateTime': '2009-06-17 19:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757842, 'End_Lon': -73.96965, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750155, 'Start_Lon': -73.991427, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-17 17:22:00', 'Trip_Pickup_DateTime': '2009-06-17 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.769993, 'End_Lon': -73.961057, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.784282, 'Start_Lon': -73.982945, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.0, 'Trip_Dropoff_DateTime': '2009-06-17 17:18:00', 'Trip_Pickup_DateTime': '2009-06-17 17:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.715907, 'End_Lon': -73.986643, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.739905, 'Start_Lon': -73.989998, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.4, 'Trip_Distance': 2.5, 'Trip_Dropoff_DateTime': '2009-06-18 23:01:00', 'Trip_Pickup_DateTime': '2009-06-18 22:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.761543, 'End_Lon': -73.988225, 'Fare_Amt': 5.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.757057, 'Start_Lon': -74.001172, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.21, 'Trip_Dropoff_DateTime': '2009-06-17 14:59:00', 'Trip_Pickup_DateTime': '2009-06-17 14:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755603, 'End_Lon': -73.981292, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751688, 'Start_Lon': -73.982372, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.83, 'Trip_Dropoff_DateTime': '2009-06-17 13:33:00', 'Trip_Pickup_DateTime': '2009-06-17 13:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771168, 'End_Lon': -73.959863, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767413, 'Start_Lon': -73.96664, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.7, 'Trip_Distance': 0.59, 'Trip_Dropoff_DateTime': '2009-06-17 15:21:00', 'Trip_Pickup_DateTime': '2009-06-17 15:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774887, 'End_Lon': -73.961012, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765945, 'Start_Lon': -73.969422, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-10 10:50:00', 'Trip_Pickup_DateTime': '2009-06-10 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76174, 'End_Lon': -73.920115, 'Fare_Amt': 10.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.774063, 'Start_Lon': -73.874438, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.53, 'Trip_Dropoff_DateTime': '2009-06-19 00:11:00', 'Trip_Pickup_DateTime': '2009-06-19 00:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76671, 'End_Lon': -73.957453, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751242, 'Start_Lon': -73.994062, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.02, 'Trip_Dropoff_DateTime': '2009-06-10 10:35:00', 'Trip_Pickup_DateTime': '2009-06-10 10:14:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777698, 'End_Lon': -73.981908, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750852, 'Start_Lon': -74.005647, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.9, 'Trip_Distance': 2.67, 'Trip_Dropoff_DateTime': '2009-06-09 18:45:00', 'Trip_Pickup_DateTime': '2009-06-09 18:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.793635, 'End_Lon': -73.97245, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760612, 'Start_Lon': -73.980033, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.1, 'Trip_Distance': 2.62, 'Trip_Dropoff_DateTime': '2009-06-17 18:19:00', 'Trip_Pickup_DateTime': '2009-06-17 18:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764143, 'End_Lon': -73.955487, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.75608, 'Start_Lon': -73.990032, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.3, 'Trip_Distance': 2.75, 'Trip_Dropoff_DateTime': '2009-06-10 10:13:00', 'Trip_Pickup_DateTime': '2009-06-10 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.731188, 'End_Lon': -73.991613, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.743763, 'Start_Lon': -73.994853, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.48, 'Trip_Dropoff_DateTime': '2009-06-17 14:39:00', 'Trip_Pickup_DateTime': '2009-06-17 14:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.747978, 'End_Lon': -73.982392, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760432, 'Start_Lon': -73.964352, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.64, 'Trip_Dropoff_DateTime': '2009-06-13 16:34:00', 'Trip_Pickup_DateTime': '2009-06-13 16:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756303, 'End_Lon': -73.983462, 'Fare_Amt': 10.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770727, 'Start_Lon': -73.991147, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 1.47, 'Trip_Dropoff_DateTime': '2009-06-10 10:16:00', 'Trip_Pickup_DateTime': '2009-06-10 09:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773547, 'End_Lon': -73.959555, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.778502, 'Start_Lon': -73.953177, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-10 09:26:00', 'Trip_Pickup_DateTime': '2009-06-10 09:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.708852, 'End_Lon': -74.004487, 'Fare_Amt': 32.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.773888, 'Start_Lon': -73.87422, 'Tip_Amt': 6.52, 'Tolls_Amt': 4.15, 'Total_Amt': 43.27, 'Trip_Distance': 14.4, 'Trip_Dropoff_DateTime': '2009-06-19 00:14:00', 'Trip_Pickup_DateTime': '2009-06-18 23:46:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.779343, 'End_Lon': -73.988088, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763593, 'Start_Lon': -73.982392, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.0, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-19 00:04:00', 'Trip_Pickup_DateTime': '2009-06-18 23:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.681427, 'End_Lon': -73.96114, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.686578, 'Start_Lon': -73.990627, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 2.12, 'Trip_Dropoff_DateTime': '2009-06-19 00:10:00', 'Trip_Pickup_DateTime': '2009-06-19 00:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783557, 'End_Lon': -73.952967, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764748, 'Start_Lon': -73.969597, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-10 10:15:00', 'Trip_Pickup_DateTime': '2009-06-10 10:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757102, 'End_Lon': -73.97991, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.786567, 'Start_Lon': -73.972002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.9, 'Trip_Dropoff_DateTime': '2009-06-12 06:02:00', 'Trip_Pickup_DateTime': '2009-06-12 05:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.775487, 'End_Lon': -73.954117, 'Fare_Amt': 8.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.758877, 'Start_Lon': -73.97686, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-16 20:22:00', 'Trip_Pickup_DateTime': '2009-06-16 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71276, 'End_Lon': -73.94767, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.750845, 'Start_Lon': -73.976117, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.6, 'Trip_Distance': 5.25, 'Trip_Dropoff_DateTime': '2009-06-28 01:58:00', 'Trip_Pickup_DateTime': '2009-06-28 01:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.769572, 'End_Lon': -73.980968, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.763611, 'Start_Lon': -73.973581, 'Tip_Amt': 0.94, 'Tolls_Amt': 0.0, 'Total_Amt': 6.24, 'Trip_Distance': 0.7, 'Trip_Dropoff_DateTime': '2009-06-30 18:08:34', 'Trip_Pickup_DateTime': '2009-06-30 18:02:16', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.659937, 'End_Lon': -73.988015, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720112, 'Start_Lon': -74.00324, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.4, 'Trip_Distance': 4.99, 'Trip_Dropoff_DateTime': '2009-06-20 04:40:00', 'Trip_Pickup_DateTime': '2009-06-20 04:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.697593, 'End_Lon': -73.928583, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.725602, 'Start_Lon': -73.989822, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.8, 'Trip_Distance': 4.26, 'Trip_Dropoff_DateTime': '2009-06-12 05:45:00', 'Trip_Pickup_DateTime': '2009-06-12 05:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.783197, 'End_Lon': -73.974283, 'Fare_Amt': 12.5, 'Passenger_Count': 6, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740232, 'Start_Lon': -73.982302, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.0, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-13 16:08:00', 'Trip_Pickup_DateTime': '2009-06-13 15:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743262, 'End_Lon': -73.978188, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734697, 'Start_Lon': -73.989913, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.3, 'Trip_Distance': 1.84, 'Trip_Dropoff_DateTime': '2009-06-08 19:43:00', 'Trip_Pickup_DateTime': '2009-06-08 19:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.767337, 'End_Lon': -73.954718, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.779285, 'Start_Lon': -73.959918, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 10.2, 'Trip_Distance': 1.29, 'Trip_Dropoff_DateTime': '2009-06-10 11:05:00', 'Trip_Pickup_DateTime': '2009-06-10 10:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758362, 'End_Lon': -73.992428, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.751237, 'Start_Lon': -73.982437, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.9, 'Trip_Distance': 0.98, 'Trip_Dropoff_DateTime': '2009-06-13 18:17:00', 'Trip_Pickup_DateTime': '2009-06-13 18:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757695, 'End_Lon': -73.972775, 'Fare_Amt': 45.0, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.643617, 'Start_Lon': -73.789988, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 54.15, 'Trip_Distance': 18.16, 'Trip_Dropoff_DateTime': '2009-06-13 15:50:00', 'Trip_Pickup_DateTime': '2009-06-13 15:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.792507, 'End_Lon': -73.971578, 'Fare_Amt': 4.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.805262, 'Start_Lon': -73.966117, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-10 11:01:00', 'Trip_Pickup_DateTime': '2009-06-10 10:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.855037, 'End_Lon': -73.931167, 'Fare_Amt': 21.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76102, 'Start_Lon': -73.991135, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 22.2, 'Trip_Distance': 8.32, 'Trip_Dropoff_DateTime': '2009-06-18 22:45:00', 'Trip_Pickup_DateTime': '2009-06-18 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.74991, 'End_Lon': -73.96728, 'Fare_Amt': 13.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788035, 'Start_Lon': -73.978815, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.2, 'Trip_Distance': 4.12, 'Trip_Dropoff_DateTime': '2009-06-18 22:36:00', 'Trip_Pickup_DateTime': '2009-06-18 22:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.76369, 'End_Lon': -73.978713, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756228, 'Start_Lon': -73.964797, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 7.6, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-10 07:56:00', 'Trip_Pickup_DateTime': '2009-06-10 07:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.752457, 'End_Lon': -73.993867, 'Fare_Amt': 9.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.762767, 'Start_Lon': -73.979515, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 1.38, 'Trip_Dropoff_DateTime': '2009-06-13 14:05:00', 'Trip_Pickup_DateTime': '2009-06-13 13:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739895, 'End_Lon': -73.982263, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.734453, 'Start_Lon': -74.008512, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.88, 'Trip_Dropoff_DateTime': '2009-06-18 22:47:00', 'Trip_Pickup_DateTime': '2009-06-18 22:36:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.744432, 'End_Lon': -73.975097, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748303, 'Start_Lon': -73.984507, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.56, 'Trip_Dropoff_DateTime': '2009-06-13 00:04:00', 'Trip_Pickup_DateTime': '2009-06-12 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.69359, 'End_Lon': -73.987317, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.68868, 'Start_Lon': -73.980673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-10 09:01:00', 'Trip_Pickup_DateTime': '2009-06-10 08:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721833, 'End_Lon': -73.98477, 'Fare_Amt': 11.7, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.762528, 'Start_Lon': -73.96572, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 4.37, 'Trip_Dropoff_DateTime': '2009-06-10 08:52:00', 'Trip_Pickup_DateTime': '2009-06-10 08:42:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7599, 'End_Lon': -73.97178, 'Fare_Amt': 13.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.723305, 'Start_Lon': -73.988568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.11, 'Trip_Dropoff_DateTime': '2009-06-13 15:42:00', 'Trip_Pickup_DateTime': '2009-06-13 15:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.778968, 'End_Lon': -73.956438, 'Fare_Amt': 8.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.785482, 'Start_Lon': -73.980132, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.9, 'Trip_Distance': 1.8, 'Trip_Dropoff_DateTime': '2009-06-10 08:34:00', 'Trip_Pickup_DateTime': '2009-06-10 08:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758177, 'End_Lon': -73.978627, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730587, 'Start_Lon': -73.989027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 2.4, 'Trip_Dropoff_DateTime': '2009-06-10 07:11:00', 'Trip_Pickup_DateTime': '2009-06-10 07:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.75957, 'End_Lon': -73.972687, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.733352, 'Start_Lon': -73.9871, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.3, 'Trip_Distance': 2.15, 'Trip_Dropoff_DateTime': '2009-06-10 06:26:00', 'Trip_Pickup_DateTime': '2009-06-10 06:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742583, 'End_Lon': -73.991145, 'Fare_Amt': 16.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747413, 'Start_Lon': -73.989612, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.6, 'Trip_Distance': 5.83, 'Trip_Dropoff_DateTime': '2009-06-17 01:05:00', 'Trip_Pickup_DateTime': '2009-06-17 00:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.731485, 'End_Lon': -74.004857, 'Fare_Amt': 4.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72118, 'Start_Lon': -74.00515, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.77, 'Trip_Dropoff_DateTime': '2009-06-16 20:39:00', 'Trip_Pickup_DateTime': '2009-06-16 20:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.782288, 'End_Lon': -73.954198, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.787637, 'Start_Lon': -73.967648, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.7, 'Trip_Distance': 1.56, 'Trip_Dropoff_DateTime': '2009-06-18 17:45:00', 'Trip_Pickup_DateTime': '2009-06-18 17:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730148, 'End_Lon': -74.000415, 'Fare_Amt': 7.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740498, 'Start_Lon': -73.979002, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 1.85, 'Trip_Dropoff_DateTime': '2009-06-18 20:35:00', 'Trip_Pickup_DateTime': '2009-06-18 20:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.684042, 'End_Lon': -73.966008, 'Fare_Amt': 12.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72151, 'Start_Lon': -74.004988, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.6, 'Trip_Distance': 3.78, 'Trip_Dropoff_DateTime': '2009-06-18 21:00:00', 'Trip_Pickup_DateTime': '2009-06-18 20:44:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.791853, 'End_Lon': -73.973738, 'Fare_Amt': 8.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767338, 'Start_Lon': -73.964417, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.6, 'Trip_Distance': 2.57, 'Trip_Dropoff_DateTime': '2009-06-18 21:01:00', 'Trip_Pickup_DateTime': '2009-06-18 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.576887, 'End_Lon': -73.953385, 'Fare_Amt': 32.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.707928, 'Start_Lon': -74.01164, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.55, 'Trip_Distance': 14.71, 'Trip_Dropoff_DateTime': '2009-06-18 20:37:00', 'Trip_Pickup_DateTime': '2009-06-18 20:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.777248, 'End_Lon': -73.964077, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752168, 'Start_Lon': -73.976673, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 2.01, 'Trip_Dropoff_DateTime': '2009-06-16 15:18:00', 'Trip_Pickup_DateTime': '2009-06-16 15:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762037, 'End_Lon': -73.986052, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758608, 'Start_Lon': -74.000042, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-16 16:27:00', 'Trip_Pickup_DateTime': '2009-06-16 16:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761777, 'End_Lon': -73.966198, 'Fare_Amt': 7.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.760625, 'Start_Lon': -73.979772, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.8, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-21 20:10:00', 'Trip_Pickup_DateTime': '2009-06-21 20:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.799938, 'End_Lon': -73.968003, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790398, 'Start_Lon': -73.947637, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.1, 'Trip_Distance': 1.91, 'Trip_Dropoff_DateTime': '2009-06-16 17:14:00', 'Trip_Pickup_DateTime': '2009-06-16 17:04:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.781507, 'End_Lon': -73.981043, 'Fare_Amt': 5.3, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767962, 'Start_Lon': -73.982452, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.04, 'Trip_Dropoff_DateTime': '2009-06-16 13:05:00', 'Trip_Pickup_DateTime': '2009-06-16 12:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759535, 'End_Lon': -73.98544, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776643, 'Start_Lon': -73.976238, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.9, 'Trip_Distance': 1.65, 'Trip_Dropoff_DateTime': '2009-06-16 16:56:00', 'Trip_Pickup_DateTime': '2009-06-16 16:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742687, 'End_Lon': -73.974217, 'Fare_Amt': 6.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73264, 'Start_Lon': -73.991243, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.5, 'Trip_Distance': 1.6, 'Trip_Dropoff_DateTime': '2009-06-18 17:39:00', 'Trip_Pickup_DateTime': '2009-06-18 17:32:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756443, 'End_Lon': -73.962482, 'Fare_Amt': 9.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.73518, 'Start_Lon': -73.989893, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.7, 'Trip_Distance': 2.65, 'Trip_Dropoff_DateTime': '2009-06-18 17:26:00', 'Trip_Pickup_DateTime': '2009-06-18 17:12:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77884, 'End_Lon': -73.95809, 'Fare_Amt': 4.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76916, 'Start_Lon': -73.961187, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.5, 'Trip_Distance': 0.86, 'Trip_Dropoff_DateTime': '2009-06-16 16:21:00', 'Trip_Pickup_DateTime': '2009-06-16 16:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.743618, 'End_Lon': -73.979562, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727993, 'Start_Lon': -74.003058, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 2.18, 'Trip_Dropoff_DateTime': '2009-06-18 18:42:00', 'Trip_Pickup_DateTime': '2009-06-18 18:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760747, 'End_Lon': -73.978715, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.707495, 'Start_Lon': -74.004402, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.3, 'Trip_Distance': 5.81, 'Trip_Dropoff_DateTime': '2009-06-16 16:26:00', 'Trip_Pickup_DateTime': '2009-06-16 16:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702898, 'End_Lon': -74.011017, 'Fare_Amt': 17.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755595, 'Start_Lon': -73.97414, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.7, 'Trip_Distance': 5.72, 'Trip_Dropoff_DateTime': '2009-06-16 11:43:00', 'Trip_Pickup_DateTime': '2009-06-16 11:21:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761482, 'End_Lon': -73.97319, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753102, 'Start_Lon': -73.979165, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-16 14:04:00', 'Trip_Pickup_DateTime': '2009-06-16 14:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.787615, 'End_Lon': -73.9513, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780568, 'Start_Lon': -73.952797, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.66, 'Trip_Dropoff_DateTime': '2009-06-21 20:12:00', 'Trip_Pickup_DateTime': '2009-06-21 20:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.719993, 'End_Lon': -73.987482, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.73282, 'Start_Lon': -73.995687, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-18 15:36:00', 'Trip_Pickup_DateTime': '2009-06-18 15:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.806315, 'End_Lon': -73.92925, 'Fare_Amt': 3.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.807068, 'Start_Lon': -73.93162, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 3.3, 'Trip_Distance': 0.44, 'Trip_Dropoff_DateTime': '2009-06-16 15:24:00', 'Trip_Pickup_DateTime': '2009-06-16 15:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774393, 'End_Lon': -73.87314, 'Fare_Amt': 26.5, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749678, 'Start_Lon': -73.991378, 'Tip_Amt': 5.55, 'Tolls_Amt': 4.15, 'Total_Amt': 36.2, 'Trip_Distance': 9.92, 'Trip_Dropoff_DateTime': '2009-06-18 15:33:00', 'Trip_Pickup_DateTime': '2009-06-18 14:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.78035, 'End_Lon': -73.953027, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.78599, 'Start_Lon': -73.950815, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.5, 'Trip_Dropoff_DateTime': '2009-06-18 17:31:00', 'Trip_Pickup_DateTime': '2009-06-18 17:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.707912, 'End_Lon': -74.014263, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.74171, 'Start_Lon': -74.001208, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.9, 'Trip_Distance': 3.07, 'Trip_Dropoff_DateTime': '2009-06-21 19:54:00', 'Trip_Pickup_DateTime': '2009-06-21 19:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.730242, 'End_Lon': -73.993533, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74818, 'Start_Lon': -73.973595, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-18 14:07:00', 'Trip_Pickup_DateTime': '2009-06-18 13:57:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.753695, 'End_Lon': -73.972305, 'Fare_Amt': 8.5, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764022, 'Start_Lon': -73.995917, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.5, 'Trip_Distance': 1.54, 'Trip_Dropoff_DateTime': '2009-06-18 17:17:00', 'Trip_Pickup_DateTime': '2009-06-18 17:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763602, 'End_Lon': -73.94343, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758697, 'Start_Lon': -73.94251, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-18 15:17:00', 'Trip_Pickup_DateTime': '2009-06-18 15:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755342, 'End_Lon': -73.981352, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748908, 'Start_Lon': -74.005017, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.82, 'Trip_Dropoff_DateTime': '2009-06-16 12:32:00', 'Trip_Pickup_DateTime': '2009-06-16 12:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774483, 'End_Lon': -73.977317, 'Fare_Amt': 5.3, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76987, 'Start_Lon': -73.987977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.3, 'Trip_Distance': 0.96, 'Trip_Dropoff_DateTime': '2009-06-18 18:31:00', 'Trip_Pickup_DateTime': '2009-06-18 18:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761848, 'End_Lon': -73.98515, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.722585, 'Start_Lon': -74.001582, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.28, 'Trip_Dropoff_DateTime': '2009-06-16 13:48:00', 'Trip_Pickup_DateTime': '2009-06-16 13:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.739035, 'End_Lon': -73.982945, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774603, 'Start_Lon': -73.954213, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 15.0, 'Trip_Distance': 3.86, 'Trip_Dropoff_DateTime': '2009-06-18 14:43:00', 'Trip_Pickup_DateTime': '2009-06-18 14:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.757127, 'End_Lon': -73.96964, 'Fare_Amt': 3.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754868, 'Start_Lon': -73.974003, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.7, 'Trip_Distance': 0.32, 'Trip_Dropoff_DateTime': '2009-06-18 18:33:00', 'Trip_Pickup_DateTime': '2009-06-18 18:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.738982, 'End_Lon': -73.994675, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.745867, 'Start_Lon': -73.982398, 'Tip_Amt': 1.25, 'Tolls_Amt': 0.0, 'Total_Amt': 6.15, 'Trip_Distance': 1.09, 'Trip_Dropoff_DateTime': '2009-06-16 12:36:00', 'Trip_Pickup_DateTime': '2009-06-16 12:31:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.729623, 'End_Lon': -73.986883, 'Fare_Amt': 28.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.770735, 'Start_Lon': -73.864647, 'Tip_Amt': 5.0, 'Tolls_Amt': 4.15, 'Total_Amt': 37.65, 'Trip_Distance': 12.57, 'Trip_Dropoff_DateTime': '2009-06-16 11:12:00', 'Trip_Pickup_DateTime': '2009-06-16 10:45:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.736812, 'End_Lon': -73.988867, 'Fare_Amt': 8.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.750443, 'Start_Lon': -73.987977, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-18 15:22:00', 'Trip_Pickup_DateTime': '2009-06-18 15:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 0.0, 'End_Lon': 0.0, 'Fare_Amt': 4.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 0.0, 'Start_Lon': 0.0, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.6, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-16 23:11:00', 'Trip_Pickup_DateTime': '2009-06-16 23:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.752407, 'End_Lon': -73.972295, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773432, 'Start_Lon': -73.956725, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 1.99, 'Trip_Dropoff_DateTime': '2009-06-19 06:22:00', 'Trip_Pickup_DateTime': '2009-06-19 06:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723707, 'End_Lon': -73.996392, 'Fare_Amt': 13.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770428, 'Start_Lon': -73.968543, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.3, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-16 10:27:00', 'Trip_Pickup_DateTime': '2009-06-16 10:08:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741883, 'End_Lon': -74.000353, 'Fare_Amt': 7.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.744178, 'Start_Lon': -74.013343, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.2, 'Trip_Distance': 2.6, 'Trip_Dropoff_DateTime': '2009-06-15 21:47:00', 'Trip_Pickup_DateTime': '2009-06-15 21:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.754443, 'End_Lon': -73.983725, 'Fare_Amt': 17.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.804413, 'Start_Lon': -73.96663, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 17.3, 'Trip_Distance': 5.15, 'Trip_Dropoff_DateTime': '2009-06-16 10:27:00', 'Trip_Pickup_DateTime': '2009-06-16 10:03:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756087, 'End_Lon': -74.001593, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.751443, 'Start_Lon': -73.991795, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 0.64, 'Trip_Dropoff_DateTime': '2009-06-16 09:50:00', 'Trip_Pickup_DateTime': '2009-06-16 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783897, 'End_Lon': -73.951357, 'Fare_Amt': 8.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.776385, 'Start_Lon': -73.964453, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 1.31, 'Trip_Dropoff_DateTime': '2009-06-18 13:47:00', 'Trip_Pickup_DateTime': '2009-06-18 13:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749102, 'End_Lon': -74.00318, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.7638, 'Start_Lon': -73.975785, 'Tip_Amt': 1.9, 'Tolls_Amt': 0.0, 'Total_Amt': 12.0, 'Trip_Distance': 2.37, 'Trip_Dropoff_DateTime': '2009-06-16 09:12:00', 'Trip_Pickup_DateTime': '2009-06-16 08:56:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71397, 'End_Lon': -74.00445, 'Fare_Amt': 21.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.775018, 'Start_Lon': -73.956732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 21.7, 'Trip_Distance': 7.15, 'Trip_Dropoff_DateTime': '2009-06-16 09:45:00', 'Trip_Pickup_DateTime': '2009-06-16 09:16:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.709185, 'End_Lon': -74.015998, 'Fare_Amt': 6.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.72382, 'Start_Lon': -74.011228, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.6, 'Trip_Distance': 1.5, 'Trip_Dropoff_DateTime': '2009-06-16 23:05:00', 'Trip_Pickup_DateTime': '2009-06-16 22:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.780977, 'End_Lon': -73.97407, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.749672, 'Start_Lon': -73.993572, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.3, 'Trip_Distance': 2.71, 'Trip_Dropoff_DateTime': '2009-06-16 11:11:00', 'Trip_Pickup_DateTime': '2009-06-16 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761177, 'End_Lon': -73.967137, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.770508, 'Start_Lon': -73.962082, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.81, 'Trip_Dropoff_DateTime': '2009-06-16 10:26:00', 'Trip_Pickup_DateTime': '2009-06-16 10:19:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.734438, 'End_Lon': -73.983287, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755362, 'Start_Lon': -73.968385, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-18 14:22:00', 'Trip_Pickup_DateTime': '2009-06-18 14:10:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.761565, 'End_Lon': -73.974907, 'Fare_Amt': 28.1, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.774095, 'Start_Lon': -73.874452, 'Tip_Amt': 6.0, 'Tolls_Amt': 4.15, 'Total_Amt': 38.25, 'Trip_Distance': 10.32, 'Trip_Dropoff_DateTime': '2009-06-18 14:39:00', 'Trip_Pickup_DateTime': '2009-06-18 13:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73754, 'End_Lon': -73.9742, 'Fare_Amt': 16.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.703783, 'Start_Lon': -74.011538, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.46, 'Trip_Dropoff_DateTime': '2009-06-16 10:06:00', 'Trip_Pickup_DateTime': '2009-06-16 09:47:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760803, 'End_Lon': -74.004557, 'Fare_Amt': 8.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753103, 'Start_Lon': -73.986497, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.34, 'Trip_Dropoff_DateTime': '2009-06-16 08:33:00', 'Trip_Pickup_DateTime': '2009-06-16 08:18:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7567, 'End_Lon': -73.98812, 'Fare_Amt': 12.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.769648, 'Start_Lon': -73.954793, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.9, 'Trip_Distance': 2.77, 'Trip_Dropoff_DateTime': '2009-06-16 19:13:00', 'Trip_Pickup_DateTime': '2009-06-16 18:51:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764037, 'End_Lon': -73.954033, 'Fare_Amt': 13.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7313, 'Start_Lon': -73.994545, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 13.7, 'Trip_Distance': 3.85, 'Trip_Dropoff_DateTime': '2009-06-18 10:56:00', 'Trip_Pickup_DateTime': '2009-06-18 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.76118, 'End_Lon': -73.961743, 'Fare_Amt': 8.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773933, 'Start_Lon': -73.948643, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.1, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-18 13:19:00', 'Trip_Pickup_DateTime': '2009-06-18 13:06:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.760545, 'End_Lon': -73.979942, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.735222, 'Start_Lon': -73.998325, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 2.07, 'Trip_Dropoff_DateTime': '2009-06-19 07:54:00', 'Trip_Pickup_DateTime': '2009-06-19 07:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.721197, 'End_Lon': -73.996357, 'Fare_Amt': 8.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.720855, 'Start_Lon': -73.99678, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-17 00:14:00', 'Trip_Pickup_DateTime': '2009-06-16 23:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.745763, 'End_Lon': -73.972108, 'Fare_Amt': 5.7, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.740578, 'Start_Lon': -73.989313, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.37, 'Trip_Dropoff_DateTime': '2009-06-16 10:39:00', 'Trip_Pickup_DateTime': '2009-06-16 10:33:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.764182, 'End_Lon': -73.971043, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.759622, 'Start_Lon': -73.964868, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 0.62, 'Trip_Dropoff_DateTime': '2009-06-18 14:16:00', 'Trip_Pickup_DateTime': '2009-06-18 14:09:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.773152, 'End_Lon': -73.962292, 'Fare_Amt': 6.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.784192, 'Start_Lon': -73.956328, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-18 14:11:00', 'Trip_Pickup_DateTime': '2009-06-18 14:01:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756093, 'End_Lon': -73.973475, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761997, 'Start_Lon': -73.982047, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 0.8, 'Trip_Dropoff_DateTime': '2009-06-16 08:48:00', 'Trip_Pickup_DateTime': '2009-06-16 08:37:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77448, 'End_Lon': -73.954338, 'Fare_Amt': 45.0, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.641307, 'Start_Lon': -73.7889, 'Tip_Amt': 9.0, 'Tolls_Amt': 0.0, 'Total_Amt': 54.0, 'Trip_Distance': 19.94, 'Trip_Dropoff_DateTime': '2009-06-15 21:56:00', 'Trip_Pickup_DateTime': '2009-06-15 21:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.774585, 'End_Lon': -73.956215, 'Fare_Amt': 10.1, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.74057, 'Start_Lon': -73.993025, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.6, 'Trip_Distance': 3.59, 'Trip_Dropoff_DateTime': '2009-06-15 21:04:00', 'Trip_Pickup_DateTime': '2009-06-15 20:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.712725, 'End_Lon': -74.007933, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755582, 'Start_Lon': -73.979578, 'Tip_Amt': 4.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.7, 'Trip_Distance': 3.9, 'Trip_Dropoff_DateTime': '2009-06-18 12:18:00', 'Trip_Pickup_DateTime': '2009-06-18 12:02:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771623, 'End_Lon': -73.951222, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.772328, 'Start_Lon': -73.962143, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.85, 'Trip_Dropoff_DateTime': '2009-06-16 09:33:00', 'Trip_Pickup_DateTime': '2009-06-16 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.712565, 'End_Lon': -73.997903, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.719075, 'Start_Lon': -73.97561, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.7, 'Trip_Dropoff_DateTime': '2009-06-16 09:35:00', 'Trip_Pickup_DateTime': '2009-06-16 09:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746453, 'End_Lon': -74.004957, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.740818, 'Start_Lon': -73.990653, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.8, 'Trip_Distance': 0.88, 'Trip_Dropoff_DateTime': '2009-06-18 22:41:00', 'Trip_Pickup_DateTime': '2009-06-18 22:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.72013, 'End_Lon': -74.008635, 'Fare_Amt': 14.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.764153, 'Start_Lon': -73.984787, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 14.9, 'Trip_Distance': 4.32, 'Trip_Dropoff_DateTime': '2009-06-18 10:59:00', 'Trip_Pickup_DateTime': '2009-06-18 10:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.71697, 'End_Lon': -74.014132, 'Fare_Amt': 14.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768917, 'Start_Lon': -73.981922, 'Tip_Amt': 3.08, 'Tolls_Amt': 0.0, 'Total_Amt': 18.48, 'Trip_Distance': 4.91, 'Trip_Dropoff_DateTime': '2009-06-16 22:40:00', 'Trip_Pickup_DateTime': '2009-06-16 22:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.774807, 'End_Lon': -73.963182, 'Fare_Amt': 4.9, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76015, 'Start_Lon': -73.974073, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 1.2, 'Trip_Dropoff_DateTime': '2009-06-16 08:43:00', 'Trip_Pickup_DateTime': '2009-06-16 08:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.754073, 'End_Lon': -73.978197, 'Fare_Amt': 7.3, 'Passenger_Count': 1, 'Payment_Type': 'Cash', 'Rate_Code': None, 'Start_Lat': 40.750045, 'Start_Lon': -73.991431, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.3, 'Trip_Distance': 1.4, 'Trip_Dropoff_DateTime': '2009-06-30 08:26:39', 'Trip_Pickup_DateTime': '2009-06-30 08:16:14', 'mta_tax': None, 'store_and_forward': 0.0, 'surcharge': 0.0, 'vendor_name': 'CMT'}, {'End_Lat': 40.761618, 'End_Lon': -73.98624, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.761618, 'Start_Lon': -73.98624, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4, 'Trip_Distance': 1.0, 'Trip_Dropoff_DateTime': '2009-06-19 02:29:00', 'Trip_Pickup_DateTime': '2009-06-19 02:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756218, 'End_Lon': -73.98562, 'Fare_Amt': 3.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.756077, 'Start_Lon': -73.990142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.2, 'Trip_Distance': 0.43, 'Trip_Dropoff_DateTime': '2009-06-19 05:53:00', 'Trip_Pickup_DateTime': '2009-06-19 05:50:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.71136, 'End_Lon': -74.015098, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.726878, 'Start_Lon': -73.995655, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.3, 'Trip_Distance': 2.31, 'Trip_Dropoff_DateTime': '2009-06-16 08:26:00', 'Trip_Pickup_DateTime': '2009-06-16 08:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.758083, 'End_Lon': -73.97879, 'Fare_Amt': 10.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753162, 'Start_Lon': -73.96658, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.9, 'Trip_Distance': 0.68, 'Trip_Dropoff_DateTime': '2009-06-16 09:22:00', 'Trip_Pickup_DateTime': '2009-06-16 09:00:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772275, 'End_Lon': -73.962803, 'Fare_Amt': 10.1, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7503, 'Start_Lon': -73.991742, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.1, 'Trip_Distance': 2.68, 'Trip_Dropoff_DateTime': '2009-06-16 08:22:00', 'Trip_Pickup_DateTime': '2009-06-16 08:07:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744195, 'End_Lon': -73.997937, 'Fare_Amt': 6.5, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730255, 'Start_Lon': -74.006773, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-18 09:43:00', 'Trip_Pickup_DateTime': '2009-06-18 09:34:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.74151, 'End_Lon': -74.007085, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.753332, 'Start_Lon': -73.98905, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.62, 'Trip_Dropoff_DateTime': '2009-06-18 11:28:00', 'Trip_Pickup_DateTime': '2009-06-18 11:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762305, 'End_Lon': -73.976512, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776082, 'Start_Lon': -73.950393, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 11.0, 'Trip_Distance': 2.27, 'Trip_Dropoff_DateTime': '2009-06-18 07:55:00', 'Trip_Pickup_DateTime': '2009-06-18 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.755182, 'End_Lon': -73.979508, 'Fare_Amt': 13.3, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.776755, 'Start_Lon': -73.98656, 'Tip_Amt': 3.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.3, 'Trip_Distance': 2.42, 'Trip_Dropoff_DateTime': '2009-06-18 10:12:00', 'Trip_Pickup_DateTime': '2009-06-18 09:48:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.73347, 'End_Lon': -73.99979, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.727223, 'Start_Lon': -74.000467, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.0, 'Trip_Distance': 0.53, 'Trip_Dropoff_DateTime': '2009-06-16 22:18:00', 'Trip_Pickup_DateTime': '2009-06-16 22:05:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.759838, 'End_Lon': -73.977977, 'Fare_Amt': 10.5, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.730473, 'Start_Lon': -73.980605, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 12.5, 'Trip_Distance': 3.13, 'Trip_Dropoff_DateTime': '2009-06-18 07:44:00', 'Trip_Pickup_DateTime': '2009-06-18 07:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.70435, 'End_Lon': -74.006093, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.712553, 'Start_Lon': -74.009808, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-18 08:07:00', 'Trip_Pickup_DateTime': '2009-06-18 07:59:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.759777, 'End_Lon': -73.97457, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.765177, 'Start_Lon': -73.975233, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.9, 'Trip_Distance': 0.58, 'Trip_Dropoff_DateTime': '2009-06-18 09:34:00', 'Trip_Pickup_DateTime': '2009-06-18 09:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763883, 'End_Lon': -73.976332, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767268, 'Start_Lon': -73.982018, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.47, 'Trip_Dropoff_DateTime': '2009-06-16 06:32:00', 'Trip_Pickup_DateTime': '2009-06-16 06:28:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702813, 'End_Lon': -74.011743, 'Fare_Amt': 11.7, 'Passenger_Count': 5, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.747512, 'Start_Lon': -74.003568, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.7, 'Trip_Distance': 3.74, 'Trip_Dropoff_DateTime': '2009-06-16 06:42:00', 'Trip_Pickup_DateTime': '2009-06-16 06:29:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.756703, 'End_Lon': -73.987477, 'Fare_Amt': 4.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76713, 'Start_Lon': -73.98986, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.5, 'Trip_Distance': 1.05, 'Trip_Dropoff_DateTime': '2009-06-18 07:19:00', 'Trip_Pickup_DateTime': '2009-06-18 07:15:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.763263, 'End_Lon': -73.978257, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.748428, 'Start_Lon': -73.980375, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.32, 'Trip_Dropoff_DateTime': '2009-06-18 08:01:00', 'Trip_Pickup_DateTime': '2009-06-18 07:52:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.77317, 'End_Lon': -73.885538, 'Fare_Amt': 26.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.754362, 'Start_Lon': -73.970987, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 30.25, 'Trip_Distance': 10.13, 'Trip_Dropoff_DateTime': '2009-06-18 08:53:00', 'Trip_Pickup_DateTime': '2009-06-18 08:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.744707, 'End_Lon': -73.987287, 'Fare_Amt': 11.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768265, 'Start_Lon': -73.96155, 'Tip_Amt': 1.7, 'Tolls_Amt': 0.0, 'Total_Amt': 13.0, 'Trip_Distance': 2.8, 'Trip_Dropoff_DateTime': '2009-06-18 08:13:00', 'Trip_Pickup_DateTime': '2009-06-18 07:55:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.746813, 'End_Lon': -74.009753, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.730993, 'Start_Lon': -73.991477, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.5, 'Trip_Distance': 2.49, 'Trip_Dropoff_DateTime': '2009-06-09 18:43:00', 'Trip_Pickup_DateTime': '2009-06-09 18:26:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 1.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.703017, 'End_Lon': -74.014155, 'Fare_Amt': 12.9, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.748498, 'Start_Lon': -73.973315, 'Tip_Amt': 1.5, 'Tolls_Amt': 0.0, 'Total_Amt': 14.4, 'Trip_Distance': 4.93, 'Trip_Dropoff_DateTime': '2009-06-18 07:33:00', 'Trip_Pickup_DateTime': '2009-06-18 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.771447, 'End_Lon': -73.979517, 'Fare_Amt': 7.7, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.790008, 'Start_Lon': -73.965993, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.7, 'Trip_Distance': 1.87, 'Trip_Dropoff_DateTime': '2009-06-01 12:08:00', 'Trip_Pickup_DateTime': '2009-06-01 11:58:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.762878, 'End_Lon': -73.982015, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.755687, 'Start_Lon': -73.976892, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.74, 'Trip_Dropoff_DateTime': '2009-06-18 08:25:00', 'Trip_Pickup_DateTime': '2009-06-18 08:17:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.750342, 'End_Lon': -73.991313, 'Fare_Amt': 8.9, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.758447, 'Start_Lon': -73.963142, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 9.4, 'Trip_Distance': 2.21, 'Trip_Dropoff_DateTime': '2009-06-16 21:47:00', 'Trip_Pickup_DateTime': '2009-06-16 21:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.756283, 'End_Lon': -73.967597, 'Fare_Amt': 5.3, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.767732, 'Start_Lon': -73.955997, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.3, 'Trip_Distance': 1.15, 'Trip_Dropoff_DateTime': '2009-06-16 06:44:00', 'Trip_Pickup_DateTime': '2009-06-16 06:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.702713, 'End_Lon': -74.012243, 'Fare_Amt': 20.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.780887, 'Start_Lon': -73.959052, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 20.5, 'Trip_Distance': 7.78, 'Trip_Dropoff_DateTime': '2009-06-18 08:02:00', 'Trip_Pickup_DateTime': '2009-06-18 07:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.742022, 'End_Lon': -73.988938, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.755435, 'Start_Lon': -73.9762, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.52, 'Trip_Dropoff_DateTime': '2009-06-15 23:44:00', 'Trip_Pickup_DateTime': '2009-06-15 23:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.784177, 'End_Lon': -73.947255, 'Fare_Amt': 5.7, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.768388, 'Start_Lon': -73.96164, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 7.2, 'Trip_Distance': 1.44, 'Trip_Dropoff_DateTime': '2009-06-15 22:45:00', 'Trip_Pickup_DateTime': '2009-06-15 22:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.755015, 'End_Lon': -73.97873, 'Fare_Amt': 4.9, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.745892, 'Start_Lon': -73.982068, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.78, 'Trip_Dropoff_DateTime': '2009-06-19 14:44:00', 'Trip_Pickup_DateTime': '2009-06-19 14:38:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.732462, 'End_Lon': -73.992458, 'Fare_Amt': 4.9, 'Passenger_Count': 6, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.733533, 'Start_Lon': -73.999732, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.9, 'Trip_Distance': 0.67, 'Trip_Dropoff_DateTime': '2009-06-17 08:40:00', 'Trip_Pickup_DateTime': '2009-06-17 08:35:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751355, 'End_Lon': -74.006813, 'Fare_Amt': 6.9, 'Passenger_Count': 3, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.744865, 'Start_Lon': -73.991537, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.27, 'Trip_Dropoff_DateTime': '2009-06-17 09:34:00', 'Trip_Pickup_DateTime': '2009-06-17 09:25:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.740835, 'End_Lon': -74.004868, 'Fare_Amt': 10.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.752183, 'Start_Lon': -73.975132, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 10.5, 'Trip_Distance': 2.44, 'Trip_Dropoff_DateTime': '2009-06-19 14:10:00', 'Trip_Pickup_DateTime': '2009-06-19 13:53:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.723333, 'End_Lon': -73.99852, 'Fare_Amt': 6.9, 'Passenger_Count': 5, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.735937, 'Start_Lon': -73.985243, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.9, 'Trip_Distance': 1.25, 'Trip_Dropoff_DateTime': '2009-06-17 10:36:00', 'Trip_Pickup_DateTime': '2009-06-17 10:27:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.741828, 'End_Lon': -73.974867, 'Fare_Amt': 6.1, 'Passenger_Count': 2, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.746743, 'Start_Lon': -73.99009, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 0.94, 'Trip_Dropoff_DateTime': '2009-06-17 09:29:00', 'Trip_Pickup_DateTime': '2009-06-17 09:20:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.749137, 'End_Lon': -73.997912, 'Fare_Amt': 9.3, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.720752, 'Start_Lon': -73.997545, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 11.8, 'Trip_Distance': 2.83, 'Trip_Dropoff_DateTime': '2009-06-19 00:52:00', 'Trip_Pickup_DateTime': '2009-06-19 00:40:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.763657, 'End_Lon': -73.790095, 'Fare_Amt': 30.9, 'Passenger_Count': 2, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.645347, 'Start_Lon': -73.776712, 'Tip_Amt': 6.18, 'Tolls_Amt': 0.0, 'Total_Amt': 37.08, 'Trip_Distance': 13.21, 'Trip_Dropoff_DateTime': '2009-06-17 07:56:00', 'Trip_Pickup_DateTime': '2009-06-17 07:23:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.817887, 'End_Lon': -73.958307, 'Fare_Amt': 16.1, 'Passenger_Count': 4, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.81694, 'Start_Lon': -73.959558, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 16.1, 'Trip_Distance': 5.66, 'Trip_Dropoff_DateTime': '2009-06-19 10:28:00', 'Trip_Pickup_DateTime': '2009-06-19 10:11:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.772732, 'End_Lon': -73.97845, 'Fare_Amt': 6.5, 'Passenger_Count': 3, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.766702, 'Start_Lon': -73.959653, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.24, 'Trip_Dropoff_DateTime': '2009-06-19 11:03:00', 'Trip_Pickup_DateTime': '2009-06-19 10:54:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.751187, 'End_Lon': -73.97132, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.76207, 'Start_Lon': -73.96027, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.5, 'Trip_Distance': 1.11, 'Trip_Dropoff_DateTime': '2009-06-17 08:57:00', 'Trip_Pickup_DateTime': '2009-06-17 08:49:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.783522, 'End_Lon': -73.97069, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.77856, 'Start_Lon': -73.95366, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.7, 'Trip_Distance': 1.16, 'Trip_Dropoff_DateTime': '2009-06-19 11:28:00', 'Trip_Pickup_DateTime': '2009-06-19 11:22:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.7772, 'End_Lon': -73.964197, 'Fare_Amt': 4.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.7798, 'Start_Lon': -73.974297, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 4.1, 'Trip_Distance': 0.89, 'Trip_Dropoff_DateTime': '2009-06-17 07:43:00', 'Trip_Pickup_DateTime': '2009-06-17 07:41:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.780172, 'End_Lon': -73.957617, 'Fare_Amt': 6.1, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.788388, 'Start_Lon': -73.976758, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.1, 'Trip_Distance': 1.3, 'Trip_Dropoff_DateTime': '2009-06-19 11:46:00', 'Trip_Pickup_DateTime': '2009-06-19 11:39:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}, {'End_Lat': 40.777342, 'End_Lon': -73.957242, 'Fare_Amt': 5.7, 'Passenger_Count': 1, 'Payment_Type': 'CASH', 'Rate_Code': None, 'Start_Lat': 40.773828, 'Start_Lon': -73.95669, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 6.2, 'Trip_Distance': 0.97, 'Trip_Dropoff_DateTime': '2009-06-17 04:19:00', 'Trip_Pickup_DateTime': '2009-06-17 04:13:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.5, 'vendor_name': 'VTS'}, {'End_Lat': 40.757122, 'End_Lon': -73.986293, 'Fare_Amt': 6.5, 'Passenger_Count': 1, 'Payment_Type': 'Credit', 'Rate_Code': None, 'Start_Lat': 40.756313, 'Start_Lon': -73.972948, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5, 'Trip_Distance': 0.92, 'Trip_Dropoff_DateTime': '2009-06-17 08:34:00', 'Trip_Pickup_DateTime': '2009-06-17 08:24:00', 'mta_tax': None, 'store_and_forward': None, 'surcharge': 0.0, 'vendor_name': 'VTS'}]\n",
            "got page number 11 with 0 records\n"
          ]
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Example 2: The \"bad\" way to download a file\n",
        "\n",
        "In this example we download a json lines file.\n",
        "\n",
        "Since the download is text but we want to work with iterable data strutures for loading, we convert the contents to list of jsons.\n",
        "\n",
        "This is a less than ideal approach because if the file size is unknown, we run the risk of running out of memory. In the case of machines that run multiple jobs, an out of memory error runs the risk of killing not just the current jobs but also anything else running on the machine at the time - a situation most data engineers **really really** like to avoid."
      ],
      "metadata": {
        "id": "LgI8VPNCrdGi"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import requests\n",
        "import json\n",
        "\n",
        "\n",
        "def download_and_read_jsonl(url):\n",
        "    response = requests.get(url)\n",
        "    response.raise_for_status()  # Raise an HTTPError for bad responses\n",
        "    data = response.text.splitlines()\n",
        "    parsed_data = [json.loads(line) for line in data]\n",
        "    return parsed_data\n",
        "\n",
        "\n",
        "# time the download\n",
        "import time\n",
        "start = time.time()\n",
        "\n",
        "url = \"https://storage.googleapis.com/dtc_zoomcamp_api/yellow_tripdata_2009-06.jsonl\"\n",
        "downloaded_data = download_and_read_jsonl(url)\n",
        "\n",
        "if downloaded_data:\n",
        "    # Process or print the downloaded data as needed\n",
        "    print(downloaded_data[:5])  # Print the first 5 entries as an example\n",
        "\n",
        "# time the download\n",
        "end = time.time()\n",
        "print(end - start)"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "bW4AI4yerkTj",
        "outputId": "5aece05f-e1d4-49ff-e87e-196bb31947fc"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "[{'vendor_name': 'VTS', 'Trip_Pickup_DateTime': '2009-06-14 23:23:00', 'Trip_Dropoff_DateTime': '2009-06-14 23:48:00', 'Passenger_Count': 1, 'Trip_Distance': 17.52, 'Start_Lon': -73.787442, 'Start_Lat': 40.641525, 'Rate_Code': None, 'store_and_forward': None, 'End_Lon': -73.980072, 'End_Lat': 40.742963, 'Payment_Type': 'Credit', 'Fare_Amt': 45.0, 'surcharge': 0.0, 'mta_tax': None, 'Tip_Amt': 9.0, 'Tolls_Amt': 4.15, 'Total_Amt': 58.15}, {'vendor_name': 'VTS', 'Trip_Pickup_DateTime': '2009-06-18 17:35:00', 'Trip_Dropoff_DateTime': '2009-06-18 17:43:00', 'Passenger_Count': 1, 'Trip_Distance': 1.56, 'Start_Lon': -74.009767, 'Start_Lat': 40.722065, 'Rate_Code': None, 'store_and_forward': None, 'End_Lon': -74.005698, 'End_Lat': 40.740187, 'Payment_Type': 'Credit', 'Fare_Amt': 6.5, 'surcharge': 1.0, 'mta_tax': None, 'Tip_Amt': 1.0, 'Tolls_Amt': 0.0, 'Total_Amt': 8.5}, {'vendor_name': 'VTS', 'Trip_Pickup_DateTime': '2009-06-10 18:08:00', 'Trip_Dropoff_DateTime': '2009-06-10 18:27:00', 'Passenger_Count': 5, 'Trip_Distance': 3.37, 'Start_Lon': -73.983038, 'Start_Lat': 40.761945, 'Rate_Code': None, 'store_and_forward': None, 'End_Lon': -74.004745, 'End_Lat': 40.718043, 'Payment_Type': 'Credit', 'Fare_Amt': 12.5, 'surcharge': 1.0, 'mta_tax': None, 'Tip_Amt': 2.0, 'Tolls_Amt': 0.0, 'Total_Amt': 15.5}, {'vendor_name': 'VTS', 'Trip_Pickup_DateTime': '2009-06-14 23:54:00', 'Trip_Dropoff_DateTime': '2009-06-14 23:58:00', 'Passenger_Count': 1, 'Trip_Distance': 1.11, 'Start_Lon': -73.992247, 'Start_Lat': 40.749802, 'Rate_Code': None, 'store_and_forward': None, 'End_Lon': -73.985233, 'End_Lat': 40.739637, 'Payment_Type': 'CASH', 'Fare_Amt': 4.9, 'surcharge': 0.5, 'mta_tax': None, 'Tip_Amt': 0.0, 'Tolls_Amt': 0.0, 'Total_Amt': 5.4}, {'vendor_name': 'VTS', 'Trip_Pickup_DateTime': '2009-06-13 13:01:00', 'Trip_Dropoff_DateTime': '2009-06-13 13:23:00', 'Passenger_Count': 1, 'Trip_Distance': 11.09, 'Start_Lon': -73.949233, 'Start_Lat': 40.776825, 'Rate_Code': None, 'store_and_forward': None, 'End_Lon': -73.852693, 'End_Lat': 40.730032, 'Payment_Type': 'CASH', 'Fare_Amt': 25.7, 'surcharge': 0.0, 'mta_tax': None, 'Tip_Amt': 0.0, 'Tolls_Amt': 4.15, 'Total_Amt': 29.85}]\n",
            "2.6350812911987305\n"
          ]
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Example 3: Extracting file data with a generator \"the best practice way\"\n",
        "\n",
        "\"The best practice way\" here refers to the most scalable way to do it, but if you are confident scale will not be an issue, then the right way might be the simplest :)\n",
        "\n",
        "In this example we download a jsonl (like json, but lines) file.\n",
        "Since it's jsonl, it has lines so we can process it line by line.\n",
        "\n",
        "We stream download it and yield the data.\n",
        "\n",
        "If this file were json and not jsonl, we could use ijson library to break it into lines without loading to memory.\n",
        "\n"
      ],
      "metadata": {
        "id": "Rloz9PKQq5-g"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import requests\n",
        "import json\n",
        "\n",
        "url = \"https://storage.googleapis.com/dtc_zoomcamp_api/yellow_tripdata_2009-06.jsonl\"\n",
        "\n",
        "def stream_download_jsonl(url):\n",
        "    response = requests.get(url, stream=True)\n",
        "    response.raise_for_status()  # Raise an HTTPError for bad responses\n",
        "    for line in response.iter_lines():\n",
        "        if line:\n",
        "            yield json.loads(line)\n",
        "\n",
        "# time the download\n",
        "import time\n",
        "start = time.time()\n",
        "\n",
        "# Use the generator to iterate over rows with minimal memory usage\n",
        "row_counter = 0\n",
        "for row in stream_download_jsonl(url):\n",
        "    print(row)\n",
        "    row_counter += 1\n",
        "    if row_counter >= 5:\n",
        "        break\n",
        "\n",
        "# time the download\n",
        "end = time.time()\n",
        "print(end - start)"
      ],
      "metadata": {
        "id": "29-plLIHOPsP"
      },
      "execution_count": null,
      "outputs": []
    },
    {
      "cell_type": "markdown",
      "source": [
        "### Loading the generator (any of the above)\n",
        "\n",
        "We have 3 ways to download the same data. Let's use the fast and reliable way to load some data and inspect it in DuckDB.\n",
        "\n",
        "In this example, we are using `dlt` library to do the loading, which will process data from the generators incrementally, following the same memory management paradigm.\n",
        "\n",
        "We will discuss more details about `dlt` or \"data load tool\" later."
      ],
      "metadata": {
        "id": "pM7qqu1dOrop"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import dlt\n",
        "\n",
        "# define the connection to load to.\n",
        "# We now use duckdb, but you can switch to Bigquery later\n",
        "generators_pipeline = dlt.pipeline(destination='duckdb', dataset_name='generators')\n",
        "\n",
        "\n",
        "# we can load any generator to a table at the pipeline destnation as follows:\n",
        "info = generators_pipeline.run(paginated_getter(),\n",
        "\t\t\t\t\t\t\t\t\t\ttable_name=\"http_download\",\n",
        "\t\t\t\t\t\t\t\t\t\twrite_disposition=\"replace\")\n",
        "\n",
        "# the outcome metadata is returned by the load and we can inspect it by printing it.\n",
        "print(info)\n",
        "\n",
        "# we can load the next generator to the same or to a different table.\n",
        "info = generators_pipeline.run(stream_download_jsonl(url),\n",
        "\t\t\t\t\t\t\t\t\t\ttable_name=\"stream_download\",\n",
        "\t\t\t\t\t\t\t\t\t\twrite_disposition=\"replace\")\n",
        "\n",
        "print(info)\n"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "N9PrR_edOvSw",
        "outputId": "03754c32-2072-4742-9523-44826e7430c4"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "got page number 1 with 1000 records\n",
            "got page number 2 with 1000 records\n",
            "got page number 3 with 1000 records\n",
            "got page number 4 with 1000 records\n",
            "got page number 5 with 1000 records\n",
            "got page number 6 with 1000 records\n",
            "got page number 7 with 1000 records\n",
            "got page number 8 with 1000 records\n",
            "got page number 9 with 1000 records\n",
            "got page number 10 with 1000 records\n",
            "got page number 11 with 0 records\n",
            "Pipeline dlt_colab_kernel_launcher load step completed in 1.55 seconds\n",
            "1 load package(s) were loaded to destination duckdb and into dataset generators\n",
            "The duckdb destination used duckdb:////content/dlt_colab_kernel_launcher.duckdb location to store data\n",
            "Load package 1705683878.0023887 is LOADED and contains no failed jobs\n",
            "Pipeline dlt_colab_kernel_launcher load step completed in 1.52 seconds\n",
            "1 load package(s) were loaded to destination duckdb and into dataset generators\n",
            "The duckdb destination used duckdb:////content/dlt_colab_kernel_launcher.duckdb location to store data\n",
            "Load package 1705683906.1028059 is LOADED and contains no failed jobs\n"
          ]
        }
      ]
    },
    {
      "cell_type": "code",
      "source": [
        "# show outcome\n",
        "\n",
        "import duckdb\n",
        "\n",
        "conn = duckdb.connect(f\"{generators_pipeline.pipeline_name}.duckdb\")\n",
        "\n",
        "# let's see the tables\n",
        "conn.sql(f\"SET search_path = '{generators_pipeline.dataset_name}'\")\n",
        "print('Loaded tables: ')\n",
        "display(conn.sql(\"show tables\"))\n",
        "\n",
        "# and the data\n",
        "\n",
        "print(\"\\n\\n\\n http_download table below:\")\n",
        "\n",
        "rides = conn.sql(\"SELECT * FROM http_download\").df()\n",
        "display(rides)\n",
        "\n",
        "print(\"\\n\\n\\n stream_download table below:\")\n",
        "\n",
        "passengers = conn.sql(\"SELECT * FROM stream_download\").df()\n",
        "display(passengers)\n",
        "\n",
        "# As you can see, the same data was loaded in both cases."
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 1000
        },
        "id": "QSDNShTI45qC",
        "outputId": "e949cc3c-a1cb-4cf9-d2a2-2869797ab000"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Loaded tables: \n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "┌─────────────────────┐\n",
              "│        name         │\n",
              "│       varchar       │\n",
              "├─────────────────────┤\n",
              "│ _dlt_loads          │\n",
              "│ _dlt_pipeline_state │\n",
              "│ _dlt_version        │\n",
              "│ http_download       │\n",
              "│ stream_download     │\n",
              "└─────────────────────┘"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " http_download table below:\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "        end_lat    end_lon  fare_amt  passenger_count payment_type  start_lat  \\\n",
              "0     40.742963 -73.980072      45.0                1       Credit  40.641525   \n",
              "1     40.740187 -74.005698       6.5                1       Credit  40.722065   \n",
              "2     40.718043 -74.004745      12.5                5       Credit  40.761945   \n",
              "3     40.739637 -73.985233       4.9                1         CASH  40.749802   \n",
              "4     40.730032 -73.852693      25.7                1         CASH  40.776825   \n",
              "...         ...        ...       ...              ...          ...        ...   \n",
              "9995  40.783522 -73.970690       5.7                1         CASH  40.778560   \n",
              "9996  40.777200 -73.964197       4.1                1         CASH  40.779800   \n",
              "9997  40.780172 -73.957617       6.1                1         CASH  40.788388   \n",
              "9998  40.777342 -73.957242       5.7                1         CASH  40.773828   \n",
              "9999  40.757122 -73.986293       6.5                1       Credit  40.756313   \n",
              "\n",
              "      start_lon  tip_amt  tolls_amt  total_amt  trip_distance  \\\n",
              "0    -73.787442      9.0       4.15      58.15          17.52   \n",
              "1    -74.009767      1.0       0.00       8.50           1.56   \n",
              "2    -73.983038      2.0       0.00      15.50           3.37   \n",
              "3    -73.992247      0.0       0.00       5.40           1.11   \n",
              "4    -73.949233      0.0       4.15      29.85          11.09   \n",
              "...         ...      ...        ...        ...            ...   \n",
              "9995 -73.953660      0.0       0.00       5.70           1.16   \n",
              "9996 -73.974297      0.0       0.00       4.10           0.89   \n",
              "9997 -73.976758      0.0       0.00       6.10           1.30   \n",
              "9998 -73.956690      0.0       0.00       6.20           0.97   \n",
              "9999 -73.972948      2.0       0.00       8.50           0.92   \n",
              "\n",
              "        trip_dropoff_date_time     trip_pickup_date_time  surcharge  \\\n",
              "0    2009-06-14 23:48:00+00:00 2009-06-14 23:23:00+00:00        0.0   \n",
              "1    2009-06-18 17:43:00+00:00 2009-06-18 17:35:00+00:00        1.0   \n",
              "2    2009-06-10 18:27:00+00:00 2009-06-10 18:08:00+00:00        1.0   \n",
              "3    2009-06-14 23:58:00+00:00 2009-06-14 23:54:00+00:00        0.5   \n",
              "4    2009-06-13 13:23:00+00:00 2009-06-13 13:01:00+00:00        0.0   \n",
              "...                        ...                       ...        ...   \n",
              "9995 2009-06-19 11:28:00+00:00 2009-06-19 11:22:00+00:00        0.0   \n",
              "9996 2009-06-17 07:43:00+00:00 2009-06-17 07:41:00+00:00        0.0   \n",
              "9997 2009-06-19 11:46:00+00:00 2009-06-19 11:39:00+00:00        0.0   \n",
              "9998 2009-06-17 04:19:00+00:00 2009-06-17 04:13:00+00:00        0.5   \n",
              "9999 2009-06-17 08:34:00+00:00 2009-06-17 08:24:00+00:00        0.0   \n",
              "\n",
              "     vendor_name        _dlt_load_id         _dlt_id  store_and_forward  \n",
              "0            VTS  1705683878.0023887  ajMzVx6OuyAYAg                NaN  \n",
              "1            VTS  1705683878.0023887  +kWfumLBuMZXmA                NaN  \n",
              "2            VTS  1705683878.0023887  Ploo8Ctf7Xk8Qg                NaN  \n",
              "3            VTS  1705683878.0023887  saiRIhuMIWNq1g                NaN  \n",
              "4            VTS  1705683878.0023887  zz5zEuWFwuvBTQ                NaN  \n",
              "...          ...                 ...             ...                ...  \n",
              "9995         VTS  1705683878.0023887  /d4YTISzF90NGw                NaN  \n",
              "9996         VTS  1705683878.0023887  AlG5WKUDPeoXIA                NaN  \n",
              "9997         VTS  1705683878.0023887  k/iTrxTSeMsOnw                NaN  \n",
              "9998         VTS  1705683878.0023887  Yr0UYZTyCcxoXw                NaN  \n",
              "9999         VTS  1705683878.0023887  HmL1nyUz4GgN+A                NaN  \n",
              "\n",
              "[10000 rows x 18 columns]"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-258adc47-8431-4a9d-903b-a075f8e95f3c\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>end_lat</th>\n",
              "      <th>end_lon</th>\n",
              "      <th>fare_amt</th>\n",
              "      <th>passenger_count</th>\n",
              "      <th>payment_type</th>\n",
              "      <th>start_lat</th>\n",
              "      <th>start_lon</th>\n",
              "      <th>tip_amt</th>\n",
              "      <th>tolls_amt</th>\n",
              "      <th>total_amt</th>\n",
              "      <th>trip_distance</th>\n",
              "      <th>trip_dropoff_date_time</th>\n",
              "      <th>trip_pickup_date_time</th>\n",
              "      <th>surcharge</th>\n",
              "      <th>vendor_name</th>\n",
              "      <th>_dlt_load_id</th>\n",
              "      <th>_dlt_id</th>\n",
              "      <th>store_and_forward</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>40.742963</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>45.0</td>\n",
              "      <td>1</td>\n",
              "      <td>Credit</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>9.0</td>\n",
              "      <td>4.15</td>\n",
              "      <td>58.15</td>\n",
              "      <td>17.52</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>ajMzVx6OuyAYAg</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>40.740187</td>\n",
              "      <td>-74.005698</td>\n",
              "      <td>6.5</td>\n",
              "      <td>1</td>\n",
              "      <td>Credit</td>\n",
              "      <td>40.722065</td>\n",
              "      <td>-74.009767</td>\n",
              "      <td>1.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>8.50</td>\n",
              "      <td>1.56</td>\n",
              "      <td>2009-06-18 17:43:00+00:00</td>\n",
              "      <td>2009-06-18 17:35:00+00:00</td>\n",
              "      <td>1.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>+kWfumLBuMZXmA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>2</th>\n",
              "      <td>40.718043</td>\n",
              "      <td>-74.004745</td>\n",
              "      <td>12.5</td>\n",
              "      <td>5</td>\n",
              "      <td>Credit</td>\n",
              "      <td>40.761945</td>\n",
              "      <td>-73.983038</td>\n",
              "      <td>2.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>15.50</td>\n",
              "      <td>3.37</td>\n",
              "      <td>2009-06-10 18:27:00+00:00</td>\n",
              "      <td>2009-06-10 18:08:00+00:00</td>\n",
              "      <td>1.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>Ploo8Ctf7Xk8Qg</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>3</th>\n",
              "      <td>40.739637</td>\n",
              "      <td>-73.985233</td>\n",
              "      <td>4.9</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.749802</td>\n",
              "      <td>-73.992247</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>5.40</td>\n",
              "      <td>1.11</td>\n",
              "      <td>2009-06-14 23:58:00+00:00</td>\n",
              "      <td>2009-06-14 23:54:00+00:00</td>\n",
              "      <td>0.5</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>saiRIhuMIWNq1g</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>4</th>\n",
              "      <td>40.730032</td>\n",
              "      <td>-73.852693</td>\n",
              "      <td>25.7</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.776825</td>\n",
              "      <td>-73.949233</td>\n",
              "      <td>0.0</td>\n",
              "      <td>4.15</td>\n",
              "      <td>29.85</td>\n",
              "      <td>11.09</td>\n",
              "      <td>2009-06-13 13:23:00+00:00</td>\n",
              "      <td>2009-06-13 13:01:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>zz5zEuWFwuvBTQ</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>...</th>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9995</th>\n",
              "      <td>40.783522</td>\n",
              "      <td>-73.970690</td>\n",
              "      <td>5.7</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.778560</td>\n",
              "      <td>-73.953660</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>5.70</td>\n",
              "      <td>1.16</td>\n",
              "      <td>2009-06-19 11:28:00+00:00</td>\n",
              "      <td>2009-06-19 11:22:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>/d4YTISzF90NGw</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9996</th>\n",
              "      <td>40.777200</td>\n",
              "      <td>-73.964197</td>\n",
              "      <td>4.1</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.779800</td>\n",
              "      <td>-73.974297</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>4.10</td>\n",
              "      <td>0.89</td>\n",
              "      <td>2009-06-17 07:43:00+00:00</td>\n",
              "      <td>2009-06-17 07:41:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>AlG5WKUDPeoXIA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9997</th>\n",
              "      <td>40.780172</td>\n",
              "      <td>-73.957617</td>\n",
              "      <td>6.1</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.788388</td>\n",
              "      <td>-73.976758</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>6.10</td>\n",
              "      <td>1.30</td>\n",
              "      <td>2009-06-19 11:46:00+00:00</td>\n",
              "      <td>2009-06-19 11:39:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>k/iTrxTSeMsOnw</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9998</th>\n",
              "      <td>40.777342</td>\n",
              "      <td>-73.957242</td>\n",
              "      <td>5.7</td>\n",
              "      <td>1</td>\n",
              "      <td>CASH</td>\n",
              "      <td>40.773828</td>\n",
              "      <td>-73.956690</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>6.20</td>\n",
              "      <td>0.97</td>\n",
              "      <td>2009-06-17 04:19:00+00:00</td>\n",
              "      <td>2009-06-17 04:13:00+00:00</td>\n",
              "      <td>0.5</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>Yr0UYZTyCcxoXw</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9999</th>\n",
              "      <td>40.757122</td>\n",
              "      <td>-73.986293</td>\n",
              "      <td>6.5</td>\n",
              "      <td>1</td>\n",
              "      <td>Credit</td>\n",
              "      <td>40.756313</td>\n",
              "      <td>-73.972948</td>\n",
              "      <td>2.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>8.50</td>\n",
              "      <td>0.92</td>\n",
              "      <td>2009-06-17 08:34:00+00:00</td>\n",
              "      <td>2009-06-17 08:24:00+00:00</td>\n",
              "      <td>0.0</td>\n",
              "      <td>VTS</td>\n",
              "      <td>1705683878.0023887</td>\n",
              "      <td>HmL1nyUz4GgN+A</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "<p>10000 rows × 18 columns</p>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-258adc47-8431-4a9d-903b-a075f8e95f3c')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-258adc47-8431-4a9d-903b-a075f8e95f3c button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-258adc47-8431-4a9d-903b-a075f8e95f3c');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-a0744a05-797a-4214-b068-562246b9a3c5\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-a0744a05-797a-4214-b068-562246b9a3c5')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-a0744a05-797a-4214-b068-562246b9a3c5 button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " stream_download table below:\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "     vendor_name     trip_pickup_date_time    trip_dropoff_date_time  \\\n",
              "0            VTS 2009-06-14 23:23:00+00:00 2009-06-14 23:48:00+00:00   \n",
              "1            VTS 2009-06-18 17:35:00+00:00 2009-06-18 17:43:00+00:00   \n",
              "2            VTS 2009-06-10 18:08:00+00:00 2009-06-10 18:27:00+00:00   \n",
              "3            VTS 2009-06-14 23:54:00+00:00 2009-06-14 23:58:00+00:00   \n",
              "4            VTS 2009-06-13 13:01:00+00:00 2009-06-13 13:23:00+00:00   \n",
              "...          ...                       ...                       ...   \n",
              "9995         VTS 2009-06-19 11:22:00+00:00 2009-06-19 11:28:00+00:00   \n",
              "9996         VTS 2009-06-17 07:41:00+00:00 2009-06-17 07:43:00+00:00   \n",
              "9997         VTS 2009-06-19 11:39:00+00:00 2009-06-19 11:46:00+00:00   \n",
              "9998         VTS 2009-06-17 04:13:00+00:00 2009-06-17 04:19:00+00:00   \n",
              "9999         VTS 2009-06-17 08:24:00+00:00 2009-06-17 08:34:00+00:00   \n",
              "\n",
              "      passenger_count  trip_distance  start_lon  start_lat    end_lon  \\\n",
              "0                   1          17.52 -73.787442  40.641525 -73.980072   \n",
              "1                   1           1.56 -74.009767  40.722065 -74.005698   \n",
              "2                   5           3.37 -73.983038  40.761945 -74.004745   \n",
              "3                   1           1.11 -73.992247  40.749802 -73.985233   \n",
              "4                   1          11.09 -73.949233  40.776825 -73.852693   \n",
              "...               ...            ...        ...        ...        ...   \n",
              "9995                1           1.16 -73.953660  40.778560 -73.970690   \n",
              "9996                1           0.89 -73.974297  40.779800 -73.964197   \n",
              "9997                1           1.30 -73.976758  40.788388 -73.957617   \n",
              "9998                1           0.97 -73.956690  40.773828 -73.957242   \n",
              "9999                1           0.92 -73.972948  40.756313 -73.986293   \n",
              "\n",
              "        end_lat payment_type  fare_amt  surcharge  tip_amt  tolls_amt  \\\n",
              "0     40.742963       Credit      45.0        0.0      9.0       4.15   \n",
              "1     40.740187       Credit       6.5        1.0      1.0       0.00   \n",
              "2     40.718043       Credit      12.5        1.0      2.0       0.00   \n",
              "3     40.739637         CASH       4.9        0.5      0.0       0.00   \n",
              "4     40.730032         CASH      25.7        0.0      0.0       4.15   \n",
              "...         ...          ...       ...        ...      ...        ...   \n",
              "9995  40.783522         CASH       5.7        0.0      0.0       0.00   \n",
              "9996  40.777200         CASH       4.1        0.0      0.0       0.00   \n",
              "9997  40.780172         CASH       6.1        0.0      0.0       0.00   \n",
              "9998  40.777342         CASH       5.7        0.5      0.0       0.00   \n",
              "9999  40.757122       Credit       6.5        0.0      2.0       0.00   \n",
              "\n",
              "      total_amt        _dlt_load_id         _dlt_id  store_and_forward  \n",
              "0         58.15  1705683906.1028059  Yv0VZ0Ctg2uIWA                NaN  \n",
              "1          8.50  1705683906.1028059  B/yYUGmsEEfmBQ                NaN  \n",
              "2         15.50  1705683906.1028059  dNLP6fGf6XqlEQ                NaN  \n",
              "3          5.40  1705683906.1028059  +JVg8Rhxs7hLeg                NaN  \n",
              "4         29.85  1705683906.1028059  sejlf2Lj7IslAQ                NaN  \n",
              "...         ...                 ...             ...                ...  \n",
              "9995       5.70  1705683906.1028059  K4gNRgxumTM4GA                NaN  \n",
              "9996       4.10  1705683906.1028059  bNc7fsdNxaGYMA                NaN  \n",
              "9997       6.10  1705683906.1028059  mqwCGrmtfpeY/Q                NaN  \n",
              "9998       6.20  1705683906.1028059  V80sSMnBUQitvg                NaN  \n",
              "9999       8.50  1705683906.1028059  0UnycsFFCsVXDA                NaN  \n",
              "\n",
              "[10000 rows x 18 columns]"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-14a53bec-b7dd-46b1-9c9e-238a53c328f1\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>vendor_name</th>\n",
              "      <th>trip_pickup_date_time</th>\n",
              "      <th>trip_dropoff_date_time</th>\n",
              "      <th>passenger_count</th>\n",
              "      <th>trip_distance</th>\n",
              "      <th>start_lon</th>\n",
              "      <th>start_lat</th>\n",
              "      <th>end_lon</th>\n",
              "      <th>end_lat</th>\n",
              "      <th>payment_type</th>\n",
              "      <th>fare_amt</th>\n",
              "      <th>surcharge</th>\n",
              "      <th>tip_amt</th>\n",
              "      <th>tolls_amt</th>\n",
              "      <th>total_amt</th>\n",
              "      <th>_dlt_load_id</th>\n",
              "      <th>_dlt_id</th>\n",
              "      <th>store_and_forward</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>45.0</td>\n",
              "      <td>0.0</td>\n",
              "      <td>9.0</td>\n",
              "      <td>4.15</td>\n",
              "      <td>58.15</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>Yv0VZ0Ctg2uIWA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-18 17:35:00+00:00</td>\n",
              "      <td>2009-06-18 17:43:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>1.56</td>\n",
              "      <td>-74.009767</td>\n",
              "      <td>40.722065</td>\n",
              "      <td>-74.005698</td>\n",
              "      <td>40.740187</td>\n",
              "      <td>Credit</td>\n",
              "      <td>6.5</td>\n",
              "      <td>1.0</td>\n",
              "      <td>1.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>8.50</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>B/yYUGmsEEfmBQ</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>2</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-10 18:08:00+00:00</td>\n",
              "      <td>2009-06-10 18:27:00+00:00</td>\n",
              "      <td>5</td>\n",
              "      <td>3.37</td>\n",
              "      <td>-73.983038</td>\n",
              "      <td>40.761945</td>\n",
              "      <td>-74.004745</td>\n",
              "      <td>40.718043</td>\n",
              "      <td>Credit</td>\n",
              "      <td>12.5</td>\n",
              "      <td>1.0</td>\n",
              "      <td>2.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>15.50</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>dNLP6fGf6XqlEQ</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>3</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:54:00+00:00</td>\n",
              "      <td>2009-06-14 23:58:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>1.11</td>\n",
              "      <td>-73.992247</td>\n",
              "      <td>40.749802</td>\n",
              "      <td>-73.985233</td>\n",
              "      <td>40.739637</td>\n",
              "      <td>CASH</td>\n",
              "      <td>4.9</td>\n",
              "      <td>0.5</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>5.40</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>+JVg8Rhxs7hLeg</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>4</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-13 13:01:00+00:00</td>\n",
              "      <td>2009-06-13 13:23:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>11.09</td>\n",
              "      <td>-73.949233</td>\n",
              "      <td>40.776825</td>\n",
              "      <td>-73.852693</td>\n",
              "      <td>40.730032</td>\n",
              "      <td>CASH</td>\n",
              "      <td>25.7</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.0</td>\n",
              "      <td>4.15</td>\n",
              "      <td>29.85</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>sejlf2Lj7IslAQ</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>...</th>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "      <td>...</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9995</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-19 11:22:00+00:00</td>\n",
              "      <td>2009-06-19 11:28:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>1.16</td>\n",
              "      <td>-73.953660</td>\n",
              "      <td>40.778560</td>\n",
              "      <td>-73.970690</td>\n",
              "      <td>40.783522</td>\n",
              "      <td>CASH</td>\n",
              "      <td>5.7</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>5.70</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>K4gNRgxumTM4GA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9996</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-17 07:41:00+00:00</td>\n",
              "      <td>2009-06-17 07:43:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>0.89</td>\n",
              "      <td>-73.974297</td>\n",
              "      <td>40.779800</td>\n",
              "      <td>-73.964197</td>\n",
              "      <td>40.777200</td>\n",
              "      <td>CASH</td>\n",
              "      <td>4.1</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>4.10</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>bNc7fsdNxaGYMA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9997</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-19 11:39:00+00:00</td>\n",
              "      <td>2009-06-19 11:46:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>1.30</td>\n",
              "      <td>-73.976758</td>\n",
              "      <td>40.788388</td>\n",
              "      <td>-73.957617</td>\n",
              "      <td>40.780172</td>\n",
              "      <td>CASH</td>\n",
              "      <td>6.1</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>6.10</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>mqwCGrmtfpeY/Q</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9998</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-17 04:13:00+00:00</td>\n",
              "      <td>2009-06-17 04:19:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>0.97</td>\n",
              "      <td>-73.956690</td>\n",
              "      <td>40.773828</td>\n",
              "      <td>-73.957242</td>\n",
              "      <td>40.777342</td>\n",
              "      <td>CASH</td>\n",
              "      <td>5.7</td>\n",
              "      <td>0.5</td>\n",
              "      <td>0.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>6.20</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>V80sSMnBUQitvg</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>9999</th>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-17 08:24:00+00:00</td>\n",
              "      <td>2009-06-17 08:34:00+00:00</td>\n",
              "      <td>1</td>\n",
              "      <td>0.92</td>\n",
              "      <td>-73.972948</td>\n",
              "      <td>40.756313</td>\n",
              "      <td>-73.986293</td>\n",
              "      <td>40.757122</td>\n",
              "      <td>Credit</td>\n",
              "      <td>6.5</td>\n",
              "      <td>0.0</td>\n",
              "      <td>2.0</td>\n",
              "      <td>0.00</td>\n",
              "      <td>8.50</td>\n",
              "      <td>1705683906.1028059</td>\n",
              "      <td>0UnycsFFCsVXDA</td>\n",
              "      <td>NaN</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "<p>10000 rows × 18 columns</p>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-14a53bec-b7dd-46b1-9c9e-238a53c328f1')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-14a53bec-b7dd-46b1-9c9e-238a53c328f1 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-14a53bec-b7dd-46b1-9c9e-238a53c328f1');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-296f9fd1-5d5a-421b-8286-dfec83d5cb26\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-296f9fd1-5d5a-421b-8286-dfec83d5cb26')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-296f9fd1-5d5a-421b-8286-dfec83d5cb26 button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "# Part 2: Normalisation"
      ],
      "metadata": {
        "id": "tzi0xTYb4Duq"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Load nested data with auto normalisation\n",
        "\n",
        "When converting nested data to tabular formats, to keep fragmentations minimal:\n",
        "* Nested dictionaries can be flattened into the parent row to\n",
        "* Nested lists however need to be expressed as separate tables due to the different granularity (1:n relationship)\n",
        "\n",
        "And of course, when going from JSON to DB, we want some things standardised:\n",
        "* Data types such as timestamps should be detected correctly\n",
        "* Column names should be converted to db-compatible names\n",
        "* Unnested sub-tables should be linked to parent tables via auto generated keys\n",
        "\n",
        "\n",
        "For this work, we will use `dlt` library, which is purpose-made to solve such tasks in a scalable way, for example by using generators.\n",
        "\n"
      ],
      "metadata": {
        "id": "QRwRYRLce9i6"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "### Introducing dlt\n",
        "\n",
        "dlt is a python library created for the purpose of assisting data engineers to build simpler, faster and more robust pipelines with minimal effort.\n",
        "\n",
        "dlt automates much of the tedious work a data engineer would do, and does it in a way that is robust.\n",
        "\n",
        "dlt can handle things like:\n",
        "\n",
        "- Schema: Inferring and evolving schema, alerting changes, using schemas as data contracts.\n",
        "- Typing data, flattening structures, renaming columns to fit database standards.\n",
        "- Processing a stream of events/rows without filling memory. This includes extraction from generators. In our example we will pass the “data” you can see above.\n",
        "- Loading to a variety of dbs of file formats.\n",
        "\n",
        "Read more about dlt [here](https://dlthub.com/docs/intro).\n",
        "\n",
        "Now let’s use it to load our nested json to duckdb:"
      ],
      "metadata": {
        "id": "ZoTtwE5het4C"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import dlt\n",
        "import duckdb\n",
        "\n",
        "data = [\n",
        "    {\n",
        "        \"vendor_name\": \"VTS\",\n",
        "\t\t\t\t\"record_hash\": \"b00361a396177a9cb410ff61f20015ad\",\n",
        "        \"time\": {\n",
        "            \"pickup\": \"2009-06-14 23:23:00\",\n",
        "            \"dropoff\": \"2009-06-14 23:48:00\"\n",
        "        },\n",
        "        \"Trip_Distance\": 17.52,\n",
        "        # nested dictionaries could be flattened\n",
        "        \"coordinates\": {\n",
        "            \"start\": {\n",
        "                \"lon\": -73.787442,\n",
        "                \"lat\": 40.641525\n",
        "            },\n",
        "            \"end\": {\n",
        "                \"lon\": -73.980072,\n",
        "                \"lat\": 40.742963\n",
        "            }\n",
        "        },\n",
        "        \"Rate_Code\": None,\n",
        "        \"store_and_forward\": None,\n",
        "        \"Payment\": {\n",
        "            \"type\": \"Credit\",\n",
        "            \"amt\": 20.5,\n",
        "            \"surcharge\": 0,\n",
        "            \"mta_tax\": None,\n",
        "            \"tip\": 9,\n",
        "            \"tolls\": 4.15,\n",
        "\t\t\t\t\t\t\"status\": \"booked\"\n",
        "        },\n",
        "        \"Passenger_Count\": 2,\n",
        "        # nested lists need to be expressed as separate tables\n",
        "        \"passengers\": [\n",
        "            {\"name\": \"John\", \"rating\": 4.9},\n",
        "            {\"name\": \"Jack\", \"rating\": 3.9}\n",
        "        ],\n",
        "        \"Stops\": [\n",
        "            {\"lon\": -73.6, \"lat\": 40.6},\n",
        "            {\"lon\": -73.5, \"lat\": 40.5}\n",
        "        ]\n",
        "    },\n",
        "    # ... more data\n",
        "]\n",
        "\n",
        "\n",
        "# define the connection to load to.\n",
        "# We now use duckdb, but you can switch to Bigquery later\n",
        "pipeline = dlt.pipeline(destination='duckdb', dataset_name='taxi_rides')\n",
        "\n",
        "\n",
        "\n",
        "# run with merge write disposition.\n",
        "# This is so scaffolding is created for the next example,\n",
        "# where we look at merging data\n",
        "\n",
        "info = pipeline.run(data,\n",
        "\t\t\t\t\t\t\t\t\t\ttable_name=\"rides\",\n",
        "\t\t\t\t\t\t\t\t\t\twrite_disposition=\"merge\",\n",
        "                    primary_key=\"record_hash\")\n",
        "\n",
        "print(info)"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "2i07XAdb67H5",
        "outputId": "9e6384ac-47b5-450f-c217-e38c935a8ba1"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Pipeline dlt_colab_kernel_launcher load step completed in 0.54 seconds\n",
            "1 load package(s) were loaded to destination duckdb and into dataset taxi_rides\n",
            "The duckdb destination used duckdb:////content/dlt_colab_kernel_launcher.duckdb location to store data\n",
            "Load package 1705683910.4344177 is LOADED and contains no failed jobs\n"
          ]
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "### Inspecting the nested structure, joining the child tables\n",
        "\n",
        "Let's look at what happened during the load\n",
        "- By looking at the loaded tables, we can see our json document got flattened and sub-documents got split into separate tables\n",
        "- We can re-join those child tables to the parent table by using the generated keys `on parent_table._dlt_id = child_table._dlt_parent_id`.\n",
        "- Data types: If you will pay attention to datatypes, you will note that the timestamps, which in json are of string type, are now of timestamp type in the db.\n"
      ],
      "metadata": {
        "id": "kbORAD3Rhsr1"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "# show the outcome\n",
        "\n",
        "conn = duckdb.connect(f\"{pipeline.pipeline_name}.duckdb\")\n",
        "\n",
        "# let's see the tables\n",
        "conn.sql(f\"SET search_path = '{pipeline.dataset_name}'\")\n",
        "print('Loaded tables: ')\n",
        "display(conn.sql(\"show tables\"))\n",
        "\n",
        "\n",
        "print(\"\\n\\n\\n Rides table below: Note the times are properly typed\")\n",
        "rides = conn.sql(\"SELECT * FROM rides\").df()\n",
        "display(rides)\n",
        "\n",
        "print(\"\\n\\n\\n Pasengers table\")\n",
        "passengers = conn.sql(\"SELECT * FROM rides__passengers\").df()\n",
        "display(passengers)\n",
        "print(\"\\n\\n\\n Stops table\")\n",
        "stops = conn.sql(\"SELECT * FROM rides__stops\").df()\n",
        "display(stops)\n",
        "\n",
        "\n",
        "# to reflect the relationships between parent and child rows, let's join them\n",
        "# of course this will have 4 rows due to the two 1:n joins\n",
        "\n",
        "print(\"\\n\\n\\n joined table\")\n",
        "\n",
        "joined = conn.sql(\"\"\"\n",
        "SELECT *\n",
        "FROM rides as r\n",
        "left join rides__passengers as rp\n",
        "  on r._dlt_id = rp._dlt_parent_id\n",
        "left join rides__stops as rs\n",
        "  on r._dlt_id = rs._dlt_parent_id\n",
        "\"\"\").df()\n",
        "display(joined)"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 1000
        },
        "id": "Irf4XsfcgqQv",
        "outputId": "335c42e7-0c10-45b4-bb4a-eb68df5df96a"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Loaded tables: \n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "┌─────────────────────┐\n",
              "│        name         │\n",
              "│       varchar       │\n",
              "├─────────────────────┤\n",
              "│ _dlt_loads          │\n",
              "│ _dlt_pipeline_state │\n",
              "│ _dlt_version        │\n",
              "│ rides               │\n",
              "│ rides__passengers   │\n",
              "│ rides__stops        │\n",
              "└─────────────────────┘"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Rides table below: Note the times are properly typed\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "                        record_hash vendor_name              time__pickup  \\\n",
              "0  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "\n",
              "              time__dropoff  trip_distance  coordinates__start__lon  \\\n",
              "0 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "\n",
              "   coordinates__start__lat  coordinates__end__lon  coordinates__end__lat  \\\n",
              "0                40.641525             -73.980072              40.742963   \n",
              "\n",
              "  payment__type  payment__amt  payment__surcharge  payment__tip  \\\n",
              "0        Credit          20.5                   0             9   \n",
              "\n",
              "   payment__tolls payment__status  passenger_count        _dlt_load_id  \\\n",
              "0            4.15          booked                2  1705683910.4344177   \n",
              "\n",
              "          _dlt_id  \n",
              "0  i4dVo2ISaNcDiQ  "
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-be814cda-e740-4785-aef3-ce135472086d\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>record_hash</th>\n",
              "      <th>vendor_name</th>\n",
              "      <th>time__pickup</th>\n",
              "      <th>time__dropoff</th>\n",
              "      <th>trip_distance</th>\n",
              "      <th>coordinates__start__lon</th>\n",
              "      <th>coordinates__start__lat</th>\n",
              "      <th>coordinates__end__lon</th>\n",
              "      <th>coordinates__end__lat</th>\n",
              "      <th>payment__type</th>\n",
              "      <th>payment__amt</th>\n",
              "      <th>payment__surcharge</th>\n",
              "      <th>payment__tip</th>\n",
              "      <th>payment__tolls</th>\n",
              "      <th>payment__status</th>\n",
              "      <th>passenger_count</th>\n",
              "      <th>_dlt_load_id</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>20.5</td>\n",
              "      <td>0</td>\n",
              "      <td>9</td>\n",
              "      <td>4.15</td>\n",
              "      <td>booked</td>\n",
              "      <td>2</td>\n",
              "      <td>1705683910.4344177</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-be814cda-e740-4785-aef3-ce135472086d')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-be814cda-e740-4785-aef3-ce135472086d button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-be814cda-e740-4785-aef3-ce135472086d');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Pasengers table\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "   name  rating    _dlt_root_id  _dlt_parent_id  _dlt_list_idx         _dlt_id\n",
              "0  John     4.9  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              0  KoRHKdcp2yp5/Q\n",
              "1  Jack     3.9  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              1  K5qb9OYXfOq9ZQ"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-4861f46e-0a3e-412d-899a-d9f24337efd6\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>name</th>\n",
              "      <th>rating</th>\n",
              "      <th>_dlt_root_id</th>\n",
              "      <th>_dlt_parent_id</th>\n",
              "      <th>_dlt_list_idx</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>John</td>\n",
              "      <td>4.9</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>KoRHKdcp2yp5/Q</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>Jack</td>\n",
              "      <td>3.9</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>K5qb9OYXfOq9ZQ</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-4861f46e-0a3e-412d-899a-d9f24337efd6')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-4861f46e-0a3e-412d-899a-d9f24337efd6 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-4861f46e-0a3e-412d-899a-d9f24337efd6');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-8d48e345-1884-48e5-b0f6-2aba3a10429e\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-8d48e345-1884-48e5-b0f6-2aba3a10429e')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-8d48e345-1884-48e5-b0f6-2aba3a10429e button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Stops table\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "    lon   lat    _dlt_root_id  _dlt_parent_id  _dlt_list_idx         _dlt_id\n",
              "0 -73.6  40.6  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              0  n/J7YXW1asaBdw\n",
              "1 -73.5  40.5  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              1  0XGimet1vFqIjA"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-294f0fcd-2905-4952-8379-659410fdfee1\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>lon</th>\n",
              "      <th>lat</th>\n",
              "      <th>_dlt_root_id</th>\n",
              "      <th>_dlt_parent_id</th>\n",
              "      <th>_dlt_list_idx</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>-73.6</td>\n",
              "      <td>40.6</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>n/J7YXW1asaBdw</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>-73.5</td>\n",
              "      <td>40.5</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>0XGimet1vFqIjA</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-294f0fcd-2905-4952-8379-659410fdfee1')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-294f0fcd-2905-4952-8379-659410fdfee1 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-294f0fcd-2905-4952-8379-659410fdfee1');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-0f3b8e13-8a91-422f-85cd-c015d2caf8d5\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-0f3b8e13-8a91-422f-85cd-c015d2caf8d5')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-0f3b8e13-8a91-422f-85cd-c015d2caf8d5 button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " joined table\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "                        record_hash vendor_name              time__pickup  \\\n",
              "0  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "1  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "2  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "3  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "\n",
              "              time__dropoff  trip_distance  coordinates__start__lon  \\\n",
              "0 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "1 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "2 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "3 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "\n",
              "   coordinates__start__lat  coordinates__end__lon  coordinates__end__lat  \\\n",
              "0                40.641525             -73.980072              40.742963   \n",
              "1                40.641525             -73.980072              40.742963   \n",
              "2                40.641525             -73.980072              40.742963   \n",
              "3                40.641525             -73.980072              40.742963   \n",
              "\n",
              "  payment__type  ...    _dlt_root_id  _dlt_parent_id  _dlt_list_idx  \\\n",
              "0        Credit  ...  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              1   \n",
              "1        Credit  ...  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              0   \n",
              "2        Credit  ...  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              1   \n",
              "3        Credit  ...  i4dVo2ISaNcDiQ  i4dVo2ISaNcDiQ              0   \n",
              "\n",
              "        _dlt_id_2   lon   lat  _dlt_root_id_2 _dlt_parent_id_2  \\\n",
              "0  K5qb9OYXfOq9ZQ -73.5  40.5  i4dVo2ISaNcDiQ   i4dVo2ISaNcDiQ   \n",
              "1  KoRHKdcp2yp5/Q -73.5  40.5  i4dVo2ISaNcDiQ   i4dVo2ISaNcDiQ   \n",
              "2  K5qb9OYXfOq9ZQ -73.6  40.6  i4dVo2ISaNcDiQ   i4dVo2ISaNcDiQ   \n",
              "3  KoRHKdcp2yp5/Q -73.6  40.6  i4dVo2ISaNcDiQ   i4dVo2ISaNcDiQ   \n",
              "\n",
              "  _dlt_list_idx_2       _dlt_id_3  \n",
              "0               1  0XGimet1vFqIjA  \n",
              "1               1  0XGimet1vFqIjA  \n",
              "2               0  n/J7YXW1asaBdw  \n",
              "3               0  n/J7YXW1asaBdw  \n",
              "\n",
              "[4 rows x 30 columns]"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-501061b4-a5a8-4501-bf0a-6143cc5d1a24\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>record_hash</th>\n",
              "      <th>vendor_name</th>\n",
              "      <th>time__pickup</th>\n",
              "      <th>time__dropoff</th>\n",
              "      <th>trip_distance</th>\n",
              "      <th>coordinates__start__lon</th>\n",
              "      <th>coordinates__start__lat</th>\n",
              "      <th>coordinates__end__lon</th>\n",
              "      <th>coordinates__end__lat</th>\n",
              "      <th>payment__type</th>\n",
              "      <th>...</th>\n",
              "      <th>_dlt_root_id</th>\n",
              "      <th>_dlt_parent_id</th>\n",
              "      <th>_dlt_list_idx</th>\n",
              "      <th>_dlt_id_2</th>\n",
              "      <th>lon</th>\n",
              "      <th>lat</th>\n",
              "      <th>_dlt_root_id_2</th>\n",
              "      <th>_dlt_parent_id_2</th>\n",
              "      <th>_dlt_list_idx_2</th>\n",
              "      <th>_dlt_id_3</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>...</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>K5qb9OYXfOq9ZQ</td>\n",
              "      <td>-73.5</td>\n",
              "      <td>40.5</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>0XGimet1vFqIjA</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>...</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>KoRHKdcp2yp5/Q</td>\n",
              "      <td>-73.5</td>\n",
              "      <td>40.5</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>0XGimet1vFqIjA</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>2</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>...</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>1</td>\n",
              "      <td>K5qb9OYXfOq9ZQ</td>\n",
              "      <td>-73.6</td>\n",
              "      <td>40.6</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>n/J7YXW1asaBdw</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>3</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>...</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>KoRHKdcp2yp5/Q</td>\n",
              "      <td>-73.6</td>\n",
              "      <td>40.6</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>i4dVo2ISaNcDiQ</td>\n",
              "      <td>0</td>\n",
              "      <td>n/J7YXW1asaBdw</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "<p>4 rows × 30 columns</p>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-501061b4-a5a8-4501-bf0a-6143cc5d1a24')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-501061b4-a5a8-4501-bf0a-6143cc5d1a24 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-501061b4-a5a8-4501-bf0a-6143cc5d1a24');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-af441e20-08f3-483c-a51e-1bd7cc313a86\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-af441e20-08f3-483c-a51e-1bd7cc313a86')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-af441e20-08f3-483c-a51e-1bd7cc313a86 button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "What are we looking at?\n",
        "- Nested dicts got flattened into the parent row, the structure `{\"coordinates\":{\"start\": {\"lat\": ...}}}` became\n",
        "`coordinates__start__lat`\n",
        "\n",
        "- Nested lists got broken out into separate tables with generated columns that would allow us to join the data back when needed."
      ],
      "metadata": {
        "id": "duR1wFIfbM07"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "# Part 3: Incremental loading\n",
        "## Update nested data\n",
        "\n",
        "In this example the scores of the 2 passengers changed. Turns out their payment didn't go through for the ride before and they got a bad rating from the driver, so now we have to update their rating.\n",
        "\n",
        "As you can see after running the code, their ratings are now lowered"
      ],
      "metadata": {
        "id": "iDpgADmSBdr9"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "import dlt\n",
        "import duckdb\n",
        "\n",
        "data = [\n",
        "    {\n",
        "        \"vendor_name\": \"VTS\",\n",
        "\t\t\t\t\"record_hash\": \"b00361a396177a9cb410ff61f20015ad\",\n",
        "        \"time\": {\n",
        "            \"pickup\": \"2009-06-14 23:23:00\",\n",
        "            \"dropoff\": \"2009-06-14 23:48:00\"\n",
        "        },\n",
        "        \"Trip_Distance\": 17.52,\n",
        "        \"coordinates\": {\n",
        "            \"start\": {\n",
        "                \"lon\": -73.787442,\n",
        "                \"lat\": 40.641525\n",
        "            },\n",
        "            \"end\": {\n",
        "                \"lon\": -73.980072,\n",
        "                \"lat\": 40.742963\n",
        "            }\n",
        "        },\n",
        "        \"Rate_Code\": None,\n",
        "        \"store_and_forward\": None,\n",
        "        \"Payment\": {\n",
        "            \"type\": \"Credit\",\n",
        "            \"amt\": 20.5,\n",
        "            \"surcharge\": 0,\n",
        "            \"mta_tax\": None,\n",
        "            \"tip\": 9,\n",
        "            \"tolls\": 4.15,\n",
        "\t\t\t\t\t\t\"status\": \"booked\"\n",
        "        },\n",
        "        \"Passenger_Count\": 2,\n",
        "        \"passengers\": [\n",
        "            {\"name\": \"John\", \"rating\": 4.4},\n",
        "            {\"name\": \"Jack\", \"rating\": 3.6}\n",
        "        ],\n",
        "        \"Stops\": [\n",
        "            {\"lon\": -73.6, \"lat\": 40.6},\n",
        "            {\"lon\": -73.5, \"lat\": 40.5}\n",
        "        ]\n",
        "    },\n",
        "]\n",
        "\n",
        "# define the connection to load to.\n",
        "# We now use duckdb, but you can switch to Bigquery later\n",
        "pipeline = dlt.pipeline(destination='duckdb', dataset_name='taxi_rides')\n",
        "\n",
        "# run the pipeline with default settings, and capture the outcome\n",
        "info = pipeline.run(data,\n",
        "\t\t\t\t\t\t\t\t\t\ttable_name=\"rides\",\n",
        "\t\t\t\t\t\t\t\t\t\twrite_disposition=\"replace\",\n",
        "                    primary_key='record_hash')\n",
        "\n",
        "# show the outcome\n",
        "\n",
        "conn = duckdb.connect(f\"{pipeline.pipeline_name}.duckdb\")\n",
        "\n",
        "# let's see the tables\n",
        "conn.sql(f\"SET search_path = '{pipeline.dataset_name}'\")\n",
        "print('Loaded tables: ')\n",
        "display(conn.sql(\"show tables\"))\n",
        "\n",
        "\n",
        "print(\"\\n\\n\\n Rides table below: Note the times are properly typed\")\n",
        "rides = conn.sql(\"SELECT * FROM rides\").df()\n",
        "display(rides)\n",
        "\n",
        "print(\"\\n\\n\\n Pasengers table\")\n",
        "passengers = conn.sql(\"SELECT * FROM rides__passengers\").df()\n",
        "display(passengers)\n",
        "print(\"\\n\\n\\n Stops table\")\n",
        "stops = conn.sql(\"SELECT * FROM rides__stops\").df()\n",
        "display(stops)\n"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 737
        },
        "id": "D3W5iXow8cs8",
        "outputId": "66be5c20-86f4-4de8-9b66-28b3e84435a3"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Loaded tables: \n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "┌─────────────────────┐\n",
              "│        name         │\n",
              "│       varchar       │\n",
              "├─────────────────────┤\n",
              "│ _dlt_loads          │\n",
              "│ _dlt_pipeline_state │\n",
              "│ _dlt_version        │\n",
              "│ rides               │\n",
              "│ rides__passengers   │\n",
              "│ rides__stops        │\n",
              "└─────────────────────┘"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Rides table below: Note the times are properly typed\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "                        record_hash vendor_name              time__pickup  \\\n",
              "0  b00361a396177a9cb410ff61f20015ad         VTS 2009-06-14 23:23:00+00:00   \n",
              "\n",
              "              time__dropoff  trip_distance  coordinates__start__lon  \\\n",
              "0 2009-06-14 23:48:00+00:00          17.52               -73.787442   \n",
              "\n",
              "   coordinates__start__lat  coordinates__end__lon  coordinates__end__lat  \\\n",
              "0                40.641525             -73.980072              40.742963   \n",
              "\n",
              "  payment__type  payment__amt  payment__surcharge  payment__tip  \\\n",
              "0        Credit          20.5                   0             9   \n",
              "\n",
              "   payment__tolls payment__status  passenger_count        _dlt_load_id  \\\n",
              "0            4.15          booked                2  1705683911.5365927   \n",
              "\n",
              "          _dlt_id  \n",
              "0  Fmc0uViMLJshQg  "
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-8eed68f4-1656-4ab9-bde5-0b20e3cafc43\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>record_hash</th>\n",
              "      <th>vendor_name</th>\n",
              "      <th>time__pickup</th>\n",
              "      <th>time__dropoff</th>\n",
              "      <th>trip_distance</th>\n",
              "      <th>coordinates__start__lon</th>\n",
              "      <th>coordinates__start__lat</th>\n",
              "      <th>coordinates__end__lon</th>\n",
              "      <th>coordinates__end__lat</th>\n",
              "      <th>payment__type</th>\n",
              "      <th>payment__amt</th>\n",
              "      <th>payment__surcharge</th>\n",
              "      <th>payment__tip</th>\n",
              "      <th>payment__tolls</th>\n",
              "      <th>payment__status</th>\n",
              "      <th>passenger_count</th>\n",
              "      <th>_dlt_load_id</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>b00361a396177a9cb410ff61f20015ad</td>\n",
              "      <td>VTS</td>\n",
              "      <td>2009-06-14 23:23:00+00:00</td>\n",
              "      <td>2009-06-14 23:48:00+00:00</td>\n",
              "      <td>17.52</td>\n",
              "      <td>-73.787442</td>\n",
              "      <td>40.641525</td>\n",
              "      <td>-73.980072</td>\n",
              "      <td>40.742963</td>\n",
              "      <td>Credit</td>\n",
              "      <td>20.5</td>\n",
              "      <td>0</td>\n",
              "      <td>9</td>\n",
              "      <td>4.15</td>\n",
              "      <td>booked</td>\n",
              "      <td>2</td>\n",
              "      <td>1705683911.5365927</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-8eed68f4-1656-4ab9-bde5-0b20e3cafc43')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-8eed68f4-1656-4ab9-bde5-0b20e3cafc43 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-8eed68f4-1656-4ab9-bde5-0b20e3cafc43');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Pasengers table\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "   name  rating    _dlt_root_id  _dlt_parent_id  _dlt_list_idx         _dlt_id\n",
              "0  John     4.4  Fmc0uViMLJshQg  Fmc0uViMLJshQg              0  DdxgzRXGfEa0IA\n",
              "1  Jack     3.6  Fmc0uViMLJshQg  Fmc0uViMLJshQg              1  LK+DCfwYEAn8RA"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-aa86eb0e-2b95-48f9-bdca-52fadc1c6c09\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>name</th>\n",
              "      <th>rating</th>\n",
              "      <th>_dlt_root_id</th>\n",
              "      <th>_dlt_parent_id</th>\n",
              "      <th>_dlt_list_idx</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>John</td>\n",
              "      <td>4.4</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>0</td>\n",
              "      <td>DdxgzRXGfEa0IA</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>Jack</td>\n",
              "      <td>3.6</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>1</td>\n",
              "      <td>LK+DCfwYEAn8RA</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-aa86eb0e-2b95-48f9-bdca-52fadc1c6c09')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-aa86eb0e-2b95-48f9-bdca-52fadc1c6c09 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-aa86eb0e-2b95-48f9-bdca-52fadc1c6c09');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-51a2e412-8502-4a59-b1cc-450e0f49d4ee\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-51a2e412-8502-4a59-b1cc-450e0f49d4ee')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-51a2e412-8502-4a59-b1cc-450e0f49d4ee button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "\n",
            "\n",
            " Stops table\n"
          ]
        },
        {
          "output_type": "display_data",
          "data": {
            "text/plain": [
              "    lon   lat    _dlt_root_id  _dlt_parent_id  _dlt_list_idx         _dlt_id\n",
              "0 -73.6  40.6  Fmc0uViMLJshQg  Fmc0uViMLJshQg              0  4WH9ZTJCFhNk8A\n",
              "1 -73.5  40.5  Fmc0uViMLJshQg  Fmc0uViMLJshQg              1  LmYvkfcrBxlelw"
            ],
            "text/html": [
              "\n",
              "  <div id=\"df-89e8cc79-cda9-4569-ae18-34436e042ce0\" class=\"colab-df-container\">\n",
              "    <div>\n",
              "<style scoped>\n",
              "    .dataframe tbody tr th:only-of-type {\n",
              "        vertical-align: middle;\n",
              "    }\n",
              "\n",
              "    .dataframe tbody tr th {\n",
              "        vertical-align: top;\n",
              "    }\n",
              "\n",
              "    .dataframe thead th {\n",
              "        text-align: right;\n",
              "    }\n",
              "</style>\n",
              "<table border=\"1\" class=\"dataframe\">\n",
              "  <thead>\n",
              "    <tr style=\"text-align: right;\">\n",
              "      <th></th>\n",
              "      <th>lon</th>\n",
              "      <th>lat</th>\n",
              "      <th>_dlt_root_id</th>\n",
              "      <th>_dlt_parent_id</th>\n",
              "      <th>_dlt_list_idx</th>\n",
              "      <th>_dlt_id</th>\n",
              "    </tr>\n",
              "  </thead>\n",
              "  <tbody>\n",
              "    <tr>\n",
              "      <th>0</th>\n",
              "      <td>-73.6</td>\n",
              "      <td>40.6</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>0</td>\n",
              "      <td>4WH9ZTJCFhNk8A</td>\n",
              "    </tr>\n",
              "    <tr>\n",
              "      <th>1</th>\n",
              "      <td>-73.5</td>\n",
              "      <td>40.5</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>Fmc0uViMLJshQg</td>\n",
              "      <td>1</td>\n",
              "      <td>LmYvkfcrBxlelw</td>\n",
              "    </tr>\n",
              "  </tbody>\n",
              "</table>\n",
              "</div>\n",
              "    <div class=\"colab-df-buttons\">\n",
              "\n",
              "  <div class=\"colab-df-container\">\n",
              "    <button class=\"colab-df-convert\" onclick=\"convertToInteractive('df-89e8cc79-cda9-4569-ae18-34436e042ce0')\"\n",
              "            title=\"Convert this dataframe to an interactive table.\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "  <svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\" viewBox=\"0 -960 960 960\">\n",
              "    <path d=\"M120-120v-720h720v720H120Zm60-500h600v-160H180v160Zm220 220h160v-160H400v160Zm0 220h160v-160H400v160ZM180-400h160v-160H180v160Zm440 0h160v-160H620v160ZM180-180h160v-160H180v160Zm440 0h160v-160H620v160Z\"/>\n",
              "  </svg>\n",
              "    </button>\n",
              "\n",
              "  <style>\n",
              "    .colab-df-container {\n",
              "      display:flex;\n",
              "      gap: 12px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert {\n",
              "      background-color: #E8F0FE;\n",
              "      border: none;\n",
              "      border-radius: 50%;\n",
              "      cursor: pointer;\n",
              "      display: none;\n",
              "      fill: #1967D2;\n",
              "      height: 32px;\n",
              "      padding: 0 0 0 0;\n",
              "      width: 32px;\n",
              "    }\n",
              "\n",
              "    .colab-df-convert:hover {\n",
              "      background-color: #E2EBFA;\n",
              "      box-shadow: 0px 1px 2px rgba(60, 64, 67, 0.3), 0px 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "      fill: #174EA6;\n",
              "    }\n",
              "\n",
              "    .colab-df-buttons div {\n",
              "      margin-bottom: 4px;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert {\n",
              "      background-color: #3B4455;\n",
              "      fill: #D2E3FC;\n",
              "    }\n",
              "\n",
              "    [theme=dark] .colab-df-convert:hover {\n",
              "      background-color: #434B5C;\n",
              "      box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);\n",
              "      filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.3));\n",
              "      fill: #FFFFFF;\n",
              "    }\n",
              "  </style>\n",
              "\n",
              "    <script>\n",
              "      const buttonEl =\n",
              "        document.querySelector('#df-89e8cc79-cda9-4569-ae18-34436e042ce0 button.colab-df-convert');\n",
              "      buttonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "\n",
              "      async function convertToInteractive(key) {\n",
              "        const element = document.querySelector('#df-89e8cc79-cda9-4569-ae18-34436e042ce0');\n",
              "        const dataTable =\n",
              "          await google.colab.kernel.invokeFunction('convertToInteractive',\n",
              "                                                    [key], {});\n",
              "        if (!dataTable) return;\n",
              "\n",
              "        const docLinkHtml = 'Like what you see? Visit the ' +\n",
              "          '<a target=\"_blank\" href=https://colab.research.google.com/notebooks/data_table.ipynb>data table notebook</a>'\n",
              "          + ' to learn more about interactive tables.';\n",
              "        element.innerHTML = '';\n",
              "        dataTable['output_type'] = 'display_data';\n",
              "        await google.colab.output.renderOutput(dataTable, element);\n",
              "        const docLink = document.createElement('div');\n",
              "        docLink.innerHTML = docLinkHtml;\n",
              "        element.appendChild(docLink);\n",
              "      }\n",
              "    </script>\n",
              "  </div>\n",
              "\n",
              "\n",
              "<div id=\"df-e2fc6ec0-a9bc-44b9-8ba7-e0aae7e4d2d1\">\n",
              "  <button class=\"colab-df-quickchart\" onclick=\"quickchart('df-e2fc6ec0-a9bc-44b9-8ba7-e0aae7e4d2d1')\"\n",
              "            title=\"Suggest charts\"\n",
              "            style=\"display:none;\">\n",
              "\n",
              "<svg xmlns=\"http://www.w3.org/2000/svg\" height=\"24px\"viewBox=\"0 0 24 24\"\n",
              "     width=\"24px\">\n",
              "    <g>\n",
              "        <path d=\"M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z\"/>\n",
              "    </g>\n",
              "</svg>\n",
              "  </button>\n",
              "\n",
              "<style>\n",
              "  .colab-df-quickchart {\n",
              "      --bg-color: #E8F0FE;\n",
              "      --fill-color: #1967D2;\n",
              "      --hover-bg-color: #E2EBFA;\n",
              "      --hover-fill-color: #174EA6;\n",
              "      --disabled-fill-color: #AAA;\n",
              "      --disabled-bg-color: #DDD;\n",
              "  }\n",
              "\n",
              "  [theme=dark] .colab-df-quickchart {\n",
              "      --bg-color: #3B4455;\n",
              "      --fill-color: #D2E3FC;\n",
              "      --hover-bg-color: #434B5C;\n",
              "      --hover-fill-color: #FFFFFF;\n",
              "      --disabled-bg-color: #3B4455;\n",
              "      --disabled-fill-color: #666;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart {\n",
              "    background-color: var(--bg-color);\n",
              "    border: none;\n",
              "    border-radius: 50%;\n",
              "    cursor: pointer;\n",
              "    display: none;\n",
              "    fill: var(--fill-color);\n",
              "    height: 32px;\n",
              "    padding: 0;\n",
              "    width: 32px;\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart:hover {\n",
              "    background-color: var(--hover-bg-color);\n",
              "    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);\n",
              "    fill: var(--button-hover-fill-color);\n",
              "  }\n",
              "\n",
              "  .colab-df-quickchart-complete:disabled,\n",
              "  .colab-df-quickchart-complete:disabled:hover {\n",
              "    background-color: var(--disabled-bg-color);\n",
              "    fill: var(--disabled-fill-color);\n",
              "    box-shadow: none;\n",
              "  }\n",
              "\n",
              "  .colab-df-spinner {\n",
              "    border: 2px solid var(--fill-color);\n",
              "    border-color: transparent;\n",
              "    border-bottom-color: var(--fill-color);\n",
              "    animation:\n",
              "      spin 1s steps(1) infinite;\n",
              "  }\n",
              "\n",
              "  @keyframes spin {\n",
              "    0% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "      border-left-color: var(--fill-color);\n",
              "    }\n",
              "    20% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    30% {\n",
              "      border-color: transparent;\n",
              "      border-left-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    40% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-top-color: var(--fill-color);\n",
              "    }\n",
              "    60% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "    }\n",
              "    80% {\n",
              "      border-color: transparent;\n",
              "      border-right-color: var(--fill-color);\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "    90% {\n",
              "      border-color: transparent;\n",
              "      border-bottom-color: var(--fill-color);\n",
              "    }\n",
              "  }\n",
              "</style>\n",
              "\n",
              "  <script>\n",
              "    async function quickchart(key) {\n",
              "      const quickchartButtonEl =\n",
              "        document.querySelector('#' + key + ' button');\n",
              "      quickchartButtonEl.disabled = true;  // To prevent multiple clicks.\n",
              "      quickchartButtonEl.classList.add('colab-df-spinner');\n",
              "      try {\n",
              "        const charts = await google.colab.kernel.invokeFunction(\n",
              "            'suggestCharts', [key], {});\n",
              "      } catch (error) {\n",
              "        console.error('Error during call to suggestCharts:', error);\n",
              "      }\n",
              "      quickchartButtonEl.classList.remove('colab-df-spinner');\n",
              "      quickchartButtonEl.classList.add('colab-df-quickchart-complete');\n",
              "    }\n",
              "    (() => {\n",
              "      let quickchartButtonEl =\n",
              "        document.querySelector('#df-e2fc6ec0-a9bc-44b9-8ba7-e0aae7e4d2d1 button');\n",
              "      quickchartButtonEl.style.display =\n",
              "        google.colab.kernel.accessAllowed ? 'block' : 'none';\n",
              "    })();\n",
              "  </script>\n",
              "</div>\n",
              "    </div>\n",
              "  </div>\n"
            ]
          },
          "metadata": {}
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "# Bonus snippets\n",
        "\n"
      ],
      "metadata": {
        "id": "-XXw1A9QUDUJ"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Load to parquet file"
      ],
      "metadata": {
        "id": "dp1tfRt1S4Gz"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "%%capture\n",
        "!pip install dlt[parquet] # Install dlt with all the necessary DuckDB dependencies\n",
        "!pip install parquet\n",
        "!mkdir .dlt"
      ],
      "metadata": {
        "id": "Sj2aTU-GUe2J"
      },
      "execution_count": null,
      "outputs": []
    },
    {
      "cell_type": "code",
      "source": [
        "import os\n",
        "import dlt\n",
        "import parquet\n",
        "import json\n",
        "import glob\n",
        "\n",
        "# Set the bucket_url. We can also use a local folder\n",
        "os.environ['DESTINATION__FILESYSTEM__BUCKET_URL'] = 'file:///content/.dlt/my_folder'\n",
        "\n",
        "url = \"https://storage.googleapis.com/dtc_zoomcamp_api/yellow_tripdata_2009-06.jsonl\"\n",
        "# Define your pipeline\n",
        "pipeline = dlt.pipeline(\n",
        "    pipeline_name='my_pipeline',\n",
        "    destination='filesystem',\n",
        "    dataset_name='mydata'\n",
        ")\n",
        "\n",
        "\n",
        "\n",
        "# Run the pipeline with the generator we created earlier.\n",
        "load_info = pipeline.run(stream_download_jsonl(url), table_name=\"users\", loader_file_format=\"parquet\")\n",
        "\n",
        "print(load_info)\n",
        "\n",
        "# Get a list of all Parquet files in the specified folder\n",
        "parquet_files = glob.glob('/content/.dlt/my_folder/mydata/users/*.parquet')\n",
        "\n",
        "# show parquet files\n",
        "for file in parquet_files:\n",
        "  print(file)\n"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/",
          "height": 304
        },
        "id": "YZ74NAUoV06Y",
        "outputId": "6510d2f6-04e6-4824-cc7f-640ef3ce6612"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "error",
          "ename": "NameError",
          "evalue": "name 'stream_download_jsonl' is not defined",
          "traceback": [
            "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
            "\u001b[0;31mNameError\u001b[0m                                 Traceback (most recent call last)",
            "\u001b[0;32m<ipython-input-2-32e03bb10a42>\u001b[0m in \u001b[0;36m<cell line: 21>\u001b[0;34m()\u001b[0m\n\u001b[1;32m     19\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     20\u001b[0m \u001b[0;31m# Run the pipeline with the generator we created earlier.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 21\u001b[0;31m \u001b[0mload_info\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpipeline\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstream_download_jsonl\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtable_name\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"users\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mloader_file_format\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"parquet\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m     22\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     23\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mload_info\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
            "\u001b[0;31mNameError\u001b[0m: name 'stream_download_jsonl' is not defined"
          ]
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Load to bigquery\n",
        "To load to bigquery, we need credentials to bigquery.\n",
        "- dlt looks for credentials in several places as described in the [credential docs.](https://dlthub.com/docs/general-usage/credentials/configuration)\n",
        "- In the case of Bigquery you can read the docs [here](https://dlthub.com/docs/dlt-ecosystem/destinations/bigquery) for how to do it.\n",
        "- If you are running from Colab or a GCP machine, or you are authenticated with the gcp CLI, you can use these already-available local credentials. We will use the Colab Oauth here."
      ],
      "metadata": {
        "id": "CoEk7pYXTBJe"
      }
    },
    {
      "cell_type": "code",
      "source": [
        "%%capture\n",
        "!pip install dlt[bigquery]"
      ],
      "metadata": {
        "id": "gIKdZERfxOYA"
      },
      "execution_count": null,
      "outputs": []
    },
    {
      "cell_type": "code",
      "source": [
        "# Authenticate to Google BigQuery\n",
        "from google.colab import auth\n",
        "auth.authenticate_user()"
      ],
      "metadata": {
        "id": "dQ3uWgqZxKS7"
      },
      "execution_count": null,
      "outputs": []
    },
    {
      "cell_type": "code",
      "source": [
        "import os\n",
        "import dlt\n",
        "\n",
        "os.environ['GOOGLE_CLOUD_PROJECT'] = 'dlt-dev-external'\n",
        "\n",
        "\n",
        "# Define your pipeline\n",
        "pipeline = dlt.pipeline(\n",
        "    pipeline_name='my_pipeline',\n",
        "    destination='bigquery',\n",
        "    dataset_name='dtc'\n",
        ")\n",
        "\n",
        "# Run the pipeline\n",
        "load_info = pipeline.run(stream_download_jsonl(url), table_name=\"users\")\n",
        "\n",
        "print(load_info)\n",
        "\n",
        "from google.cloud import bigquery\n",
        "\n",
        "# Construct a BigQuery client object.\n",
        "client = bigquery.Client()\n",
        "\n",
        "query = \"\"\"\n",
        "    SELECT *\n",
        "    FROM `dtc.users`\n",
        "\"\"\"\n",
        "\n",
        "query_job = client.query(query)  # Make an API request.\n",
        "\n",
        "print(\"The query data:\")\n",
        "for row in query_job:\n",
        "    # Row values can be accessed by field name or index.\n",
        "    print(row)"
      ],
      "metadata": {
        "colab": {
          "base_uri": "https://localhost:8080/"
        },
        "id": "6bjVf9QXTA8R",
        "outputId": "f3640371-adc9-4832-854a-8b906c399b59"
      },
      "execution_count": null,
      "outputs": [
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Pipeline my_pipeline load step completed in 8.75 seconds\n",
            "1 load package(s) were loaded to destination bigquery and into dataset dtc\n",
            "The bigquery destination used None@dlt-dev-external location to store data\n",
            "Load package 1705685161.48292 is LOADED and contains no failed jobs\n",
            "The query data:\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 7, tzinfo=datetime.timezone.utc), 208, 0.0, -73.937825, 40.758278, -73.937818, 40.758275, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'e2B1qnAytXLo2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 6, 50, tzinfo=datetime.timezone.utc), 1, 0.0, -73.972203, 40.745427, -73.972203, 40.745425, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'lI2V6wvvn3M/XA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 57, tzinfo=datetime.timezone.utc), 1, 0.0, -73.97098, 40.753052, -73.971008, 40.753018, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'pz9RjesMJMh5tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 55, tzinfo=datetime.timezone.utc), 1, 0.0, -73.937452, 40.758175, -73.93745, 40.75817, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'LWmQ3+RiLilSSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 43, tzinfo=datetime.timezone.utc), 5, 0.0, -73.950702, 40.802125, -73.950702, 40.802125, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'HEERRtZwODdUYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 57, tzinfo=datetime.timezone.utc), 1, 0.01, -73.970555, 40.691092, -73.970602, 40.691087, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', '33mURsVfH3IUSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 10, tzinfo=datetime.timezone.utc), 1, 0.02, -73.966673, 40.604378, -73.966698, 40.604508, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', '1lD0/ch3kWBThg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 13, tzinfo=datetime.timezone.utc), 1, 0.08, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'bbImUcneDzifqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 38, tzinfo=datetime.timezone.utc), 2, 0.01, -73.97134, 40.763912, -73.97134, 40.763912, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'SHXPeu0SegLpiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 8, 31, tzinfo=datetime.timezone.utc), 1, 0.0, -73.951592, 40.769878, -73.951592, 40.769878, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'LAgnqDl2qezKPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 11, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 2, 29, tzinfo=datetime.timezone.utc), 1, 0.0, -73.99487, 40.726063, -73.99487, 40.726063, 'Cash', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', '+/J5kXe5QUE+UA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 29, tzinfo=datetime.timezone.utc), 1, 0.05, -73.965502, 40.598207, -73.965542, 40.59842, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', '/VAnVs5K1GXIrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 20, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 24, 13, tzinfo=datetime.timezone.utc), 1, 12.8, -73.973916, 40.754193, -73.995665, 40.761249, 'Cash', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'PGivAIB77t4Oog', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 53, tzinfo=datetime.timezone.utc), 2, 0.0, -73.78194, 40.64472, 0.0, 0.0, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'x69THMJXlvzuVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 7, tzinfo=datetime.timezone.utc), 1, 0.02, -73.99846, 40.723742, -73.998538, 40.72372, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'bvpN4Tqw/XveGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 53, tzinfo=datetime.timezone.utc), 1, 0.01, -73.908837, 40.771547, -73.908823, 40.771527, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'oYHaYo58LEVyCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), 1, 0.0, -73.790062, 40.646958, -73.790068, 40.646957, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'RS2M8UqVCaFBEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 59, tzinfo=datetime.timezone.utc), 6, 0.0, -73.814118, 40.698117, -73.814118, 40.698117, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'nxN/8DP3UEzg+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 24, tzinfo=datetime.timezone.utc), 1, 0.03, -73.939705, 40.760992, -73.939278, 40.760855, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'gMCIBgX6ghjjUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 6, tzinfo=datetime.timezone.utc), 3, 0.1, -73.987772, 40.748002, -73.986135, 40.747453, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', '2TqFJtnpXJamJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 33, tzinfo=datetime.timezone.utc), 1, 0.0, -73.979945, 40.760897, -73.979763, 40.760973, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 's76tecihTgv8dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 7, 53, tzinfo=datetime.timezone.utc), 2, 0.12, -73.85175, 40.693438, -73.85219, 40.694192, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685115.6930006', 'EYUbuS8uo686mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 20, tzinfo=datetime.timezone.utc), 1, 0.0, -74.03507, 40.637113, -74.03507, 40.637113, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'UsQEtoWhJggeIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.0, -73.77663, 40.645358, -73.776662, 40.64535, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'zPNr5laGtSEmOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.03, -73.78216, 40.644782, -73.781813, 40.644808, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'hhJO3MJFDX3ZAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 56, tzinfo=datetime.timezone.utc), 1, 0.0, -73.986017, 40.743287, -73.986017, 40.743287, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'VAAiKbdNm/P0sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 53, tzinfo=datetime.timezone.utc), 5, 0.02, -73.980673, 40.72162, -73.980867, 40.721335, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'y0mdXAmrTuiXIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.0, -73.79434, 40.656137, -73.79434, 40.656137, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'OAW5PTVCdm9IFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 3, 30, tzinfo=datetime.timezone.utc), 4, 0.03, -73.909172, 40.77505, -73.909098, 40.775008, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', '4u4VTYAicP81Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 12, tzinfo=datetime.timezone.utc), 2, 0.04, -73.78175, 40.644803, -73.781045, 40.645037, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'u1Sjeehs3iM/8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 58, tzinfo=datetime.timezone.utc), 4, 0.14, -73.78926, 40.648057, -73.789692, 40.64941, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'bbRREoyXlYMDNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 14, tzinfo=datetime.timezone.utc), 2, 0.08, -73.978083, 40.751937, -73.979625, 40.752052, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'blBIKzI9nYxyaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 55, tzinfo=datetime.timezone.utc), 1, 0.07, -73.95458, 40.78083, -73.955237, 40.779977, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'bzK3l5M428gSEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 20, tzinfo=datetime.timezone.utc), 1, 0.03, -73.971553, 40.79455, -73.971662, 40.7947, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', '6O2SS8r7Zqra/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 24, tzinfo=datetime.timezone.utc), 1, 0.0, -73.81323, 40.697037, -73.813233, 40.697027, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'mSV/g0ux7+50Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 1, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 38, tzinfo=datetime.timezone.utc), 1, 0.01, -74.092973, 40.708632, -74.09299, 40.708643, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', '65snVuv79ZL2kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 22, tzinfo=datetime.timezone.utc), 1, 0.0, -74.00233, 40.733537, -74.002305, 40.733485, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'rsa1qkpcj5W8qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 59, tzinfo=datetime.timezone.utc), 2, 0.0, -73.93763, 40.758227, -73.93763, 40.758225, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685115.6930006', 'ptXYOPtdgxkGtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 49, tzinfo=datetime.timezone.utc), 1, 0.0, -73.977895, 40.752195, -73.977895, 40.752195, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'HluPMFie8oowwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), 3, 0.0, -73.929332, 40.752273, -73.929345, 40.752265, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'jfC4aF+ZMpajjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 12, tzinfo=datetime.timezone.utc), 2, 0.06, -73.964637, 40.76455, -73.9636, 40.764552, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', '6BNT+HmhVqvfpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 37, tzinfo=datetime.timezone.utc), 1, 0.0, -73.986263, 40.759165, -73.986263, 40.759165, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', '7s9ENRECYzlwqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 4, tzinfo=datetime.timezone.utc), 1, 0.0, -73.962505, 40.758097, -73.962505, 40.758093, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'fhtekbpBaZAFYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 17, tzinfo=datetime.timezone.utc), 2, 0.0, -73.928428, 40.744113, -73.928448, 40.744082, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'KjVK+FbIO4F8EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 30, tzinfo=datetime.timezone.utc), 1, 0.01, -73.985928, 40.740753, -73.985892, 40.740805, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'Q3i35Ua+sJsmDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 10, tzinfo=datetime.timezone.utc), 1, 0.0, -73.928402, 40.765478, -73.928398, 40.765472, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'znaHejn2kWCl6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 49, tzinfo=datetime.timezone.utc), 2, 0.01, -73.971525, 40.782368, -73.971562, 40.782387, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'Qtc10hksQt5SYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), 1, 0.0, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'Kb4IsYnegRGpeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 22, tzinfo=datetime.timezone.utc), 5, 0.02, -73.962578, 40.799778, -73.9628, 40.799498, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685115.6930006', 'mB77U/oGV0tQlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 54, tzinfo=datetime.timezone.utc), 1, 0.78, -74.002017, 40.7456, -73.99572, 40.738558, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'szgqjgEhhw0Zag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.6, -73.990082, 40.740702, -73.994995, 40.745612, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'DQX3/jr59Sdmmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 53, tzinfo=datetime.timezone.utc), 6, 0.89, -73.959212, 40.763702, -73.959072, 40.773277, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VGVhOAqT4vqEtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.28, -73.994688, 40.750477, -73.991622, 40.75116, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'eOGuLofFOqsynQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 49, tzinfo=datetime.timezone.utc), 3, 0.65, -73.980602, 40.769738, -73.976188, 40.765653, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'lUPkhK+psUngeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 46, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 52, 15, tzinfo=datetime.timezone.utc), 1, 0.1, -73.995145, 40.761198, -73.996457, 40.762366, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'FBqFDTy4VbuJSw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 50, tzinfo=datetime.timezone.utc), 5, 0.88, -73.988042, 40.7647, -73.997337, 40.762263, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '+j37Fa0H3LLdXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 57, tzinfo=datetime.timezone.utc), 1, 0.99, -73.981878, 40.778988, -73.980413, 40.765688, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '3RpBKB84uZUxYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 21, tzinfo=datetime.timezone.utc), 1, 0.8, -73.953008, 40.782978, -73.96244, 40.778167, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'DyZDOLanXGG4uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 20, 4, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 8, 15, tzinfo=datetime.timezone.utc), 1, 0.7, -73.983475, 40.744179, -73.985163, 40.737306, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'q7l6yO6fuHjTpQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 47, tzinfo=datetime.timezone.utc), 5, 0.89, -73.96649, 40.762542, -73.975402, 40.752198, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'b3arKAHVBEoTKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 32, tzinfo=datetime.timezone.utc), 4, 0.68, -73.97251, 40.7558, -73.979647, 40.748873, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '0amGZ5chjKSygg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 25, tzinfo=datetime.timezone.utc), 5, 0.79, -73.982218, 40.774487, -73.980508, 40.765073, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '4G2xjtxxqkKrcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 25, tzinfo=datetime.timezone.utc), 1, 0.69, -73.954805, 40.765542, -73.961705, 40.759975, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'dhV/zYvGnoHRgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 22, tzinfo=datetime.timezone.utc), 2, 0.75, -73.987563, 40.74994, -73.980068, 40.753662, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'UcOMw6dejF44Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 55, tzinfo=datetime.timezone.utc), 1, 0.62, -73.985273, 40.768048, -73.983818, 40.773717, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'qO6gUss1TR01dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 17, tzinfo=datetime.timezone.utc), 1, 0.74, -73.975603, 40.782322, -73.982297, 40.774775, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'MjN1uOvfyFjEvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), 1, 0.77, -73.988335, 40.749993, -73.998157, 40.75614, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'aye4Y0fkBYGKsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 27, tzinfo=datetime.timezone.utc), 3, 0.92, -73.982825, 40.774942, -73.977852, 40.786732, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kbTsru+0F6+vDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 59, tzinfo=datetime.timezone.utc), 5, 0.91, -73.945387, 40.778478, -73.953602, 40.76712, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '4zAM8rda0eTELg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 42, tzinfo=datetime.timezone.utc), 1, 0.73, -74.010695, 40.710225, -74.004243, 40.717615, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '38o9YDPTAiUGoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 25, tzinfo=datetime.timezone.utc), 1, 0.75, -73.9851, 40.742227, -73.979795, 40.75164, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'zo8KLXN8yt3npw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 23, tzinfo=datetime.timezone.utc), 5, 0.55, -74.004123, 40.742672, -74.00686, 40.746323, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '3cTV5fIZ59m0Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.86, -73.960062, 40.762275, -73.95336, 40.772602, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Gj78Ddr4yNEmLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 13, tzinfo=datetime.timezone.utc), 1, 0.73, -73.959172, 40.783045, -73.969462, 40.785432, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'H3Tc7froJ/zcdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 18, tzinfo=datetime.timezone.utc), 1, 0.65, -73.978232, 40.751145, -73.984658, 40.743057, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'M8xDlzL05Xqocg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 35, tzinfo=datetime.timezone.utc), 1, 0.57, -73.9806, 40.748218, -73.979162, 40.744267, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'GpbgwagoTgvaUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 6, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 2, tzinfo=datetime.timezone.utc), 2, 0.82, -73.989737, 40.734407, -73.979005, 40.736353, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gLcjxts1uDJWSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 51, tzinfo=datetime.timezone.utc), 1, 0.55, -73.986477, 40.759408, -73.980177, 40.754608, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gHrqtW6l0YLp0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 52, tzinfo=datetime.timezone.utc), 1, 1.01, -73.980588, 40.75409, -73.990093, 40.742558, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'A7qgygLrSibrIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 48, tzinfo=datetime.timezone.utc), 1, 0.95, -73.962898, 40.758692, -73.953615, 40.770138, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'vc17qaYgqAd4Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 26, tzinfo=datetime.timezone.utc), 1, 0.99, -74.00834, 40.714247, -74.003185, 40.727735, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'pDhlaJSSA+ZyHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 49, tzinfo=datetime.timezone.utc), 5, 0.74, -73.962782, 40.76334, -73.9734, 40.76388, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'IwAFIk0q080+og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 1, 32, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 1, 37, 19, tzinfo=datetime.timezone.utc), 1, 0.6, -74.002788, 40.723365, -73.99555, 40.730899, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'H+MZgBhT0LD5aA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 9, tzinfo=datetime.timezone.utc), 1, 0.62, -73.973217, 40.764257, -73.977927, 40.75561, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gHX2wnUi0uwvHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.02, -73.958947, 40.769263, -73.951508, 40.77772, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5/OlzHVJsdF3Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.51, -73.986495, 40.742118, -73.993878, 40.746283, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'APDl/3x97axCqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 30, tzinfo=datetime.timezone.utc), 1, 0.65, -73.97947, 40.753658, -73.972085, 40.757003, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'DJmGWlyPv8NnWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 50, tzinfo=datetime.timezone.utc), 1, 1.0, -73.98192, 40.752543, -73.98993, 40.741823, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'IHp4d/m95oCo7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 10, tzinfo=datetime.timezone.utc), 1, 0.34, -73.973855, 40.764605, -73.96841, 40.761923, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'zAGV55zK3LmYTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 3, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989255, 40.757338, -73.995998, 40.75368, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '0UGZG1iaXAUkdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 7, tzinfo=datetime.timezone.utc), 1, 0.86, -74.005548, 40.75155, -73.998122, 40.754772, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'NBoglpvMQbOmPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), 1, 0.52, -73.988403, 40.768997, -73.989068, 40.763182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'f8hgH0VplFpSog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 28, tzinfo=datetime.timezone.utc), 1, 0.76, -74.00566, 40.745137, -73.995307, 40.744965, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '8Dtqzpn6J2IN2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 7, 36, tzinfo=datetime.timezone.utc), 5, 0.77, -73.986473, 40.722435, -73.99974, 40.726967, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'b5hYIWzJkCKj9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 10, tzinfo=datetime.timezone.utc), 1, 0.92, -73.962252, 40.763113, -73.970605, 40.751508, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'QKWv90QJUYcg/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 44, tzinfo=datetime.timezone.utc), 1, 0.8, -73.97527, 40.75537, -73.969498, 40.76118, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5viEm41Dcsh0bA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 25, tzinfo=datetime.timezone.utc), 1, 0.59, -73.972193, 40.781442, -73.96417, 40.777582, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'C/LXFUCT3dVSfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 8, tzinfo=datetime.timezone.utc), 1, 1.01, -73.98239, 40.762603, -73.991627, 40.749883, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'W1gEFvOJh8U/rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 36, tzinfo=datetime.timezone.utc), 1, 0.8, -73.963378, 40.777365, -73.97053, 40.767465, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'XhsiSdK2wNufHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 40, tzinfo=datetime.timezone.utc), 1, 0.6, -73.957698, 40.768383, -73.958535, 40.77462, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gFr0VufGSAASAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 58, tzinfo=datetime.timezone.utc), 1, 0.66, -73.977927, 40.762882, -73.968497, 40.760227, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '2LYtK9/NZLJWDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 57, tzinfo=datetime.timezone.utc), 1, 0.78, -73.992352, 40.737595, -73.995058, 40.728865, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'zeT1Q+a/KwyCGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 51, tzinfo=datetime.timezone.utc), 1, 0.75, -73.978, 40.751827, -73.968037, 40.75221, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'C7A2RDKm/9zw2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 32, tzinfo=datetime.timezone.utc), 5, 0.79, -73.98032, 40.785683, -73.9723, 40.793718, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gO/tz6BFK7f8bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 29, tzinfo=datetime.timezone.utc), 1, 0.84, -73.983932, 40.746388, -73.979017, 40.75569, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'iFP9zBjY7AI3rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 56, tzinfo=datetime.timezone.utc), 3, 0.81, -73.998225, 40.736222, -73.994363, 40.745323, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'p4Ulh+B+7mYzjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 15, tzinfo=datetime.timezone.utc), 1, 0.93, -73.990832, 40.755415, -74.000868, 40.747395, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'GURzg58vqN9ThQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 27, tzinfo=datetime.timezone.utc), 2, 0.57, -74.002847, 40.72815, -73.998542, 40.722863, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'D0yt0Z1jQ2La5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.73, -73.984885, 40.724228, -73.983387, 40.732635, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '/gyPwzMFdvcFmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 16, tzinfo=datetime.timezone.utc), 3, 0.92, -73.989167, 40.747953, -73.978673, 40.751248, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'jzNulxphSMQtdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 28, tzinfo=datetime.timezone.utc), 1, 0.72, -73.977332, 40.751875, -73.976137, 40.744393, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'etByYBnS8iG9fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 31, tzinfo=datetime.timezone.utc), 1, 0.08, -73.988817, 40.755732, -73.98269, 40.767537, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'KY8V6mdVe1ln5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 42, tzinfo=datetime.timezone.utc), 5, 0.71, -74.006337, 40.73942, -73.998643, 40.745182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'GJyQsbwIzQsEig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 14, tzinfo=datetime.timezone.utc), 2, 0.96, -73.995208, 40.74465, -74.003987, 40.733098, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5wqqw0X/+rAa4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 25, tzinfo=datetime.timezone.utc), 5, 0.61, -73.96914, 40.756825, -73.961967, 40.759692, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Xlw2ySCSw9lAiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 23, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978195, 40.729583, -73.993017, 40.735837, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'l8JOCtaGVfu15g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 10, tzinfo=datetime.timezone.utc), 1, 0.82, -73.983183, 40.766263, -73.969457, 40.76092, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Kg7SUtARiw3hWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 20, tzinfo=datetime.timezone.utc), 1, 0.65, -73.961807, 40.770823, -73.96748, 40.763433, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'MXOEK9QmhH7CHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 51, tzinfo=datetime.timezone.utc), 1, 1.04, -73.975795, 40.752172, -73.98551, 40.74134, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '/i2i5FBtFR2SIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.959442, 40.770987, -73.965422, 40.762665, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'EHS4a6WPCX7RKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 16, tzinfo=datetime.timezone.utc), 1, 0.67, -73.982077, 40.749198, -73.987113, 40.75509, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'PEbLLCRBSt9khQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 39, tzinfo=datetime.timezone.utc), 1, 0.81, -73.994935, 40.750098, -74.003758, 40.744008, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '49CY9XYYLIyBVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 46, tzinfo=datetime.timezone.utc), 3, 0.87, -73.98656, 40.771725, -73.98049, 40.782355, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Pl1nMDSwP0woXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 55, tzinfo=datetime.timezone.utc), 1, 0.85, -73.985258, 40.758662, -73.994042, 40.751302, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'm7Lee9+ECU2+cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 16, tzinfo=datetime.timezone.utc), 1, 0.65, -73.978975, 40.77715, -73.985112, 40.769568, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'lJc+wfxJQEnfvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 43, tzinfo=datetime.timezone.utc), 1, 0.57, -74.015717, 40.711713, -74.014392, 40.70704, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'FIIiPTBZeaqyKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 21, tzinfo=datetime.timezone.utc), 1, 0.93, -73.97933, 40.735777, -73.992558, 40.74282, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'FeU9tdgne63UDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 35, tzinfo=datetime.timezone.utc), 1, 0.81, -73.993352, 40.743752, -73.980913, 40.7436, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '9onz1xHxQDDOsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 25, tzinfo=datetime.timezone.utc), 5, 0.59, -73.96322, 40.770662, -73.955935, 40.766478, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5VMpBz9hDxRAOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 36, tzinfo=datetime.timezone.utc), 1, 0.61, -73.98476, 40.742022, -73.985763, 40.735328, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'uCtODqbCK48gXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 27, tzinfo=datetime.timezone.utc), 2, 0.55, -73.96703, 40.772372, -73.958963, 40.771898, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'QmSzcTbHeQBvBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 7, tzinfo=datetime.timezone.utc), 3, 0.58, -73.975712, 40.749608, -73.979743, 40.755255, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'iuY/IR6O3W2wvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 34, tzinfo=datetime.timezone.utc), 1, 0.74, -73.958712, 40.772412, -73.958082, 40.780378, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'RE3rrm+O0ykK7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 14, tzinfo=datetime.timezone.utc), 1, 0.78, -73.976117, 40.752005, -73.978732, 40.742808, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'lChSJUFjYs+ovg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 2, tzinfo=datetime.timezone.utc), 2, 0.89, -73.952932, 40.810383, -73.962795, 40.801618, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'n8GwDOtJyMDOoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 10, tzinfo=datetime.timezone.utc), 1, 0.67, -73.94929, 40.812833, -73.944363, 40.819412, 'Credit', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'FfgW1rmSqs+yZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 32, tzinfo=datetime.timezone.utc), 2, 0.7, -73.98725, 40.779227, -73.978718, 40.782497, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'MeSCWlJ/QJ4+EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 23, tzinfo=datetime.timezone.utc), 1, 0.72, -73.980067, 40.767097, -73.986217, 40.756655, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '9X4pvxz9N6UfAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 6, tzinfo=datetime.timezone.utc), 1, 0.81, -73.990795, 40.755935, -73.978752, 40.756042, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '54nbq8bKmgde9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 30, tzinfo=datetime.timezone.utc), 1, 1.03, -73.959838, 40.77967, -73.96622, 40.789613, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kJUNaFBLIqbbHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 3, tzinfo=datetime.timezone.utc), 1, 0.9, -73.998555, 40.739807, -73.99268, 40.730855, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Sbgy9AhGDf2v+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 23, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980912, 40.762103, -73.966923, 40.761118, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'T8h2GG6l+798Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.71, -74.00774, 40.742807, -74.007002, 40.751358, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'CzTRbjCzKacfnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 21, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 16, 21, tzinfo=datetime.timezone.utc), 1, 0.6, -74.001622, 40.74656, -73.991215, 40.744583, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5ZfHgq0GBXncTQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 36, tzinfo=datetime.timezone.utc), 5, 0.49, -73.975817, 40.75749, -73.968938, 40.760935, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '8JmobsQEa7qS3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 53, tzinfo=datetime.timezone.utc), 1, 0.69, -73.99374, 40.741503, -74.005062, 40.746538, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'IwICIw2d4WWYeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 2, tzinfo=datetime.timezone.utc), 1, 0.64, -73.984972, 40.736263, -73.989435, 40.734217, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'McVbjCG8y4SY8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 58, tzinfo=datetime.timezone.utc), 1, 0.87, -73.955347, 40.77948, -73.952557, 40.789315, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'jn6JYcoUCeqI3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.76, -73.991562, 40.769962, -73.980175, 40.765693, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'TxKHfW/uEDcjvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 5, tzinfo=datetime.timezone.utc), 2, 0.82, -73.95664, 40.778283, -73.964163, 40.76786, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'HT5iSiR2B1/w8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 35, tzinfo=datetime.timezone.utc), 5, 0.3, -73.989467, 40.737358, -73.995127, 40.739188, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'fa0xmLw3cnCy5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 14, tzinfo=datetime.timezone.utc), 1, 0.56, -74.009282, 40.717292, -74.00765, 40.724953, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Q32kUGybTksPkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 55, tzinfo=datetime.timezone.utc), 1, 0.65, -73.952203, 40.772182, -73.955557, 40.764488, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'yCw0YY2Mk4UP+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 39, tzinfo=datetime.timezone.utc), 5, 0.49, -73.979557, 40.777638, -73.982657, 40.771578, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'L/lkp3RobwyQYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 21, tzinfo=datetime.timezone.utc), 3, 0.76, -73.998142, 40.74116, -73.988907, 40.740708, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'RYV94xRJNbuPzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 22, tzinfo=datetime.timezone.utc), 2, 0.69, -74.010678, 40.711053, -74.003803, 40.717115, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VQ4msvDL1rqs8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.84, -73.990862, 40.751237, -74.001103, 40.756865, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VOoXsja8VQoTrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 38, tzinfo=datetime.timezone.utc), 5, 1.07, -73.988747, 40.759122, -73.975638, 40.762575, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'pTkJkZH4TAOlYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 59, tzinfo=datetime.timezone.utc), 1, 0.76, -73.993312, 40.729683, -73.997888, 40.735795, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Yka7S06ZDv/jGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 56, tzinfo=datetime.timezone.utc), 1, 1.08, -73.994065, 40.756835, -73.995305, 40.744942, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'iW4o0smcqA4FjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 30, tzinfo=datetime.timezone.utc), 5, 0.7, -73.98432, 40.756862, -73.978335, 40.752642, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '4j2eIlGOIkblQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 6, tzinfo=datetime.timezone.utc), 4, 0.82, -73.972883, 40.763825, -73.962143, 40.767815, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'y29gCTdjqmwv3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 15, tzinfo=datetime.timezone.utc), 2, 0.42, -73.999615, 40.733562, -73.993735, 40.73445, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '1ZFth7sP3R7sEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 23, tzinfo=datetime.timezone.utc), 1, 0.55, -73.947072, 40.784368, -73.953718, 40.787778, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'aNXkRU5KtIAE+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 28, tzinfo=datetime.timezone.utc), 1, 0.73, -73.96604, 40.759088, -73.971985, 40.75508, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'jlqF/n6oezIHAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 33, tzinfo=datetime.timezone.utc), 5, 0.64, -73.985525, 40.767852, -73.975225, 40.763333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Ic7adEU0m3PSmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 55, tzinfo=datetime.timezone.utc), 1, 0.83, -73.973832, 40.746375, -73.971193, 40.755562, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kqDFw3rKSXNkRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 7, tzinfo=datetime.timezone.utc), 1, 0.29, -73.9644, 40.770702, -73.967102, 40.766922, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '6Ka4JcVxkOTWnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 45, tzinfo=datetime.timezone.utc), 2, 0.96, -73.977467, 40.75234, -73.988005, 40.748175, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'TMafFD4MDBa0lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 48, tzinfo=datetime.timezone.utc), 1, 0.64, -73.994152, 40.751157, -74.0014, 40.756388, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'rTJwlNg/6jNZeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 6, 46, tzinfo=datetime.timezone.utc), 2, 0.85, -73.9908, 40.755905, -73.982, 40.76335, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '/EE15IDLtryVxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), 5, 0.9, -73.97233, 40.767692, -73.986075, 40.755525, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'cT9ycM5TSXV+ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 56, tzinfo=datetime.timezone.utc), 1, 0.75, -73.976207, 40.7446, -73.977682, 40.736788, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Z9RWr+G9zTJ3oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 7, 14, 0, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 5, 40, tzinfo=datetime.timezone.utc), 1, 0.7, -73.964934, 40.766904, -73.963407, 40.774606, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'W0/j/7bwAdrKeA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 40, tzinfo=datetime.timezone.utc), 1, 0.82, -73.985562, 40.741843, -73.991935, 40.749182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'LbcoNvgAqzPRfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 1, tzinfo=datetime.timezone.utc), 5, 0.73, -74.002698, 40.739122, -74.00016, 40.747637, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'mSEUg2504qNB5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 39, tzinfo=datetime.timezone.utc), 1, 0.7, -73.976053, 40.765918, -73.968787, 40.759627, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'l+tJnCATDj785A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 30, tzinfo=datetime.timezone.utc), 1, 0.56, -73.970963, 40.751422, -73.97895, 40.754783, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'PJprsH5I0rL4Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 7, 51, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 54, 49, tzinfo=datetime.timezone.utc), 1, 0.8, -73.953859, 40.766936, -73.961131, 40.756909, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kKIVk/SxbKiMQQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 56, tzinfo=datetime.timezone.utc), 5, 1.01, -73.97585, 40.749057, -73.967808, 40.760535, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'lfZPpvMrIqFwiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 11, tzinfo=datetime.timezone.utc), 5, 0.56, -73.96646, 40.773163, -73.971623, 40.766063, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'KNicWiEvISx+Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 50, tzinfo=datetime.timezone.utc), 1, 0.69, -74.010655, 40.703332, -74.004168, 40.710412, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'LHxLRFo6ivkTsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.6, -73.971885, 40.759963, -73.972272, 40.753333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'I0Q/qDoYFhQqGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 24, tzinfo=datetime.timezone.utc), 5, 0.63, -73.980785, 40.753982, -73.975312, 40.752083, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Mz4n9f8C1C5vwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 23, tzinfo=datetime.timezone.utc), 5, 0.52, -73.986057, 40.740775, -73.992047, 40.744052, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'XYAYpvwUh4oJOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 4, tzinfo=datetime.timezone.utc), 1, 0.89, -73.96252, 40.77569, -73.954527, 40.787093, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'L+ifoSZzHsHarw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 39, tzinfo=datetime.timezone.utc), 5, 0.7, -73.987332, 40.75041, -73.980267, 40.75855, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'nA5cQ7otDYoZ6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 56, tzinfo=datetime.timezone.utc), 5, 1.11, -73.995703, 40.743777, -74.006512, 40.744, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'o8J7q48heDprOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 42, tzinfo=datetime.timezone.utc), 5, 0.76, -73.983145, 40.767957, -73.975485, 40.776643, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VbrYRyJXuuI0KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 6, tzinfo=datetime.timezone.utc), 1, 0.56, -73.975043, 40.75267, -73.967088, 40.752253, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'OkqJd48DTVcc8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 40, tzinfo=datetime.timezone.utc), 2, 0.65, -73.999742, 40.743518, -73.991147, 40.744468, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'aYW83Dus9lVWsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 59, tzinfo=datetime.timezone.utc), 5, 0.62, -73.972687, 40.793342, -73.971125, 40.800228, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'w15mtT9qoJDPnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 45, tzinfo=datetime.timezone.utc), 1, 0.81, -73.946017, 40.781672, -73.956532, 40.780148, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'ACJXmkp1kxT/kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 2, tzinfo=datetime.timezone.utc), 2, 0.67, -73.99827, 40.73535, -74.000767, 40.742107, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'uCz0ERa7cvcFdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 8, tzinfo=datetime.timezone.utc), 1, 0.78, -73.99019, 40.751642, -73.997187, 40.742058, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'gb4YjRB7XhGGkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 0, tzinfo=datetime.timezone.utc), 2, 0.93, -73.977903, 40.745813, -73.973922, 40.7567, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'b3TQ4kNmUjW7YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 36, tzinfo=datetime.timezone.utc), 1, 0.51, -73.984922, 40.753105, -73.991333, 40.750215, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '+Y8rPjhxK/eWBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 5, tzinfo=datetime.timezone.utc), 1, 0.73, -73.995048, 40.76041, -73.99998, 40.754808, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Sw3PlqVoVfBHHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.9, -73.983635, 40.755097, -73.98733, 40.742763, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '2kFNFP7fnFFo8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 6, 38, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 6, 42, 1, tzinfo=datetime.timezone.utc), 1, 0.9, -73.996611, 40.742763, -74.002299, 40.730027, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'KRaqGLwipibYVw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 17, tzinfo=datetime.timezone.utc), 1, 0.85, -73.997895, 40.744922, -74.006732, 40.751358, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'FCnXRWF0iDjkNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 31, tzinfo=datetime.timezone.utc), 1, 0.54, -73.952812, 40.772438, -73.959962, 40.769458, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'JMWuQkiQSjCf5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 54, tzinfo=datetime.timezone.utc), 4, 0.7, -73.951987, 40.773722, -73.960438, 40.777408, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'qdQSb9Yfl+S7ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 23, tzinfo=datetime.timezone.utc), 2, 0.83, -73.972587, 40.746523, -73.97028, 40.754833, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'p4peC4YdFBQYGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 19, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99125, 40.730065, -73.984602, 40.722497, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kdxejiq+A/+gWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 5, tzinfo=datetime.timezone.utc), 1, 0.83, -73.974683, 40.744303, -73.98537, 40.741123, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'bq1mblicQozdzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 24, tzinfo=datetime.timezone.utc), 1, 0.92, -73.973453, 40.758072, -73.973453, 40.758072, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '0W5jQo6PnL39ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 34, tzinfo=datetime.timezone.utc), 1, 0.65, -73.984755, 40.779223, -73.978573, 40.782333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'p9eO8e6jFtC5QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 40, tzinfo=datetime.timezone.utc), 1, 0.61, -74.000515, 40.720827, -73.997113, 40.71472, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'L9Diw/zq26Nq2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 6, tzinfo=datetime.timezone.utc), 1, 0.84, -73.987923, 40.718955, -73.975698, 40.718875, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VclNneUdMsUtJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 59, tzinfo=datetime.timezone.utc), 2, 0.74, -73.960342, 40.766372, -73.96707, 40.758468, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'itFzwXnuIs1WeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 13, tzinfo=datetime.timezone.utc), 5, 0.7, -73.992285, 40.749753, -73.985102, 40.744868, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'f2Z+nclKmzt4Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 40, tzinfo=datetime.timezone.utc), 5, 0.73, -73.977802, 40.761565, -73.969682, 40.762107, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5GT9Y18oH5yZ1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 18, tzinfo=datetime.timezone.utc), 1, 0.61, -73.980318, 40.726328, -73.983145, 40.719085, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '1spEELRhp7R/kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 41, tzinfo=datetime.timezone.utc), 5, 0.75, -73.97524, 40.763543, -73.984545, 40.761093, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '2o9VEnmw30aCEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 51, tzinfo=datetime.timezone.utc), 2, 1.02, -73.951943, 40.76948, -73.959978, 40.757068, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'KD5TnXSZvgx4TA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 23, tzinfo=datetime.timezone.utc), 5, 0.7, 0.0, 0.0, -73.98329, 40.771318, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'eqxJwo02JyCH6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 30, tzinfo=datetime.timezone.utc), 1, 0.76, -73.9512, 40.785142, -73.958748, 40.777632, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'nP9ZAiinrGHbLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 32, tzinfo=datetime.timezone.utc), 5, 1.13, -73.994973, 40.750173, -73.98435, 40.76074, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'MVZ+woezSUC8Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 0, tzinfo=datetime.timezone.utc), 1, 0.76, 0.0, 0.0, -73.97171, 40.758898, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Q569OsV4SFkFSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 21, tzinfo=datetime.timezone.utc), 5, 0.76, -73.969745, 40.754975, -73.961132, 40.76055, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'GFnmJCRieLGhbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 21, tzinfo=datetime.timezone.utc), 1, 0.83, -73.96177, 40.756802, -73.9718, 40.753872, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5ZnuRTxmcyAgWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 35, tzinfo=datetime.timezone.utc), 5, 1.02, -73.902057, 40.763913, -73.902057, 40.763913, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Fg9x9rEjiFEmiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 59, tzinfo=datetime.timezone.utc), 2, 0.74, -73.929867, 40.816918, -73.938153, 40.818265, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'Zuok+RsLXLTjVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), 2, 0.5, -73.973617, 40.76458, -73.977605, 40.75912, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'TnP633ceCgawKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 18, 42, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 46, 12, tzinfo=datetime.timezone.utc), 1, 0.7, -73.989951, 40.736927, -74.000363, 40.737915, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'ysmU7nAgqgDV9g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 33, tzinfo=datetime.timezone.utc), 1, 0.81, -73.957988, 40.774545, -73.953743, 40.782082, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'a/805mKhNo/l8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 40, tzinfo=datetime.timezone.utc), 5, 0.67, -73.937858, 40.804625, -73.938173, 40.797217, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'mLIJ839eWX8GFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 21, tzinfo=datetime.timezone.utc), 5, 0.53, -73.97837, 40.762418, -73.981708, 40.765937, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'nn0ogVEsQxasxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 40, tzinfo=datetime.timezone.utc), 3, 0.72, -73.992693, 40.742973, -73.992562, 40.750938, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'kh8kF8Fy80qJPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 45, tzinfo=datetime.timezone.utc), 1, 0.75, -73.977463, 40.737407, -73.983652, 40.731517, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'bW15oBcnU1/LDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 56, tzinfo=datetime.timezone.utc), 2, 0.79, -73.98916, 40.7215, -73.978197, 40.72077, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'aI7h1J9is3i0mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 37, tzinfo=datetime.timezone.utc), 1, 0.79, -73.999257, 40.759638, -73.995255, 40.752953, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '5PTGlUp9KHawfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 58, tzinfo=datetime.timezone.utc), 2, 0.76, -73.979732, 40.735087, -73.989465, 40.735278, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'H4kVaFRsviRJTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.65, -73.982312, 40.752992, -73.990357, 40.750983, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'JNBIjP/L2Qd6CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 35, tzinfo=datetime.timezone.utc), 2, 0.75, -73.997085, 40.722372, -74.003628, 40.729248, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'n+vGJ5cM7m3N6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 8, tzinfo=datetime.timezone.utc), 1, 0.89, -73.986357, 40.776868, -73.977532, 40.785315, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'oK8kk9zhrhap3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 17, tzinfo=datetime.timezone.utc), 1, 0.82, -73.955057, 40.773285, -73.960322, 40.769637, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'JusYokTdQKb1PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 4, tzinfo=datetime.timezone.utc), 4, 0.78, -73.987612, 40.744443, -73.994913, 40.75018, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'vGTbItlnifQkUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 50, tzinfo=datetime.timezone.utc), 1, 0.85, -73.969422, 40.765945, -73.961012, 40.774887, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'IiWq4RvTRLMvuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 1, tzinfo=datetime.timezone.utc), 3, 0.81, -73.966117, 40.805262, -73.971578, 40.792507, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'qsYmVDzAYtw6bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 4, tzinfo=datetime.timezone.utc), 1, 0.62, -73.979165, 40.753102, -73.97319, 40.761482, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'F+MAov1o9LS/rQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 50, tzinfo=datetime.timezone.utc), 1, 0.64, -73.991795, 40.751443, -74.001593, 40.756087, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', 'VVxrsEJuss/jeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 19, tzinfo=datetime.timezone.utc), 1, 1.05, -73.98986, 40.76713, -73.987477, 40.756703, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685115.6930006', '1XikKwXS8s+tiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 28, tzinfo=datetime.timezone.utc), 3, 0.77, -73.986103, 40.750525, -73.98267, 40.75465, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'uGasfmxeJ+TCmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.85, -74.002457, 40.739808, -73.994727, 40.750395, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '1K1x30UswdYxEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 29, tzinfo=datetime.timezone.utc), 5, 0.88, -73.99801, 40.750145, -74.003755, 40.740115, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '7wcj9tyEjMmSMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 26, tzinfo=datetime.timezone.utc), 4, 0.79, -73.985498, 40.740258, -73.979987, 40.745017, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'U9cLCCMQneVd5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 32, tzinfo=datetime.timezone.utc), 5, 0.99, -73.978173, 40.748665, -73.98823, 40.737858, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'TzDyMV17YGz4qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 49, tzinfo=datetime.timezone.utc), 2, 0.73, -73.962312, 40.776197, -73.954048, 40.7798, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OJI2/YyI5Vcs5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 3, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 3, 5, tzinfo=datetime.timezone.utc), 1, 0.85, -73.984038, 40.729432, -73.980045, 40.739135, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '8qEur/pOuYkfVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.73, -73.986985, 40.729187, -73.978477, 40.730952, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'DHh/uJ0zh6YiSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 51, tzinfo=datetime.timezone.utc), 1, 0.85, -73.95195, 40.782153, -73.961467, 40.781138, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'uHKlnlBr7U0JZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 1, 32, tzinfo=datetime.timezone.utc), 5, 0.99, -73.99112, 40.745353, -73.988723, 40.756055, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'agw/3xhraVsqCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 1, tzinfo=datetime.timezone.utc), 3, 0.81, -74.000508, 40.742365, -74.002625, 40.73549, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '/7HbJCueb3rbHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 31, tzinfo=datetime.timezone.utc), 5, 0.86, -73.958622, 40.768057, -73.965692, 40.758505, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'np12ZLMHZZB8xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 16, tzinfo=datetime.timezone.utc), 1, 0.82, -74.003965, 40.713213, -73.996677, 40.723272, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'IaOa7Z0n2bI/hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 1, 3, tzinfo=datetime.timezone.utc), 5, 0.98, -73.983862, 40.727087, -73.979572, 40.737417, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'VO4RFu+Djvd3gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 57, tzinfo=datetime.timezone.utc), 3, 1.01, -74.000545, 40.742468, -73.991285, 40.755117, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '3/nz0nI3R9VviQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 18, tzinfo=datetime.timezone.utc), 3, 0.65, -73.978835, 40.771097, -73.978175, 40.751745, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '6bwxuVw2+M1DtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 50, tzinfo=datetime.timezone.utc), 1, 0.78, -73.982743, 40.739283, -73.988565, 40.736975, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'CC4i7gUCmySPwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 52, tzinfo=datetime.timezone.utc), 5, 0.66, -73.974677, 40.787342, -73.973317, 40.794448, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'SlL34S8anBQ00g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 43, tzinfo=datetime.timezone.utc), 1, 0.66, -73.956608, 40.775198, -73.961338, 40.776793, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '1kEbftBNRZo3Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 55, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989777, 40.725805, -73.987322, 40.720413, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '4ew+f7Vfsrtmyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 28, tzinfo=datetime.timezone.utc), 2, 0.94, -73.994898, 40.745485, -73.994317, 40.752747, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'TRuywgsAFoOf9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 0, tzinfo=datetime.timezone.utc), 1, 0.7, -73.951103, 40.724, -73.954797, 40.733457, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'MMOQwfBcyRIyeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.83, -73.955852, 40.776137, -73.960333, 40.767148, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Em7NMDxt7S5FNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 42, tzinfo=datetime.timezone.utc), 1, 1.05, -73.964668, 40.764208, -73.953263, 40.772535, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'wdLkyMQpdoihiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.96, -73.956295, 40.773563, -73.95072, 40.781945, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'AvsDjYokUTRpbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 12, tzinfo=datetime.timezone.utc), 2, 0.62, -73.98624, 40.732735, -73.990228, 40.72574, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'VRLrMRcdTd6duA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 43, tzinfo=datetime.timezone.utc), 2, 0.64, -73.916783, 40.757955, -73.914023, 40.76511, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'iLtOxvlxTy3JjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 18, tzinfo=datetime.timezone.utc), 4, 0.94, -73.969875, 40.75314, -73.978433, 40.741255, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'vfNDiDRkO4BnEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 23, tzinfo=datetime.timezone.utc), 3, 0.51, -73.999167, 40.73927, -73.991895, 40.73524, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'wjPBa4V5sEuYAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 40, tzinfo=datetime.timezone.utc), 1, 0.98, -73.998565, 40.724607, -74.007062, 40.712648, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'rOD+FwGCQOpoyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 7, tzinfo=datetime.timezone.utc), 3, 0.67, -73.997152, 40.722168, -73.99192, 40.72993, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'dDiy98CeApmYnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 20, tzinfo=datetime.timezone.utc), 1, 0.83, -73.983467, 40.770948, -73.991103, 40.760447, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Lxn1DIeBUS063Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 37, tzinfo=datetime.timezone.utc), 5, 0.67, -74.003875, 40.73778, -74.006725, 40.743993, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OdH9WI56ytnj1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 28, tzinfo=datetime.timezone.utc), 2, 0.82, -73.990827, 40.751647, -73.996738, 40.742482, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '2sthZqIfERjsvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 18, tzinfo=datetime.timezone.utc), 2, 0.76, -73.980138, 40.754132, -73.991437, 40.758958, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'nsC/VSlNIi8Q3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 25, tzinfo=datetime.timezone.utc), 1, 0.78, -73.966797, 40.803907, -73.961213, 40.81343, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '/KOu90aodudjqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 27, tzinfo=datetime.timezone.utc), 5, 0.69, -73.985228, 40.744668, -73.991353, 40.75012, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '6TYoih+GPqzksQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 26, tzinfo=datetime.timezone.utc), 4, 0.63, -73.985325, 40.759905, -73.976373, 40.756767, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OsTIBQ5UENVLRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 57, tzinfo=datetime.timezone.utc), 1, 0.87, -73.983808, 40.743165, -73.983808, 40.743165, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'kQhE20jAkaRghw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 53, tzinfo=datetime.timezone.utc), 1, 0.77, -73.979363, 40.74251, -73.981018, 40.74847, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'iROp89cZ9aI9nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 16, tzinfo=datetime.timezone.utc), 5, 0.88, -73.993457, 40.741573, -74.002578, 40.733838, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'xe3E9cIKnHqyIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 4, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 4, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.988808, 40.726898, -74.002015, 40.728165, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'b3VvZ+Pk19kBTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 5, 51, tzinfo=datetime.timezone.utc), 1, 0.95, -73.998862, 40.73979, -73.999562, 40.728575, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Mkj+CLY0TbRnAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 5, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 5, 35, tzinfo=datetime.timezone.utc), 1, 0.87, -73.966488, 40.764847, -73.96312, 40.774875, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'VapEjgOmGXcVyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 59, tzinfo=datetime.timezone.utc), 5, 0.86, -73.963003, 40.674525, -73.971295, 40.671322, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Gixu/V6BjBalFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 47, tzinfo=datetime.timezone.utc), 2, 0.69, -74.006665, 40.718472, -74.009027, 40.710975, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'GNo69So4iDNkyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 13, tzinfo=datetime.timezone.utc), 2, 0.08, -73.983827, 40.75306, -73.990828, 40.750422, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'MN8w9sZ/tR8ZKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 54, tzinfo=datetime.timezone.utc), 1, 0.76, -73.982207, 40.731228, -73.991485, 40.727402, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'C+N4tPtTex4H+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.97, -73.987112, 40.750228, -73.978265, 40.762287, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'S5OBtU7uGbGcgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 59, tzinfo=datetime.timezone.utc), 2, 0.86, -74.00413, 40.731068, -73.99636, 40.737108, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'ZtxD702n73IiiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 23, tzinfo=datetime.timezone.utc), 5, 0.52, -73.98093, 40.74438, -73.98877, 40.748437, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'RFFKk49QF3xZGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 57, tzinfo=datetime.timezone.utc), 2, 0.72, -73.988837, 40.721482, -73.978895, 40.723898, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'COaFj1ljtSZ5TA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 23, tzinfo=datetime.timezone.utc), 1, 0.71, -73.985248, 40.747722, -73.978207, 40.75199, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'rnch8ufL2sX0gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 6, tzinfo=datetime.timezone.utc), 1, 0.54, -73.993568, 40.67267, -73.987283, 40.668087, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'hMKCNAKbl54BwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 42, tzinfo=datetime.timezone.utc), 1, 0.78, -73.974042, 40.76253, -73.983827, 40.763307, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'oCvksyeJD8LbEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 32, tzinfo=datetime.timezone.utc), 1, 1.0, -73.961235, 40.780992, -73.974627, 40.783205, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'V6ab2fFjeGoymg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 5, 46, tzinfo=datetime.timezone.utc), 2, 0.69, -73.954497, 40.7782, -73.944825, 40.778983, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'aNLmIwPHgnFwbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 6, tzinfo=datetime.timezone.utc), 1, 0.78, -73.981843, 40.75253, -73.987002, 40.74269, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'nnV1pmXO1+3Hwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 33, tzinfo=datetime.timezone.utc), 3, 0.83, -73.964758, 40.772687, -73.953997, 40.775455, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'izzAaw2FAtQJWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.01, -73.94805, 40.782823, -73.941197, 40.790135, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '8YHB2lNROd6xQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 24, tzinfo=datetime.timezone.utc), 5, 0.86, -74.0114, 40.710043, -74.009935, 40.720072, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'YNM9htFv8DGR4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 40, tzinfo=datetime.timezone.utc), 5, 0.9, -73.982073, 40.739885, -73.988555, 40.74787, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'cD5SNsJpqxuRmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 3, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 3, 8, tzinfo=datetime.timezone.utc), 1, 0.71, -73.972037, 40.765713, -73.973885, 40.76428, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '3KREnULyo5fYNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 4, tzinfo=datetime.timezone.utc), 5, 1.02, -73.955707, 40.772718, -73.96596, 40.762418, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'G6NJa3VcXA8yBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 26, tzinfo=datetime.timezone.utc), 2, 0.83, -73.957517, 40.785455, -73.949185, 40.778462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Jg5W0YDxdx0v6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 36, tzinfo=datetime.timezone.utc), 1, 0.95, -73.990365, 40.719088, -73.982837, 40.730802, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OA4PUdSf6hGlbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 35, tzinfo=datetime.timezone.utc), 1, 0.69, -74.000963, 40.73177, -73.999237, 40.727678, 'Credit', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'pt5XdYQovHF4HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 7, tzinfo=datetime.timezone.utc), 3, 0.77, -73.958453, 40.815738, -73.965427, 40.805998, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'w+B4Hlu4jwOjHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 11, tzinfo=datetime.timezone.utc), 1, 0.75, -73.967968, 40.765302, -73.957547, 40.765688, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'RvAnxX0yGFLhvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 25, tzinfo=datetime.timezone.utc), 5, 0.92, -73.967635, 40.791345, -73.975142, 40.794787, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '+q+Kc0nWyKeeag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 8, tzinfo=datetime.timezone.utc), 1, 0.85, -73.985628, 40.727077, -73.992785, 40.731568, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Y+xXXlWegzKeTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 58, tzinfo=datetime.timezone.utc), 3, 0.77, -73.978527, 40.762917, -73.986457, 40.756878, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Gn7PgggGdY4ZzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 37, tzinfo=datetime.timezone.utc), 2, 0.67, -74.00151, 40.739382, -73.994547, 40.741178, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'gKiQfQeiGgA/1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 31, tzinfo=datetime.timezone.utc), 1, 0.92, -73.99689, 40.737247, -74.008127, 40.744692, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'Ub3fH5OBv6supw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 4, tzinfo=datetime.timezone.utc), 2, 0.65, -73.985093, 40.738742, -73.985898, 40.745405, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '//eKV1yHhEfoGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 25, tzinfo=datetime.timezone.utc), 4, 0.79, -74.00267, 40.73388, -74.005282, 40.740048, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '1FganDpU57SvDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 49, tzinfo=datetime.timezone.utc), 1, 0.89, -74.007192, 40.743345, -74.000413, 40.735215, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'DWkjPluVCFb6Ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 10, tzinfo=datetime.timezone.utc), 2, 0.86, -73.953322, 40.782562, -73.956035, 40.772785, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '4BhIxfoeqklmQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 7, tzinfo=datetime.timezone.utc), 1, 1.13, -73.962243, 40.762025, -73.948495, 40.774363, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'fBfE4swNMJ787g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 48, tzinfo=datetime.timezone.utc), 1, 0.77, -73.961758, 40.76954, -73.953785, 40.769603, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '5iqjGHvJK7bbPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 52, tzinfo=datetime.timezone.utc), 1, 0.83, -73.991757, 40.735275, -74.00558, 40.741037, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '3Pec0W2NNTR+ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 54, tzinfo=datetime.timezone.utc), 2, 0.83, -73.97591, 40.755248, -73.970278, 40.763432, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'FTTI0v9gzwX9Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 44, tzinfo=datetime.timezone.utc), 1, 0.77, -73.982828, 40.76105, -73.991422, 40.750325, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'TnUy7lTYdDrdpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 25, tzinfo=datetime.timezone.utc), 3, 1.02, -73.977548, 40.754867, -73.965135, 40.760147, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '+pXEtU9TcyfQSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 25, tzinfo=datetime.timezone.utc), 1, 0.81, -73.975207, 40.75601, -73.989057, 40.757862, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'NWZjF/aiMLNe2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 13, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989877, 40.734275, -73.983262, 40.734462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'D4bqTBdKpIvqZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 12, tzinfo=datetime.timezone.utc), 1, 0.89, -74.000728, 40.746188, -73.986398, 40.740273, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'BMJQHwUHqmDK9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 10, tzinfo=datetime.timezone.utc), 1, 0.89, -74.004493, 40.72412, -74.006213, 40.734268, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'zgt7P37NDyJVlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 8, tzinfo=datetime.timezone.utc), 3, 0.77, -73.986635, 40.76201, -73.992072, 40.769462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '16EDJY979gBMJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.89, -73.989585, 40.736008, -73.99869, 40.72976, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'kD7GWBoBq4Jzwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 37, tzinfo=datetime.timezone.utc), 4, 0.87, -73.981283, 40.763002, -73.978535, 40.75581, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'uSc55CFBVHl1IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), 2, 0.66, -73.980037, 40.775397, -73.988387, 40.779355, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '69pZ3imrpk9Liw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 6, tzinfo=datetime.timezone.utc), 1, 0.8, -73.979772, 40.759662, -73.991698, 40.748937, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OG3xWVsnr6UNFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 27, tzinfo=datetime.timezone.utc), 1, 0.68, -73.991867, 40.72719, -73.98245, 40.727937, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'YnvAqEfY6/EBqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.85, -73.994612, 40.726042, -73.98878, 40.736852, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '2LOIDlZLrS428g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.72, -74.005515, 40.741102, -74.002188, 40.745475, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'JzwKqA/j5SHHVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 31, tzinfo=datetime.timezone.utc), 1, 0.95, -73.983212, 40.767033, -73.991557, 40.757922, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OrX2WzYDS45h8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 17, tzinfo=datetime.timezone.utc), 5, 0.83, -74.004378, 40.742327, -74.00212, 40.75062, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'XTwW5/0G1P4BJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 17, tzinfo=datetime.timezone.utc), 1, 0.83, -73.992683, 40.742925, -74.003377, 40.748118, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '+iTnjeza2eZkdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 26, tzinfo=datetime.timezone.utc), 1, 0.82, -74.004523, 40.717788, -74.008088, 40.71734, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'N+vXQmqgp35D1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 15, tzinfo=datetime.timezone.utc), 3, 0.94, -73.98341, 40.738655, -73.980545, 40.746745, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'ZeLtGYQo5b7I5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 0, tzinfo=datetime.timezone.utc), 5, 0.79, -73.991873, 40.726187, -74.000585, 40.733242, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'yjsYaG2BFVbAZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 38, tzinfo=datetime.timezone.utc), 2, 1.0, -73.960233, 40.76648, -73.948802, 40.773513, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'yqkNIBMEwcYvTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 17, tzinfo=datetime.timezone.utc), 2, 0.79, -73.999485, 40.733572, -74.008735, 40.738222, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'IOuW/P7UbWjwFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 31, tzinfo=datetime.timezone.utc), 3, 0.56, -73.987567, 40.749667, -73.979405, 40.745598, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'qdjX17kJu7uV7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 59, tzinfo=datetime.timezone.utc), 1, 0.59, -73.991475, 40.727102, -73.998433, 40.724567, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '37RDICJZOsQ8sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 23, tzinfo=datetime.timezone.utc), 3, 0.85, -73.985535, 40.754708, -73.980077, 40.746638, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'rqv3k+lOOMlylA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 1, tzinfo=datetime.timezone.utc), 4, 0.87, -73.988993, 40.759913, -73.98064, 40.770833, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'bhubbcKFvz9q9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 43, tzinfo=datetime.timezone.utc), 1, 0.89, -73.97584, 40.760047, -73.983757, 40.752037, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'iWvpATaH92adEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 51, tzinfo=datetime.timezone.utc), 1, 0.87, -73.982877, 40.767515, -73.986017, 40.757758, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '1xMXxuvkUK1iDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 15, tzinfo=datetime.timezone.utc), 1, 0.71, -73.981593, 40.744388, -73.98682, 40.73636, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'BsiDNqsl6IeuVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 18, tzinfo=datetime.timezone.utc), 2, 0.74, -73.952447, 40.781245, -73.955032, 40.77331, 'Credit', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'OPoVtX9JQemHEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 26, tzinfo=datetime.timezone.utc), 1, 0.89, -73.993867, 40.746482, -73.998028, 40.736117, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'WblFHoWzmrDapA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 21, tzinfo=datetime.timezone.utc), 5, 0.67, -73.985193, 40.738875, -73.986797, 40.731462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'nx09PQQYDPhyjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 4, tzinfo=datetime.timezone.utc), 1, 0.56, -73.984507, 40.748303, -73.975097, 40.744432, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'RtHK3DlHQgJsTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 12, tzinfo=datetime.timezone.utc), 1, 0.66, -73.952797, 40.780568, -73.9513, 40.787615, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', '6dHlI29T3Jwemg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.53, -74.000467, 40.727223, -73.99979, 40.73347, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685115.6930006', 'WBrQ6G8bUkgzeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.57, -73.97007, 40.75727, -73.965395, 40.763517, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'CHIvsxZnr6xH3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 12, tzinfo=datetime.timezone.utc), 1, 0.51, -73.957393, 40.78218, -73.950063, 40.7801, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'KGizKq4CdtUY+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 46, tzinfo=datetime.timezone.utc), 1, 0.66, -73.982987, 40.766413, -73.982897, 40.77508, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'UD9Q2ciGhvKZPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978445, 40.741232, -73.98667, 40.72992, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '0H3BBglh/JDNCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 32, tzinfo=datetime.timezone.utc), 1, 0.88, -74.003607, 40.722438, -73.99936, 40.733815, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '307C574f3Q1W4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 15, tzinfo=datetime.timezone.utc), 1, 0.94, -73.98374, 40.740938, -73.992565, 40.732945, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'AhnzWpmQXigq2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 28, tzinfo=datetime.timezone.utc), 2, 0.6, -73.965163, 40.759375, -73.972945, 40.757758, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'kr/GrS4nboZfBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 28, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99006, 40.761852, -74.00014, 40.761623, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'WdXYX/Pxs+jqHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.59, -73.996523, 40.753125, -73.993792, 40.747392, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'b3WD8oBFcvLrUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 33, tzinfo=datetime.timezone.utc), 1, 0.83, -73.937298, 40.759707, -73.937298, 40.759707, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'i2ePzEZc3n5waA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 35, tzinfo=datetime.timezone.utc), 2, 0.6, -74.004223, 40.725577, -73.998457, 40.724735, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Jb93lRBXgQ0Bgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 19, tzinfo=datetime.timezone.utc), 1, 0.88, -74.0021, 40.740435, -73.99517, 40.749795, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'C5DrxpEZZ/m2eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 56, tzinfo=datetime.timezone.utc), 2, 0.61, -73.9634, 40.758583, -73.970495, 40.754957, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'c90wONsvwryoBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 47, tzinfo=datetime.timezone.utc), 4, 0.76, -73.991922, 40.744035, -73.993417, 40.751598, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'iC84dMo0uejODw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 24, tzinfo=datetime.timezone.utc), 2, 0.91, -73.942118, 40.75281, -73.941575, 40.755292, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'a9xGnz2pD0tsoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 48, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99233, 40.729157, -73.999302, 40.725105, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'HD52eoEiS9YM5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 48, tzinfo=datetime.timezone.utc), 4, 0.78, -73.981445, 40.755507, -73.972987, 40.761252, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'jaennTcdxdJRuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 16, tzinfo=datetime.timezone.utc), 1, 0.73, -74.004732, 40.730985, -73.99835, 40.724775, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Wk4B6E0agqUVTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.45, -73.981683, 40.768095, -73.985688, 40.767045, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'ijxgNMAttxkNqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 53, tzinfo=datetime.timezone.utc), 5, 0.66, -73.97698, 40.750032, -73.971223, 40.74491, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'SRh2787Cxt9wxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 35, tzinfo=datetime.timezone.utc), 5, 0.7, -73.989237, 40.76883, -73.986707, 40.763365, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'jl4WhW7jrSOFcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 11, tzinfo=datetime.timezone.utc), 1, 0.89, -73.982833, 40.751237, -73.988797, 40.742147, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Y9b5HB50xq3b0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 28, tzinfo=datetime.timezone.utc), 1, 0.94, -73.994655, 40.755957, -74.004158, 40.7466, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'eEXkEut446ho/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 50, tzinfo=datetime.timezone.utc), 1, 0.62, -73.980335, 40.743815, -73.981412, 40.75117, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'hWq0bsSdSae80w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.95, -73.984042, 40.725317, -73.98932, 40.734235, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'dvSyvLKM0NuQww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 57, tzinfo=datetime.timezone.utc), 5, 1.03, -73.985272, 40.778473, -73.977487, 40.787873, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'wxHJbNvbSIWMig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 26, tzinfo=datetime.timezone.utc), 5, 0.91, -73.990915, 40.734898, -73.998517, 40.723182, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 's6sENl2fDubBIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 16, tzinfo=datetime.timezone.utc), 1, 0.87, -74.022657, 40.790788, -74.020958, 40.787367, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'mQ2tOWxKVkXvlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 3, tzinfo=datetime.timezone.utc), 1, 0.91, -73.953097, 40.783087, -73.961672, 40.772742, 'Credit', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'hpsr+RVCpIDoIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 11, tzinfo=datetime.timezone.utc), 1, 0.79, -73.988138, 40.74912, -73.98621, 40.758283, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'RezAsRy1lqFaiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), 2, 0.49, -73.97504, 40.756715, -73.966023, 40.754045, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'NpkK6N70KS4BuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 41, tzinfo=datetime.timezone.utc), 1, 0.64, -73.954313, 40.781008, -73.962282, 40.778882, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'i9yJpDZipCEjUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 38, tzinfo=datetime.timezone.utc), 1, 0.72, -73.98209, 40.778547, -73.982247, 40.76835, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '4CEQpRtthH6aBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 40, tzinfo=datetime.timezone.utc), 2, 0.81, -73.980553, 40.780118, -73.975068, 40.78997, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '4nqXPXRXZiNqwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 19, tzinfo=datetime.timezone.utc), 3, 0.77, -73.96249, 40.758823, -73.954877, 40.767192, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'wTLBVHxOYs0Rdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 11, tzinfo=datetime.timezone.utc), 5, 0.76, -73.97572, 40.755592, -73.968867, 40.762027, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'vpOLrNpKodrf7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 1, tzinfo=datetime.timezone.utc), 1, 0.57, -73.99639, 40.73174, -74.005927, 40.733082, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'hLlYKGWoMkz+EA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 6, tzinfo=datetime.timezone.utc), 1, 0.48, -73.974645, 40.790778, -73.970303, 40.796945, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'ARROe9jii97uAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 35, tzinfo=datetime.timezone.utc), 1, 0.65, -73.98624, 40.726247, -73.99299, 40.727955, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'i9V/CRJmWqZ44g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 55, tzinfo=datetime.timezone.utc), 1, 0.57, -73.966093, 40.764885, -73.966307, 40.758875, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'bb2KOn/IUYd9rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.05, -74.005097, 40.719143, -73.999827, 40.733417, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '5X0+KXbodAJStg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 29, tzinfo=datetime.timezone.utc), 1, 0.49, -73.992885, 40.724357, -73.990373, 40.730872, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'UY7AbwhBzcTM3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 59, tzinfo=datetime.timezone.utc), 5, 0.55, -73.957813, 40.78217, -73.951622, 40.783675, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'b6M3+MUu70z8Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.85, -73.966393, 40.753392, -73.95773, 40.761375, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'C3qQEg02V3yf3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), 5, 0.66, -73.98812, 40.737768, -73.996908, 40.74257, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'LXKvfH5uhxTlOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 5, tzinfo=datetime.timezone.utc), 5, 0.74, -73.980957, 40.779243, -73.984492, 40.770028, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'HYyWyOpyC+FIjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 30, tzinfo=datetime.timezone.utc), 1, 0.44, -73.993713, 40.73577, -73.993713, 40.73577, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'faJw61KytUhvGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 24, tzinfo=datetime.timezone.utc), 1, 0.5, -73.959963, 40.77341, -73.952313, 40.76976, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'vIiSvR20HT1m2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 52, tzinfo=datetime.timezone.utc), 5, 0.76, -73.988127, 40.779587, -73.982368, 40.773053, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'NX+NQVUrk2Zi8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 17, tzinfo=datetime.timezone.utc), 1, 0.77, -73.959647, 40.776885, -73.96633, 40.767813, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '/cs1ySzU47v8dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 6, tzinfo=datetime.timezone.utc), 1, 0.65, -73.982907, 40.756443, -73.979543, 40.749673, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Q9GFUI7yhrBuBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 30, tzinfo=datetime.timezone.utc), 1, 0.72, -73.972637, 40.762522, -73.968298, 40.768977, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'AXd3S5/Rt+C77w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 17, tzinfo=datetime.timezone.utc), 1, 0.94, -73.994207, 40.757293, -73.994338, 40.760798, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'CqCKvvqQb8PMkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.89, -73.971438, 40.797862, -73.967035, 40.789353, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'nN/UY9YHPv6eSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 50, tzinfo=datetime.timezone.utc), 2, 0.82, -73.972572, 40.755845, -73.962597, 40.755577, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '03pyQFmkwY/aXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 25, tzinfo=datetime.timezone.utc), 2, 0.79, -73.984053, 40.764397, -73.982207, 40.773978, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'B0pW+1m44Ek9VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 31, tzinfo=datetime.timezone.utc), 5, 0.61, -73.94747, 40.779972, -73.955457, 40.779993, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'hpcVrnIZaQYlSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99506, 40.755182, -73.996457, 40.744427, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Arkz1HA5ea7AAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), 1, 0.99, -73.97812, 40.752558, -73.984202, 40.740322, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'xinpbbiID7Uo8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 16, tzinfo=datetime.timezone.utc), 1, 1.01, -73.953485, 40.786908, -73.959177, 40.776813, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '6HIAdF2JUbBUMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 41, tzinfo=datetime.timezone.utc), 2, 0.64, -73.988165, 40.761527, -73.98075, 40.76548, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Sd+YtAIlhRlTeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 10, tzinfo=datetime.timezone.utc), 3, 0.71, -73.9535, 40.777143, -73.954663, 40.769633, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'MlZmjJhNjf58iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 59, tzinfo=datetime.timezone.utc), 2, 0.97, -73.95805, 40.776238, -73.967558, 40.76528, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Rn47kvVReIVeJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 58, tzinfo=datetime.timezone.utc), 1, 0.66, -73.974845, 40.787842, -73.96909, 40.79601, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', '1vutzcmEd4iQCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 12, tzinfo=datetime.timezone.utc), 5, 0.85, -73.989703, 40.741715, -73.991257, 40.750533, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'HfMwepDfeA0uzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 10, tzinfo=datetime.timezone.utc), 1, 0.79, -73.974835, 40.752462, -73.982605, 40.7427, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'r9x3N3AJoX8+Zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 21, tzinfo=datetime.timezone.utc), 5, 0.86, -73.961187, 40.76916, -73.95809, 40.77884, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685115.6930006', 'Wq8Crc/AqyH7Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 50, tzinfo=datetime.timezone.utc), 1, 1.19, -73.962228, 40.779167, -73.968903, 40.763553, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '+Pq/MIJCktBayA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 45, tzinfo=datetime.timezone.utc), 3, 1.33, -73.970562, 40.789992, -73.982075, 40.777078, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '7iqf/gISHqm7zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.35, -73.992078, 40.759283, -73.978987, 40.759467, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '8BAQbj9w/idiYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 17, tzinfo=datetime.timezone.utc), 2, 1.58, -73.98601, 40.752072, -73.968783, 40.764107, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Z2JJ01yIH7VV2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 5, tzinfo=datetime.timezone.utc), 1, 1.2, -73.966488, 40.753403, -73.972882, 40.764858, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'mVY288TlQavp7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 40, tzinfo=datetime.timezone.utc), 5, 1.17, -73.991773, 40.726523, -73.984812, 40.715342, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'giOcwB7tIMxuCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.25, -74.000625, 40.720992, -74.013595, 40.707848, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ExMGAgm1GwO3xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 28, tzinfo=datetime.timezone.utc), 4, 1.52, -74.006408, 40.737402, -74.00703, 40.753647, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'DArVCw6Qd2YbHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.08, -73.97295, 40.763572, -73.985823, 40.756567, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '40tY/xtHFrpazA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 13, 3, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 27, 23, tzinfo=datetime.timezone.utc), 2, 1.3, -74.006522, 40.739361, -74.005957, 40.727126, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IDX4bl40eHfOoQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 15, tzinfo=datetime.timezone.utc), 1, 1.08, -73.963455, 40.774415, -73.952757, 40.768325, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'o9g0l0+2XLVwfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 56, tzinfo=datetime.timezone.utc), 5, 1.0, -73.990783, 40.734718, -74.00205, 40.738265, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ZluUTMaFmUCedg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.59, -73.95763, 40.779695, -73.961715, 40.76198, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'akyYpOJ2UfT9BQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 28, tzinfo=datetime.timezone.utc), 4, 1.85, -73.978765, 40.772163, -73.956965, 40.77853, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'tCvP3qx7OfFd6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 38, tzinfo=datetime.timezone.utc), 2, 1.6, -74.003335, 40.730018, -73.991632, 40.74897, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'qxsZmP0bIsAq4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 57, tzinfo=datetime.timezone.utc), 2, 1.45, -73.969855, 40.789658, -73.964422, 40.77473, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '2guQit/rLmB0Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 38, tzinfo=datetime.timezone.utc), 5, 2.0, -73.979653, 40.786377, -73.98178, 40.779833, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'A+pJYt2BoX47vA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 35, tzinfo=datetime.timezone.utc), 5, 1.42, -73.99081, 40.739747, -74.004933, 40.729862, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'HXdl4c0Dcgg7mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 14, tzinfo=datetime.timezone.utc), 1, 1.49, -73.986253, 40.75204, -73.985212, 40.768072, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'CKQe9TqhFZQaYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 37, tzinfo=datetime.timezone.utc), 2, 1.61, -73.977732, 40.750187, -73.99273, 40.732967, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'DKFmTwYl+th1RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 46, tzinfo=datetime.timezone.utc), 1, 1.57, -73.95974, 40.76266, -73.956538, 40.77988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ohtArVo2QlTe0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.03, -73.977362, 40.77443, -73.979753, 40.763037, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'qFEEs7m5w05OCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 27, tzinfo=datetime.timezone.utc), 2, 1.26, -73.98951, 40.752852, -74.004603, 40.744555, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'BHPWHdCgaRdTdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 11, tzinfo=datetime.timezone.utc), 1, 0.7, -73.969093, 40.755978, -73.969093, 40.755978, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ap8kBUVJONv5NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.2, -73.983108, 40.74916, -73.976802, 40.758683, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'tY1yqQJLaKizwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 38, tzinfo=datetime.timezone.utc), 5, 0.97, -73.985687, 40.755927, -73.97684, 40.756358, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '0Y654OTMPO+xFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.42, -73.974485, 40.778243, -73.977658, 40.792393, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'MB6lr3I0RzuSpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 31, tzinfo=datetime.timezone.utc), 2, 1.49, -73.983742, 40.765475, -73.965067, 40.772335, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'jHJ5lNiqeYnIgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 42, tzinfo=datetime.timezone.utc), 5, 0.98, -73.969812, 40.759597, -73.963365, 40.77142, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ESyjgWPz2wdtzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 47, tzinfo=datetime.timezone.utc), 1, 1.78, -73.97175, 40.762627, -73.955193, 40.785988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'GBSzz04/QsJ93g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 33, tzinfo=datetime.timezone.utc), 1, 1.58, -73.963012, 40.772142, -73.974277, 40.753407, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'v09Zg7XUPfn3lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 9, tzinfo=datetime.timezone.utc), 1, 1.26, -73.977867, 40.783757, -73.958677, 40.77476, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'eYLhf7jp6NrUSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 17, tzinfo=datetime.timezone.utc), 5, 0.62, -73.971488, 40.766098, -73.978557, 40.761147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'aKhdI61RZCvGfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 20, tzinfo=datetime.timezone.utc), 6, 0.69, -73.955302, 40.773563, -73.958453, 40.780025, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'MbQMl8dSVTzD8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 23, tzinfo=datetime.timezone.utc), 5, 1.43, -73.992233, 40.758982, -74.005495, 40.741108, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'X2cJRLiQZ8a56Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 21, tzinfo=datetime.timezone.utc), 2, 1.67, -73.974838, 40.753362, -73.96321, 40.774183, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'bUgz+jF89uALcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 52, tzinfo=datetime.timezone.utc), 2, 1.28, -73.972718, 40.756428, -73.986332, 40.749128, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'WsSK+lUHaGy8pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 0, tzinfo=datetime.timezone.utc), 1, 1.36, -74.005242, 40.736535, -74.009813, 40.720175, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'lyaECCE4dlpdlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 10, tzinfo=datetime.timezone.utc), 6, 1.13, -73.97286, 40.75878, -73.981627, 40.745013, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'U9KKZC6TJY6ePA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 26, tzinfo=datetime.timezone.utc), 1, 1.44, -73.979933, 40.757908, -73.96436, 40.748643, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'RS2kcGKIdu36HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 51, tzinfo=datetime.timezone.utc), 6, 0.92, -73.980557, 40.753557, -73.976673, 40.76516, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'O/Z7vlKemAKOAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 0, tzinfo=datetime.timezone.utc), 5, 2.02, -73.997655, 40.736262, -73.979527, 40.76103, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '9pQs5rHDaZ5z4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 9, tzinfo=datetime.timezone.utc), 2, 1.74, -73.970515, 40.793762, -73.978323, 40.773988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '/VAlJUedEI9M/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 15, tzinfo=datetime.timezone.utc), 2, 1.44, -73.994288, 40.746182, -73.985205, 40.760367, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Qr7lTpTiNW7OMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 11, tzinfo=datetime.timezone.utc), 5, 1.48, -73.91249, 40.746018, -73.891078, 40.746152, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'i2akabeA0BMAmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 45, tzinfo=datetime.timezone.utc), 1, 1.18, -73.977788, 40.762187, -73.984663, 40.748357, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'veVCn7FdeoxKfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 45, tzinfo=datetime.timezone.utc), 1, 1.02, -73.989927, 40.734828, -74.005313, 40.738757, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IAP8ds+gnWZz8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 45, tzinfo=datetime.timezone.utc), 1, 1.5, -73.953628, 40.76731, -73.968808, 40.757562, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'HureF1x/qFmcJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 36, tzinfo=datetime.timezone.utc), 5, 1.67, -73.96174, 40.776583, -73.968158, 40.79119, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '3L7jl31OINoMww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 40, tzinfo=datetime.timezone.utc), 1, 1.28, -74.00083, 40.731645, -74.009837, 40.720108, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'V7DUVvEwYIgLXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 41, tzinfo=datetime.timezone.utc), 1, 1.8, -73.970553, 40.752695, -73.986498, 40.730125, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'KAvZoC6cBnsplQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 16, 4, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 13, 18, tzinfo=datetime.timezone.utc), 1, 1.2, -73.953965, 40.779213, -73.955141, 40.767579, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '2++fUg4C5Qz+JA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 48, tzinfo=datetime.timezone.utc), 5, 1.52, -73.996417, 40.744463, -73.991273, 40.728408, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'yP3isAr2Qk8ZiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 29, tzinfo=datetime.timezone.utc), 3, 1.47, -74.01501, 40.70923, -74.00991, 40.703327, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'T8WTHbsgmLiG0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 40, tzinfo=datetime.timezone.utc), 2, 1.73, -73.97753, 40.763908, -73.961327, 40.779418, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Q4ZVPIL2+YA1tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 1, tzinfo=datetime.timezone.utc), 1, 1.21, -74.008145, 40.744903, -73.99132, 40.745248, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'AANUbVk88qiA6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 27, tzinfo=datetime.timezone.utc), 3, 1.12, -73.974243, 40.784825, -73.96721, 40.798398, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'LdINLjDy/2kGAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.32, -73.974042, 40.783998, -73.98617, 40.776657, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Cvi7hoHH7rEWzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 19, tzinfo=datetime.timezone.utc), 5, 1.0, -73.982503, 40.745553, -73.976463, 40.757, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'p74m9jktlv6emQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 24, tzinfo=datetime.timezone.utc), 1, 1.19, -73.976438, 40.765008, -73.989905, 40.758618, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'qhoXzcgOSVDy/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.18, -73.980543, 40.763555, -73.991773, 40.749693, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '/ptpcbeYvqh8dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 52, tzinfo=datetime.timezone.utc), 2, 1.53, -73.996155, 40.74331, -74.002463, 40.724875, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'CHKTuRnQdaW92A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), 1, 1.66, -73.962412, 40.767483, -73.952008, 40.781237, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '767gl5t2p5xz0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 53, tzinfo=datetime.timezone.utc), 5, 0.92, -73.96811, 40.767103, -73.967212, 40.75758, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'yc8BM+FilfMG3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 8, 25, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 34, 59, tzinfo=datetime.timezone.utc), 1, 1.2, -73.989402, 40.767882, -73.970083, 40.759715, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'JqFKxmzDzD26TQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 8, tzinfo=datetime.timezone.utc), 5, 1.72, -73.976397, 40.743997, -73.989503, 40.7231, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'H0uZ5of7+1WlWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 29, tzinfo=datetime.timezone.utc), 1, 1.83, -73.990593, 40.755905, -73.970565, 40.767488, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'QMux7IqXDeK3/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 35, tzinfo=datetime.timezone.utc), 2, 1.29, -73.998345, 40.740627, -74.009773, 40.737702, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '0ANVdLb7Yndp6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 41, tzinfo=datetime.timezone.utc), 1, 0.83, -73.97332, 40.763122, -73.979145, 40.75869, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'vM55w51CtJHjoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.43, -73.98858, 40.74826, -74.001257, 40.756378, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '7C4OJIh0U8ej7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.58, -73.955067, 40.783277, -73.973218, 40.790197, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '9Ndw9lWLLTg5Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.37, -73.977198, 40.789858, -73.976823, 40.775202, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '5q5XSlDN5hv2YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 22, tzinfo=datetime.timezone.utc), 1, 1.65, -74.000728, 40.747338, -73.980445, 40.75194, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'd8Uk/Xi8FqhclQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 12, tzinfo=datetime.timezone.utc), 1, 1.36, -73.971593, 40.7649, -73.980202, 40.749972, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'MURVkOQY1WPHjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 31, tzinfo=datetime.timezone.utc), 1, 1.2, -73.987552, 40.760255, -73.96826, 40.754763, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'j749gx0W3eUENw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 17, tzinfo=datetime.timezone.utc), 2, 1.09, -73.976398, 40.752352, -73.991943, 40.74965, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '70tXrT3TIQ+XwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 24, tzinfo=datetime.timezone.utc), 5, 1.02, -73.990237, 40.756202, -73.97844, 40.76221, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'DvFAhW0M8dYV7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 54, tzinfo=datetime.timezone.utc), 1, 0.95, -74.002717, 40.714252, -74.011072, 40.708223, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'rlzOPfw/VMsNzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 1, tzinfo=datetime.timezone.utc), 5, 1.48, -73.96294, 40.766385, -73.958933, 40.777727, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IfW8C2P9hx/qMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 58, tzinfo=datetime.timezone.utc), 5, 1.37, -73.975688, 40.776397, -73.962247, 40.779327, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '7e/pTqQUkeiHBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 41, tzinfo=datetime.timezone.utc), 2, 1.31, -73.958543, 40.76967, -73.959302, 40.783072, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'JRTMXt5maeA33Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 38, tzinfo=datetime.timezone.utc), 1, 1.05, -74.011177, 40.710572, -74.000233, 40.72304, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '7JTjCnaHvsYQFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.79, -73.959128, 40.76411, -73.969343, 40.761235, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ALzmqeSWUimUlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 6, tzinfo=datetime.timezone.utc), 1, 0.48, -73.967755, 40.753852, -73.973825, 40.75774, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'DlEY1QRF293rZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 31, tzinfo=datetime.timezone.utc), 5, 1.25, -73.982322, 40.774317, -73.992393, 40.75822, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '25EQBNGB5x8DSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 48, tzinfo=datetime.timezone.utc), 1, 1.55, -73.963892, 40.757348, -73.963632, 40.77369, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'rvVkVb+WXpQfDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 32, tzinfo=datetime.timezone.utc), 1, 1.17, -73.846198, 40.72614, -73.850797, 40.710705, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'f51bcLQ/ZgH4WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.93, -73.994018, 40.751203, -73.983173, 40.75628, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'CInLwh/Y2chh2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 20, tzinfo=datetime.timezone.utc), 1, 1.37, -73.961282, 40.777632, -73.980328, 40.783248, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'mPY38kiFaIxrYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 10, tzinfo=datetime.timezone.utc), 1, 1.46, -73.989085, 40.74226, -73.9852, 40.727683, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'sXSOMK0WxH2p9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 43, tzinfo=datetime.timezone.utc), 2, 1.35, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'm5KSsDb/JC104w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 29, tzinfo=datetime.timezone.utc), 5, 1.43, -73.97526, 40.757687, -73.961982, 40.776487, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '8UyLgaLAmq2RfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 8, tzinfo=datetime.timezone.utc), 1, 1.43, -73.987758, 40.719915, -73.988902, 40.736698, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'J9YymWWOaTob+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.26, -73.978003, 40.750358, -73.993998, 40.743302, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'bJHhZ1meWyyhZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 25, tzinfo=datetime.timezone.utc), 2, 1.13, -73.9869, 40.745178, -73.976523, 40.756423, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '8rvxtimrkFV3LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 55, tzinfo=datetime.timezone.utc), 1, 1.27, -73.981433, 40.784033, -73.986747, 40.76997, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'HseaFYiYiiJWLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 55, tzinfo=datetime.timezone.utc), 1, 1.81, -73.98258, 40.739493, -73.966182, 40.762403, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'cTAFveGa959tAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 52, tzinfo=datetime.timezone.utc), 1, 1.48, -73.98006, 40.726957, -74.000492, 40.730592, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'YPQjCvjFoXQHyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 7, tzinfo=datetime.timezone.utc), 1, 0.74, -73.9714, 40.763215, -73.976247, 40.7553, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'gb/XDL29h6O97A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 22, tzinfo=datetime.timezone.utc), 2, 1.3, -73.957055, 40.759315, -73.961698, 40.773665, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'BSn+u5nxh2YVwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 37, tzinfo=datetime.timezone.utc), 2, 1.32, -73.952887, 40.772165, -73.967725, 40.762843, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'WUG5sXdn4eGA2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 51, tzinfo=datetime.timezone.utc), 1, 1.21, -73.978722, 40.752957, -73.974717, 40.765015, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'r4A30IudUPpPCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 6, tzinfo=datetime.timezone.utc), 2, 1.5, -73.968388, 40.770785, -73.972578, 40.780977, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '8gvRt7l3SlnTGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 2, tzinfo=datetime.timezone.utc), 5, 1.42, -73.97811, 40.729493, -73.982262, 40.742485, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'w5kDFc4EszV8BQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 35, tzinfo=datetime.timezone.utc), 1, 1.31, -73.977327, 40.748835, -73.994827, 40.745177, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'UN8oLQiLnZGOtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 23, tzinfo=datetime.timezone.utc), 5, 0.64, -74.004467, 40.757972, -74.011113, 40.762843, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Ohzn7oTNaJeyjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 2, tzinfo=datetime.timezone.utc), 2, 1.72, -73.965478, 40.771132, -73.98779, 40.778715, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'rfMER0RAyhvguA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 47, tzinfo=datetime.timezone.utc), 2, 1.0, -73.98879, 40.76857, -73.996727, 40.76082, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Klwr1bnJSWv+bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 37, tzinfo=datetime.timezone.utc), 1, 1.43, -73.982103, 40.768743, -73.965403, 40.771923, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'L3DYgic1VAuEyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 41, tzinfo=datetime.timezone.utc), 5, 1.15, -73.983075, 40.76094, -73.984195, 40.748392, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'j/DA/hMjCV0ZeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 36, tzinfo=datetime.timezone.utc), 2, 1.54, -73.976155, 40.776352, -73.97863, 40.760835, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 't6JjPUOId5SwrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.73, -73.97784, 40.773702, -73.973253, 40.756718, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'INSIKc9fj0W01Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 49, tzinfo=datetime.timezone.utc), 1, 1.09, -73.991065, 40.75082, -73.992405, 40.758095, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '4678UGgHZj4qfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 8, tzinfo=datetime.timezone.utc), 3, 1.9, -73.97089, 40.783242, -73.974623, 40.762013, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'WK3hZLV541R/yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.17, -73.987035, 40.733282, -73.972465, 40.753682, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ShLlgIvQzv5ODA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 21, tzinfo=datetime.timezone.utc), 5, 0.63, -73.991312, 40.751743, -73.985708, 40.752745, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'yOOR11UxH5YJew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), 5, 0.93, -73.984663, 40.739487, -73.986507, 40.745938, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'vM47GnvD5yybOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 49, tzinfo=datetime.timezone.utc), 1, 1.61, -73.9871, 40.771203, -73.971145, 40.78775, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '18QKM80Ho3n8WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 2, 1.75, -73.988645, 40.774045, -74.002553, 40.752738, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'QjXY762UTSng8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 53, tzinfo=datetime.timezone.utc), 5, 1.13, -73.987593, 40.741343, -73.989333, 40.752732, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '7rsj1K2L/56sRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 12, tzinfo=datetime.timezone.utc), 1, 1.25, -73.999188, 40.72467, -73.988332, 40.737755, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '3CmpgiQGD1L2qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 0, tzinfo=datetime.timezone.utc), 1, 1.43, -73.976138, 40.776132, -73.979625, 40.789747, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '9v9ylZTI/TE5cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 38, tzinfo=datetime.timezone.utc), 2, 1.63, -73.955782, 40.779603, -73.96642, 40.793308, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'gcj5xwErBtqNDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 9, tzinfo=datetime.timezone.utc), 1, 1.99, -73.975157, 40.75147, -73.954112, 40.778463, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'q+5WcFH2YRPrCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 57, tzinfo=datetime.timezone.utc), 5, 1.3, -73.979677, 40.759565, -73.977945, 40.773365, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '8nNGMJBUhaOnkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 51, tzinfo=datetime.timezone.utc), 2, 2.0, -73.97019, 40.752263, -73.985548, 40.727692, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'T6jvJOyHG9Qqig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 41, tzinfo=datetime.timezone.utc), 1, 1.22, -73.914092, 40.646062, -73.914565, 40.642617, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '0ofULC1pnJBJTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.95, -73.984423, 40.769552, -73.978382, 40.761275, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'oDuMmYNZs4IT5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 23, tzinfo=datetime.timezone.utc), 4, 1.07, -73.986023, 40.746728, -73.978638, 40.75161, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'XTswV6hDM6cltQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 4, tzinfo=datetime.timezone.utc), 1, 1.53, -73.966473, 40.764825, -73.95715, 40.783025, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'utNhvjqb71y5rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 57, tzinfo=datetime.timezone.utc), 1, 1.3, -73.996852, 40.742048, -73.981113, 40.750402, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'tXWhzV6k6zX2cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 11, tzinfo=datetime.timezone.utc), 1, 1.65, -73.966513, 40.75732, -73.982963, 40.738868, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'xCtaRu3XBY1d7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 19, tzinfo=datetime.timezone.utc), 1, 1.2, -73.998627, 40.734975, -74.009887, 40.735002, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'TIr8po0MZ/09nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 9, tzinfo=datetime.timezone.utc), 2, 1.41, -73.96594, 40.762427, -73.955605, 40.773602, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'V4352TKrKsPQ3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 10, tzinfo=datetime.timezone.utc), 1, 1.18, -73.955223, 40.764612, -73.952995, 40.776242, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'hsLhEaMnG91qAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 36, tzinfo=datetime.timezone.utc), 2, 1.45, -74.001485, 40.729678, -74.001853, 40.729655, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'XzakMuneiiAn8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 10, tzinfo=datetime.timezone.utc), 3, 1.43, -73.987793, 40.754097, -73.98224, 40.771323, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'OJLaILJiA/zGNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 57, tzinfo=datetime.timezone.utc), 2, 1.7, -73.997897, 40.761352, -74.00712, 40.739977, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'mXkhC/s6KpLikw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 32, tzinfo=datetime.timezone.utc), 1, 1.49, -73.976055, 40.744665, -73.97277, 40.760405, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '1FaVcSxy33i2CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 56, tzinfo=datetime.timezone.utc), 1, 1.74, -73.994478, 40.740743, -73.979432, 40.761873, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '77g2dMklYeakzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.96, -73.968252, 40.761065, -73.956423, 40.76324, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'AWRZtViiBbiLDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 6, tzinfo=datetime.timezone.utc), 1, 1.63, -73.967318, 40.792733, -73.953782, 40.779147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'L2yGxMZxdirW7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.86, -73.971245, 40.792747, -73.952873, 40.810812, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'u8fT9qSWZ9r2VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 41, tzinfo=datetime.timezone.utc), 5, 1.99, -73.987557, 40.73273, -73.973053, 40.755637, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'rS0raJTIPHppOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 54, tzinfo=datetime.timezone.utc), 1, 1.38, -73.978765, 40.75839, -73.99955, 40.76129, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'vpfcUGhKeTYR/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 6, tzinfo=datetime.timezone.utc), 5, 1.18, -74.006283, 40.734163, -73.99034, 40.731608, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'GZ4EBx4/9DRfRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 15, tzinfo=datetime.timezone.utc), 1, 1.05, -73.916858, 40.781932, -73.921137, 40.77948, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'C306SiIdBFmdWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 47, tzinfo=datetime.timezone.utc), 1, 1.46, -73.954343, 40.774378, -73.974095, 40.778842, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'RmqMLULU0CVBGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 10, tzinfo=datetime.timezone.utc), 2, 1.36, -73.960673, 40.773312, -73.943205, 40.777385, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Kg6NsbCZXuxaqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 58, tzinfo=datetime.timezone.utc), 1, 1.24, -73.968465, 40.768045, -73.9811, 40.766273, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'RuYIBDJY6lziYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 32, tzinfo=datetime.timezone.utc), 1, 0.91, -73.972223, 40.761288, -73.980745, 40.749353, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'HdPxid0P/z0rlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 41, tzinfo=datetime.timezone.utc), 1, 1.15, -73.982547, 40.769822, -73.978635, 40.78519, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'dvQ1gFc+MAbzDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 27, tzinfo=datetime.timezone.utc), 5, 1.81, -73.9849, 40.747573, -73.999202, 40.72785, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '2QNrbRdZWhNA+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 32, tzinfo=datetime.timezone.utc), 5, 1.95, -73.90166, 40.750958, -73.93595, 40.750113, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'AWJMveMstrcFNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 17, tzinfo=datetime.timezone.utc), 1, 1.62, -73.951845, 40.782108, -73.9684, 40.769735, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'fGoWd8Ux4qTnWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 42, tzinfo=datetime.timezone.utc), 1, 1.93, -73.979203, 40.781987, -73.961433, 40.80616, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'j5egqzBpIcu+NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.45, -73.952363, 40.798183, -73.953907, 40.782117, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ax4ZpXYQnI6fgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.35, -73.964517, 40.773122, -73.952302, 40.790015, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ESn/tVrpRXaUJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 29, tzinfo=datetime.timezone.utc), 1, 1.79, -74.001377, 40.74745, -73.978863, 40.752602, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'C0j3posOKyij1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 56, tzinfo=datetime.timezone.utc), 5, 1.43, -73.977415, 40.779313, -73.966932, 40.766715, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'm/Ue4KQfJ3kdFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 15, tzinfo=datetime.timezone.utc), 5, 1.39, -73.995142, 40.749907, -73.997123, 40.764473, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '4xhFDkWxWvd7uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), 1, 1.02, -73.991675, 40.750545, -74.000737, 40.757608, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '0ApREifgqbRvSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 59, tzinfo=datetime.timezone.utc), 1, 0.56, -74.000593, 40.737353, -74.000037, 40.743063, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IaeI+o9d25w3CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 28, tzinfo=datetime.timezone.utc), 1, 1.1, -73.966115, 40.765478, -73.95194, 40.769452, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'P8kg4L8KcRkW9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 0, tzinfo=datetime.timezone.utc), 1, 1.26, -73.975337, 40.752377, -73.976828, 40.739172, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'R4DVBT9Kruviag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.34, -73.979348, 40.74362, -73.969955, 40.758923, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'lQXCTyKdRr4gxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 25, tzinfo=datetime.timezone.utc), 5, 1.23, -73.973912, 40.763202, -73.980938, 40.748625, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'zkI5FrkiIPy/zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 6, tzinfo=datetime.timezone.utc), 2, 0.61, -73.984603, 40.769592, -73.982445, 40.763247, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'YWwdUDa3T0qGSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 44, tzinfo=datetime.timezone.utc), 1, 1.24, -73.958215, 40.76867, -73.971805, 40.759798, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '4PlRKQCpViyUeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.1, -74.011088, 40.715827, -74.012603, 40.704215, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'mK7gB7w3eGJl5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 22, 6, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 14, 5, tzinfo=datetime.timezone.utc), 1, 1.5, -73.993193, 40.741597, -73.974577, 40.746762, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'fsww+ctunjgkhQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 46, tzinfo=datetime.timezone.utc), 1, 1.24, -73.999393, 40.761512, -73.995198, 40.750048, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Nid4nvyhaa1+2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978548, 40.762108, -73.99114, 40.750653, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'jP5d5TFHIVD80A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 11, tzinfo=datetime.timezone.utc), 1, 1.31, -73.982797, 40.761908, -74.000572, 40.75817, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '+Eikg2bcYGvUuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 19, tzinfo=datetime.timezone.utc), 1, 2.08, -73.983968, 40.737547, -73.96268, 40.758192, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '9NlW2xEY7aX5KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 53, tzinfo=datetime.timezone.utc), 1, 1.58, -73.982228, 40.775158, -73.969585, 40.785052, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'EpO3iEO2suCCcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 1, tzinfo=datetime.timezone.utc), 2, 1.39, -73.986253, 40.746152, -73.97536, 40.754895, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'lu0L1061k2JC4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 7, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 8, 6, tzinfo=datetime.timezone.utc), 1, 1.57, -73.971132, 40.763773, -73.953975, 40.77482, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'TuPbPr6mmVxo/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.01, -73.98173, 40.767217, -73.979165, 40.757183, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'BZ02hRkC19P93A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 27, tzinfo=datetime.timezone.utc), 1, 0.04, -73.973923, 40.636088, -73.973143, 40.636105, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'xBFkFWgi690NoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 11, tzinfo=datetime.timezone.utc), 5, 1.61, -73.984885, 40.779363, -73.966057, 40.789655, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'Gmm9EH6omLwEsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 28, tzinfo=datetime.timezone.utc), 5, 1.25, -73.992805, 40.753193, -73.9735, 40.74731, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'bvQYgGBLEpH/kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.0, -73.977087, 40.751892, -73.99063, 40.750737, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'HJ86eoQZzp3UbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 55, tzinfo=datetime.timezone.utc), 1, 0.9, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'MJpE/Yk5r03+Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 33, tzinfo=datetime.timezone.utc), 2, 1.04, -73.9815, 40.759637, -73.978105, 40.754673, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '5eLXpDH3XIoCyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 3, tzinfo=datetime.timezone.utc), 2, 1.21, -73.974682, 40.75861, -73.982832, 40.769068, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IzOPtIQYPY7ZQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 56, tzinfo=datetime.timezone.utc), 5, 1.13, -74.009317, 40.712983, -73.997405, 40.723147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'IJS9C2htEcgZpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 17, tzinfo=datetime.timezone.utc), 5, 1.79, -74.014155, 40.706937, -74.005773, 40.728672, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'VlVQx3SwHRJ98w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 42, tzinfo=datetime.timezone.utc), 5, 1.06, -73.967372, 40.752445, -73.979403, 40.749973, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '0BY/VhqRkXfGQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 51, tzinfo=datetime.timezone.utc), 1, 1.44, -73.951468, 40.76985, -73.967427, 40.758645, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'zF1QT6o8E+IaUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.67, -73.962123, 40.77919, -73.970163, 40.759898, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ul5/tXt6EHnriw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 41, tzinfo=datetime.timezone.utc), 1, 1.35, -73.9794, 40.735438, -73.981825, 40.748888, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'SvXslvxtQGCUVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 42, tzinfo=datetime.timezone.utc), 4, 1.96, -73.994025, 40.761638, -73.975115, 40.783373, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'UmjjKelfAPUOzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 2, tzinfo=datetime.timezone.utc), 5, 1.02, -73.97281, 40.759477, -73.978497, 40.74759, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '2YaTgGN/DovtCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 25, tzinfo=datetime.timezone.utc), 1, 1.36, -73.956955, 40.780522, -73.97778, 40.786992, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '1rzl6ML6UPecnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 29, tzinfo=datetime.timezone.utc), 1, 1.12, -73.987803, 40.750172, -73.974188, 40.756052, 'Credit', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'KfyYge+DIvHdTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 54, tzinfo=datetime.timezone.utc), 5, 1.67, -73.874428, 40.773958, -73.872005, 40.75364, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'OBEf1b1bQsCJxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 43, tzinfo=datetime.timezone.utc), 3, 1.27, -73.983682, 40.766763, -73.966398, 40.766317, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'XQywWn0FZSKRpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 39, tzinfo=datetime.timezone.utc), 1, 1.03, -73.9859, 40.756855, -73.995927, 40.744017, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'fFfcl3LX1XCOxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 4, tzinfo=datetime.timezone.utc), 3, 1.41, -73.985182, 40.762927, -73.99256, 40.75093, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'CRjAN58+08DZ5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.57, -73.991082, 40.750775, -73.979005, 40.764223, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'bpr+jPPQQCLoTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 56, tzinfo=datetime.timezone.utc), 2, 0.96, -73.969183, 40.766565, -73.975207, 40.754417, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'ZlioLGEfNYWy8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 15, tzinfo=datetime.timezone.utc), 1, 1.65, -73.969597, 40.764748, -73.952967, 40.783557, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'w4op0iZtQ+LZIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 36, tzinfo=datetime.timezone.utc), 5, 1.44, -73.995687, 40.73282, -73.987482, 40.719993, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'GgpZ9e0w3wVSkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 43, tzinfo=datetime.timezone.utc), 5, 1.16, -74.006773, 40.730255, -73.997937, 40.744195, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'cRcKfxwKWA//oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 1, tzinfo=datetime.timezone.utc), 1, 1.32, -73.980375, 40.748428, -73.978257, 40.763263, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', 'zhCCbYB2I6s4cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 3, tzinfo=datetime.timezone.utc), 3, 1.24, -73.959653, 40.766702, -73.97845, 40.772732, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '5pEuLEssFUmeCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 57, tzinfo=datetime.timezone.utc), 1, 1.11, -73.96027, 40.76207, -73.97132, 40.751187, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685115.6930006', '1dUR5KAcHVedEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 12, tzinfo=datetime.timezone.utc), 1, 1.55, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'u3VZ1bkPI+0FiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 10, tzinfo=datetime.timezone.utc), 2, 1.42, -73.988135, 40.734637, -73.991797, 40.748867, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'KwA52H/hIVpLGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 7, tzinfo=datetime.timezone.utc), 1, 1.35, -73.99874, 40.739817, -73.989298, 40.72661, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'YOQKTvPNCH3IlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 21, tzinfo=datetime.timezone.utc), 1, 1.75, -73.998713, 40.744972, -73.990142, 40.762382, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'tn7JEvswmKWIIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 9, tzinfo=datetime.timezone.utc), 5, 1.68, -73.989565, 40.743583, -73.994475, 40.72455, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'C2lQ6RF5MeKbYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 1, 1.59, -73.993955, 40.751667, -73.996127, 40.76743, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'nUCX7RF/pHtC/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 5, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 5, 54, tzinfo=datetime.timezone.utc), 1, 2.02, -73.957182, 40.78585, -73.967983, 40.762805, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'UaQGn3aoneVK/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 13, tzinfo=datetime.timezone.utc), 5, 1.57, -73.9555, 40.77638, -73.96483, 40.791753, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '/D6RAmKapoUUyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 49, tzinfo=datetime.timezone.utc), 1, 1.45, -74.006642, 40.744292, -73.989982, 40.754675, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'oNBXdffTrdfKjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 6, tzinfo=datetime.timezone.utc), 1, 1.51, -74.003878, 40.723978, -73.991973, 40.741838, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'AqlhciGAl5Uj/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 43, tzinfo=datetime.timezone.utc), 5, 1.83, -73.992358, 40.734632, -73.99183, 40.754565, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'kcPAwBAOppplZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 0, tzinfo=datetime.timezone.utc), 1, 1.24, -73.988718, 40.72302, -74.005525, 40.724443, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '1kbo/W9i1yXpiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 57, tzinfo=datetime.timezone.utc), 4, 1.59, -74.012787, 40.708128, -73.99467, 40.718645, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'v50UHchygF5etQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 57, tzinfo=datetime.timezone.utc), 1, 1.51, -73.979297, 40.762067, -73.979818, 40.7462, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'sLS9NBalD2WfhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 35, tzinfo=datetime.timezone.utc), 5, 1.6, -73.982245, 40.763775, -73.982727, 40.781938, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '2HZ04vjqzvn/PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 37, tzinfo=datetime.timezone.utc), 2, 1.27, -74.008015, 40.73868, -74.005642, 40.741088, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'WN7VI8aO1hObGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 43, tzinfo=datetime.timezone.utc), 2, 1.69, -73.958898, 40.626288, -73.96802, 40.631853, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'OAyd7Ik92xlzJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 15, tzinfo=datetime.timezone.utc), 1, 1.81, -74.00884, 40.718162, -73.990942, 40.727997, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'vdhIrRisxpzljg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 26, tzinfo=datetime.timezone.utc), 2, 1.4, -74.005238, 40.736043, -73.986625, 40.735458, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '1ldCz9rC7ECKeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 43, tzinfo=datetime.timezone.utc), 2, 1.52, -74.001298, 40.735863, -73.981437, 40.738158, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'PHFz23QZElKlZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 33, tzinfo=datetime.timezone.utc), 2, 1.68, -73.972722, 40.755753, -73.957217, 40.774397, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'iz2TWgq1j2wuJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.65, -73.85387, 40.855478, -73.854832, 40.848188, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'm9WBPoWvEgA04A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 22, tzinfo=datetime.timezone.utc), 2, 1.64, -74.002307, 40.730652, -73.982745, 40.739225, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '/N6MJZ5FxIzCWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 22, tzinfo=datetime.timezone.utc), 1, 1.27, -74.001288, 40.731105, -73.983108, 40.730518, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'aRc95FO8r4ko8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 41, tzinfo=datetime.timezone.utc), 5, 1.75, -74.006445, 40.739738, -73.984583, 40.745925, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'mqdGdLZjqgrhhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 18, tzinfo=datetime.timezone.utc), 3, 1.39, -73.98203, 40.766313, -73.989942, 40.749565, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'O3h8gxukxSqCmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 45, tzinfo=datetime.timezone.utc), 2, 1.81, -73.981717, 40.757383, -73.961095, 40.76998, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'm8pOx9y7eE2Lww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 15, tzinfo=datetime.timezone.utc), 1, 1.34, -73.990547, 40.745672, -74.002705, 40.733397, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'nF8lOMzIvYlgzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 1, tzinfo=datetime.timezone.utc), 1, 1.72, -73.932987, 40.848827, -73.949235, 40.841, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'J9MjbDPlVq0drQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 28, tzinfo=datetime.timezone.utc), 2, 1.83, -73.996308, 40.73799, -73.97672, 40.751608, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'hTY+IldeBdFgFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 42, tzinfo=datetime.timezone.utc), 3, 1.49, -74.011138, 40.708375, -73.994912, 40.721293, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'EPk/CkDOlcpNzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 46, tzinfo=datetime.timezone.utc), 1, 1.47, -73.97858, 40.74508, -73.989795, 40.732675, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'vsLRgY9equ3qsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 13, tzinfo=datetime.timezone.utc), 1, 1.52, -73.982467, 40.775558, -73.967978, 40.761377, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'vst6Dg2ES0LeqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 38, tzinfo=datetime.timezone.utc), 2, 1.3, -73.977852, 40.752373, -73.983843, 40.762907, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'lOhfnGsIFjjopw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 21, tzinfo=datetime.timezone.utc), 3, 1.52, -73.977268, 40.784445, -73.954165, 40.772948, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'jQmB9ue+9VvMqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.32, -73.977458, 40.784233, -73.98248, 40.768252, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'tkfR9Idb66BCCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 51, tzinfo=datetime.timezone.utc), 1, 1.36, -73.987257, 40.763593, -73.979505, 40.752782, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 's8q291ggRi679w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 3, tzinfo=datetime.timezone.utc), 1, 1.63, -74.005452, 40.740848, -74.002505, 40.728892, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'V6Tso9cMYI2tzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 36, tzinfo=datetime.timezone.utc), 2, 1.59, -73.964237, 40.77466, -73.97132, 40.75567, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '6hjN5gpdl7spyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 1, 4, tzinfo=datetime.timezone.utc), 1, 1.85, -73.844303, 40.721398, -73.834288, 40.7053, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'p6e3M1h3/MlRbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.64, -73.979322, 40.761543, -73.99036, 40.746945, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ZuS0PXaLgh/NiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 53, tzinfo=datetime.timezone.utc), 1, 1.98, -73.950385, 40.775702, -73.935938, 40.798767, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ujMryjLdVdKXlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 14, tzinfo=datetime.timezone.utc), 5, 1.13, -73.990217, 40.75671, -73.979883, 40.749863, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'jxhthUmbhq0tlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 45, tzinfo=datetime.timezone.utc), 1, 1.82, -73.988683, 40.757828, -73.989183, 40.778978, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Z0iOhPixHluXVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 4, tzinfo=datetime.timezone.utc), 1, 0.93, -74.005333, 40.719895, -73.994343, 40.722453, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'J7DkguFhZC7ldg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 19, tzinfo=datetime.timezone.utc), 1, 1.8, -73.99144, 40.739858, -73.970802, 40.75252, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '+zHQyZf6t8gH+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 3, tzinfo=datetime.timezone.utc), 5, 1.18, -73.98335, 40.739113, -73.979835, 40.727035, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'KMJ8UGBzSon5Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 20, tzinfo=datetime.timezone.utc), 1, 1.6, -73.999948, 40.743405, -73.989185, 40.762412, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'FmFESmYTKsxndg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 39, tzinfo=datetime.timezone.utc), 5, 1.38, -73.958068, 40.769333, -73.971518, 40.757173, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'P4XFJ47ripoo4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 22, tzinfo=datetime.timezone.utc), 2, 1.47, -73.984425, 40.743075, -73.988817, 40.757677, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'NXz0aZC46TodUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.22, -73.972953, 40.755798, -73.99031, 40.756763, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '6MMPOKY3rG4tPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 21, tzinfo=datetime.timezone.utc), 1, 1.57, -73.984118, 40.729222, -73.991883, 40.744168, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'zKodjLIO3rtwcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 3, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 3, 18, tzinfo=datetime.timezone.utc), 1, 1.39, -73.952753, 40.77676, -73.968102, 40.787332, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'BzO6HztyekrAQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 38, tzinfo=datetime.timezone.utc), 3, 1.51, -74.002485, 40.750037, -73.985497, 40.760607, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'zP8Ca6t6nJJniA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 50, tzinfo=datetime.timezone.utc), 5, 1.53, -73.987178, 40.742182, -73.972198, 40.756002, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '1dVCYmTxjWXpdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 46, tzinfo=datetime.timezone.utc), 1, 1.11, -73.96957, 40.785487, -73.952827, 40.776555, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'RpvEYQ27DWx5Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 1, tzinfo=datetime.timezone.utc), 2, 1.43, -73.986177, 40.762055, -73.981042, 40.780865, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'j7ttMhZYhp0WQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 2, tzinfo=datetime.timezone.utc), 1, 1.29, -73.999047, 40.739463, -73.990977, 40.731428, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Q4k3h86QjZTdEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 10, tzinfo=datetime.timezone.utc), 5, 0.96, -73.998533, 40.738992, -73.98854, 40.736395, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Yi4bIPfYlLUJxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 31, tzinfo=datetime.timezone.utc), 5, 1.68, -73.985565, 40.747937, -73.972208, 40.749553, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'XUzRRSHf2E7Inw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 9, tzinfo=datetime.timezone.utc), 2, 1.57, -73.982715, 40.76751, -73.979162, 40.786942, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'UIIsZITO8O26jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 9, tzinfo=datetime.timezone.utc), 1, 1.72, -73.975985, 40.757187, -73.958238, 40.77024, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Z0qKoxYDwxB2Qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 5, tzinfo=datetime.timezone.utc), 1, 1.71, -73.971478, 40.776342, -73.96024, 40.773218, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'LLp2w6GGyMntnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 48, tzinfo=datetime.timezone.utc), 1, 1.43, -73.960117, 40.817775, -73.961312, 40.801472, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '7wKbX8DtUotyew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 11, tzinfo=datetime.timezone.utc), 1, 1.61, -74.018432, 40.754898, -74.015872, 40.752957, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'IMPfznUbsUmIVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 17, tzinfo=datetime.timezone.utc), 2, 1.29, -73.965033, 40.755287, -73.982385, 40.765192, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'B1f6iCqNUo5s+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 52, tzinfo=datetime.timezone.utc), 3, 1.52, -74.000803, 40.732175, -73.992563, 40.720628, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'XFI52xeh0OMpBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 42, tzinfo=datetime.timezone.utc), 4, 1.5, -73.986852, 40.695993, -73.967067, 40.684083, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'd5qiZEpul2fz/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 21, tzinfo=datetime.timezone.utc), 1, 1.36, -73.971338, 40.67576, -73.986503, 40.688527, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ZShWnIaW/aWGNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), 1, 1.5, -73.981892, 40.771698, -73.969817, 40.785673, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '2Q8gsUR2n8EmNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 48, tzinfo=datetime.timezone.utc), 4, 1.7, -73.98158, 40.75775, -73.9626, 40.77043, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ncX17KlIOH9oRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 32, tzinfo=datetime.timezone.utc), 1, 1.15, -73.984233, 40.754843, -74.002695, 40.760747, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'UsBSwwEOI7yNZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 26, tzinfo=datetime.timezone.utc), 1, 1.41, -73.98653, 40.742992, -73.974023, 40.759428, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'J5r/gckvM4dNqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 22, tzinfo=datetime.timezone.utc), 1, 1.54, -73.9763, 40.788167, -73.954843, 40.775828, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'G++iHCmfDJGDvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 9, tzinfo=datetime.timezone.utc), 2, 1.62, -73.985645, 40.744082, -73.987105, 40.760298, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'C9uOC7AxoHVeQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 22, tzinfo=datetime.timezone.utc), 1, 1.66, -73.994087, 40.751253, -73.979322, 40.764222, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '1zmlLhUGmjDA/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 16, tzinfo=datetime.timezone.utc), 5, 1.63, -73.974623, 40.742042, -73.98917, 40.726453, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '2GhER6EyFNM3Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.14, -73.971705, 40.756817, -73.982442, 40.766895, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '8zBD2hq0rL6YmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 4, tzinfo=datetime.timezone.utc), 5, 1.9, -73.967195, 40.772265, -73.983975, 40.749332, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'J2exIhtFLWsbnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 20, tzinfo=datetime.timezone.utc), 1, 1.63, -73.955155, 40.77315, -73.970027, 40.752787, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Z1Nx2QMF6SKvKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 35, tzinfo=datetime.timezone.utc), 1, 1.3, -74.005707, 40.737312, -74.009722, 40.723517, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'JXs3vuQVQNEoUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 15, tzinfo=datetime.timezone.utc), 2, 1.68, -73.961103, 40.765113, -73.980258, 40.755613, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '5U/yDA2pKXPfdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 26, tzinfo=datetime.timezone.utc), 1, 1.46, -73.98575, 40.74387, -73.970575, 40.755535, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '4mUur3GhN9lKaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 50, tzinfo=datetime.timezone.utc), 1, 1.86, -73.973638, 40.761685, -73.976642, 40.780732, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'xlrowuM/TD8Z3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 45, tzinfo=datetime.timezone.utc), 5, 1.23, -73.987432, 40.729258, -74.0081, 40.734168, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'xtUOQqKxIW4uQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 18, tzinfo=datetime.timezone.utc), 5, 2.14, -73.990993, 40.765888, -73.970857, 40.788528, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'DrpTZVZbgVzr3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 32, tzinfo=datetime.timezone.utc), 2, 1.62, -73.983388, 40.75279, -73.973897, 40.764188, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '335j1bKmdQ6KSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 4, tzinfo=datetime.timezone.utc), 5, 1.31, -74.004887, 40.71721, -73.990252, 40.719778, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'C9gktGXEsQV+8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 45, tzinfo=datetime.timezone.utc), 1, 1.73, -73.999605, 40.738582, -73.976015, 40.740438, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'wmdScsQjisZVKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 33, tzinfo=datetime.timezone.utc), 1, 1.64, -74.002452, 40.739852, -73.986323, 40.757375, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '7qV+PnTDLYm6uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 44, tzinfo=datetime.timezone.utc), 1, 1.56, -73.961862, 40.76419, -73.976137, 40.744382, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'iyVnSh1v5JPx7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 5, tzinfo=datetime.timezone.utc), 2, 1.63, -73.979553, 40.755203, -73.97676, 40.739303, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'j3twC6AzckYkHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 34, tzinfo=datetime.timezone.utc), 5, 1.78, -73.96211, 40.779238, -73.9784, 40.75703, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'XNO80OZryZlfsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 20, tzinfo=datetime.timezone.utc), 1, 1.45, -73.986528, 40.740192, -74.007798, 40.741953, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'MMZRIEgOK/gpBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 0, tzinfo=datetime.timezone.utc), 5, 2.01, -73.993935, 40.761587, -73.97561, 40.786867, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '3gZMG4/at0fO7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 17, tzinfo=datetime.timezone.utc), 1, 1.55, -73.994682, 40.740282, -73.997872, 40.756245, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Up/NNCOKzk835w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 3, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 3, 28, tzinfo=datetime.timezone.utc), 2, 1.46, -73.993565, 40.752753, -73.98271, 40.762805, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Oe/pwWUIWLIfOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 29, tzinfo=datetime.timezone.utc), 5, 1.63, -73.985835, 40.757353, -73.976697, 40.775118, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '+xsO0KSPGwHqVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 38, tzinfo=datetime.timezone.utc), 5, 1.69, -73.9843, 40.754588, -73.992642, 40.736862, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '+HqzskBSqbBFVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 2, tzinfo=datetime.timezone.utc), 1, 1.49, -73.995617, 40.745923, -73.992795, 40.763303, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'aesYRg03FSlsaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 6, tzinfo=datetime.timezone.utc), 2, 1.23, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'Wf4eWTRneQf9hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 12, tzinfo=datetime.timezone.utc), 4, 1.8, -73.993765, 40.722393, -73.995745, 40.74178, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'zwz4B3QJ8PLMYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 35, tzinfo=datetime.timezone.utc), 1, 1.68, -73.974183, 40.757475, -73.960963, 40.777598, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'NZvvafDMGaezRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 36, tzinfo=datetime.timezone.utc), 1, 1.67, -73.954413, 40.77433, -73.971597, 40.786828, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'bjXKI+mIkUGYbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 5, tzinfo=datetime.timezone.utc), 2, 1.35, -73.992315, 40.755093, -73.972103, 40.747308, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'PXlA75TqrA0KtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 43, tzinfo=datetime.timezone.utc), 1, 1.73, -74.000607, 40.72715, -74.015602, 40.715282, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ghQUFC/Zf2ZiBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 45, tzinfo=datetime.timezone.utc), 1, 1.33, -73.988317, 40.75109, -73.97523, 40.760243, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'ISgVfOnWALfOrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 3, 1.47, -74.004242, 40.742392, -73.982763, 40.739325, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'XncNBZX3tU/ZJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 15, tzinfo=datetime.timezone.utc), 1, 1.73, -73.988342, 40.754878, -73.995472, 40.735015, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'XtVQV80eDyZ6Wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.85, -73.985117, 40.758642, -74.005112, 40.741573, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 's1YAc5bbF2YOtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 18, tzinfo=datetime.timezone.utc), 5, 1.44, -73.95407, 40.730253, -73.958852, 40.713475, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'e+l58d8Q9cwdtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 36, tzinfo=datetime.timezone.utc), 5, 1.39, -73.984958, 40.747977, -73.97788, 40.734097, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', '7u72AJhEEfNwuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 35, tzinfo=datetime.timezone.utc), 2, 1.21, -73.983192, 40.726492, -73.998827, 40.730648, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'RIH2Nv3pj9mPpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 33, tzinfo=datetime.timezone.utc), 1, 1.09, -73.986438, 40.75788, -74.002427, 40.760803, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685115.6930006', 'lkxODx8tBGd7zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 11, tzinfo=datetime.timezone.utc), 1, 0.9, -73.96608, 40.754082, -73.969057, 40.761607, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'R0Y5IMyp1UFCSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 45, tzinfo=datetime.timezone.utc), 2, 1.09, -73.972538, 40.752602, -73.98993, 40.75714, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'h84NIACuH/WoWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 19, tzinfo=datetime.timezone.utc), 1, 0.16, -73.977565, 40.75172, -73.993503, 40.744032, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'XQqrcIMOtN+M2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 11, tzinfo=datetime.timezone.utc), 1, 0.98, -73.974437, 40.755262, -73.962508, 40.756317, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'voOasScZ8pyDMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 13, tzinfo=datetime.timezone.utc), 1, 0.13, -73.993362, 40.751962, -73.99279, 40.766002, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'caovI2g9gcoI2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 17, tzinfo=datetime.timezone.utc), 5, 1.13, -73.951673, 40.76952, -73.958587, 40.779882, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '83RxilfPFFtZcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 4, tzinfo=datetime.timezone.utc), 2, 1.09, -73.993458, 40.761328, -73.980353, 40.761648, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 't+1oDozDFyU1UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.97, -73.974962, 40.777695, -73.97672, 40.780762, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '4LtF/jX/h50yGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 23, tzinfo=datetime.timezone.utc), 1, 1.58, -74.005137, 40.72133, -74.005342, 40.73993, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'ZpuJ5D63aKrRLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 25, tzinfo=datetime.timezone.utc), 1, 1.65, -74.000462, 40.72558, -73.99907, 40.743893, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'By8hIhpA7wLlgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 37, tzinfo=datetime.timezone.utc), 1, 1.34, -73.950168, 40.781992, -73.989315, 40.768338, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'TLwtfrGUnZODQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 58, tzinfo=datetime.timezone.utc), 1, 1.68, -73.992418, 40.743538, -73.977368, 40.764052, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'AnKW5pM1X7IKCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.96, -73.99416, 40.751183, -73.984308, 40.759712, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'Mja6de5A7YUSXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 38, tzinfo=datetime.timezone.utc), 2, 1.19, -73.993088, 40.752643, -73.987122, 40.766283, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '9oafxroXSjkUhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 31, tzinfo=datetime.timezone.utc), 1, 0.75, -74.003265, 40.740078, -73.99298, 40.734052, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'vjN4dGMZ7IT24A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 33, tzinfo=datetime.timezone.utc), 1, 1.22, -73.952272, 40.798147, -73.942492, 40.787348, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'H4XAcCOXbcZKcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 19, tzinfo=datetime.timezone.utc), 4, 1.06, -74.010355, 40.720217, -74.005182, 40.718343, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'kygC1/DGfEluUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 11, tzinfo=datetime.timezone.utc), 5, 0.81, -73.984805, 40.768502, -73.986485, 40.760192, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'IsgdVkMT22mfjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 50, tzinfo=datetime.timezone.utc), 1, 0.91, -73.982877, 40.747962, -73.990815, 40.755885, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'uOFV5jB7xsoWhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), 1, 1.15, -74.0027, 40.71416, -74.005252, 40.705043, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'v2ZGkexv3YhD6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 56, tzinfo=datetime.timezone.utc), 1, 1.54, -73.95794, 40.765422, -73.95531, 40.78256, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'JIPOCjzPwEsHhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 10, tzinfo=datetime.timezone.utc), 2, 1.42, -73.964107, 40.7702, -73.95411, 40.787333, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'o8wvQeg1GYeMCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 24, tzinfo=datetime.timezone.utc), 1, 0.58, -73.984383, 40.745712, -73.983593, 40.75219, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '3UkIcgFPFTTCOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 32, tzinfo=datetime.timezone.utc), 1, 0.83, -73.98252, 40.772235, -73.990168, 40.761723, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'RR+AzkgBx5V7dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 41, tzinfo=datetime.timezone.utc), 5, 0.72, -73.99079, 40.755523, -73.985013, 40.753438, 'Credit', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'iui5sEtH7NCHCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 38, tzinfo=datetime.timezone.utc), 1, 1.85, -73.965378, 40.763503, -73.956552, 40.78394, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'uS4sw8zEq3yvoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 37, tzinfo=datetime.timezone.utc), 1, 1.08, -73.999552, 40.718538, -74.00536, 40.728538, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'OKlzP/zaMcilaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 40, tzinfo=datetime.timezone.utc), 5, 0.98, -73.99414, 40.734338, -73.99414, 40.734338, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'RQ5eAj2sd5Niqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 21, tzinfo=datetime.timezone.utc), 2, 1.17, -74.005855, 40.74122, -73.991558, 40.736812, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'IPkTc0lXFEIfvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 43, tzinfo=datetime.timezone.utc), 5, 1.76, -73.973732, 40.78444, -73.961367, 40.80111, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'nNy1f8v0VkeJ5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 50, tzinfo=datetime.timezone.utc), 2, 0.79, -73.977907, 40.758507, -73.976882, 40.761562, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'XbQWl3sOO0gyvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 44, tzinfo=datetime.timezone.utc), 5, 1.06, -74.000473, 40.732492, -73.98527, 40.732587, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'cEqstuTFOEb11A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 35, tzinfo=datetime.timezone.utc), 1, 1.94, -73.991343, 40.701042, -73.999867, 40.718167, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '3KoRfqX3t03xwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 6, tzinfo=datetime.timezone.utc), 1, 1.61, -74.011202, 40.724058, -74.007797, 40.747042, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'qYlLxSbh6IGhCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 27, tzinfo=datetime.timezone.utc), 5, 1.16, -73.987748, 40.74894, -73.979597, 40.738153, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'zj5cd5Fi+IvZlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.81, -73.980292, 40.742927, -73.988542, 40.750058, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'BWTqHMqRkdxUmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 44, tzinfo=datetime.timezone.utc), 1, 1.32, -73.984407, 40.72478, -73.99972, 40.721993, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'SajJyiznC9zOnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 11, tzinfo=datetime.timezone.utc), 2, 1.22, -73.997272, 40.721667, -73.99056, 40.736857, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'kuVRFV03nFNrRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 4, tzinfo=datetime.timezone.utc), 4, 1.55, -73.985927, 40.746743, -74.002582, 40.733842, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'PcJEQlvPBQepLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 55, tzinfo=datetime.timezone.utc), 2, 0.89, -73.97871, 40.753577, -73.990197, 40.756247, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '/AZbXTevH9UA7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 43, tzinfo=datetime.timezone.utc), 5, 1.06, -73.986947, 40.758202, -73.974388, 40.757618, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '+CEEgY46YM5VZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 6, tzinfo=datetime.timezone.utc), 1, 1.17, -74.001815, 40.729697, -73.995205, 40.72862, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'vC1ST9x7SnRUew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 44, tzinfo=datetime.timezone.utc), 1, 1.32, -73.980748, 40.747902, -73.978678, 40.762025, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'QZjEDge44cGUiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 9, tzinfo=datetime.timezone.utc), 1, 1.8, -74.003715, 40.74854, -73.991253, 40.770432, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'x2mg5L1pVR6rZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 4, tzinfo=datetime.timezone.utc), 1, 1.72, -73.97115, 40.751558, -73.982392, 40.731253, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'eJwbmCsmQJQICA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 12, tzinfo=datetime.timezone.utc), 1, 1.3, -73.980727, 40.782405, -73.970788, 40.798473, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '+jHYbXcoYyIPLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 25, tzinfo=datetime.timezone.utc), 2, 1.58, -73.995915, 40.738582, -73.989615, 40.756862, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'G9KHlqmYmzvVfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 9, tzinfo=datetime.timezone.utc), 1, 1.38, -73.972512, 40.749513, -73.97428, 40.73696, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '5qc5EWwlL5/evw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 28, tzinfo=datetime.timezone.utc), 1, 0.92, -73.966162, 40.765242, -73.967252, 40.770863, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '8nqNUZ9SfgHhLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 34, tzinfo=datetime.timezone.utc), 5, 1.74, -73.981563, 40.78113, -73.969633, 40.802155, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '7mhj1AUD12KOcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 34, tzinfo=datetime.timezone.utc), 1, 1.62, -73.979402, 40.753485, -73.977905, 40.739277, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'Y3cSaXa+NehEsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 57, tzinfo=datetime.timezone.utc), 1, 1.69, -73.965468, 40.752512, -73.984838, 40.742905, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '5PXtTi6Y2CA0zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 22, tzinfo=datetime.timezone.utc), 1, 1.96, -73.975197, 40.765247, -73.9577, 40.784552, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'HjxT6E4v3SVITQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 30, tzinfo=datetime.timezone.utc), 1, 1.51, -74.00802, 40.711873, -73.992047, 40.699548, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'jhZYZfRkOFKX5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 47, tzinfo=datetime.timezone.utc), 1, 1.33, -73.993295, 40.752363, -73.983495, 40.744108, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'dWyieXR6t1eyUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 31, tzinfo=datetime.timezone.utc), 1, 1.07, -73.97132, 40.761087, -73.9855, 40.75785, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'yQsuTswF/bQFrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 35, tzinfo=datetime.timezone.utc), 4, 1.07, -73.962143, 40.776422, -73.968693, 40.764352, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '35DMIaqAjmA7Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 39, tzinfo=datetime.timezone.utc), 1, 1.46, -73.972257, 40.762433, -73.95794, 40.779015, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', '/NJJBS53bcPLOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 39, tzinfo=datetime.timezone.utc), 2, 1.6, -73.991243, 40.73264, -73.974217, 40.742687, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685115.6930006', 'htYu86dNJkYasw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 0, tzinfo=datetime.timezone.utc), 1, 1.1, -73.975085, 40.750973, -73.987158, 40.759538, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '+kdARE0IvvpypA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 28, tzinfo=datetime.timezone.utc), 5, 2.88, -73.949797, 40.77673, -73.969622, 40.751732, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'c7FsWVHe9BIN9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 46, tzinfo=datetime.timezone.utc), 1, 1.71, -74.00153, 40.746542, -73.974413, 40.7369, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'RPIf107DhJbB1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 51, tzinfo=datetime.timezone.utc), 1, 1.68, -73.960142, 40.76196, -73.978195, 40.765303, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'jOpIYP0Umw87zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 39, tzinfo=datetime.timezone.utc), 1, 1.01, -73.970503, 40.753935, -73.972448, 40.762255, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'koti1VfO0odopg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 48, tzinfo=datetime.timezone.utc), 1, 1.83, -73.98933, 40.73008, -73.991733, 40.749072, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'w0u26jj79u8FgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 40, tzinfo=datetime.timezone.utc), 2, 1.49, -73.970392, 40.750883, -73.9542, 40.764247, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '8dzaDB/yHmeJNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), 5, 0.76, -73.971948, 40.7498, -73.97758, 40.75468, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'f9m+gk7nl0DAEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 55, tzinfo=datetime.timezone.utc), 5, 0.95, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'Gk3IGaYecz7yLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 1, tzinfo=datetime.timezone.utc), 1, 1.99, -73.95696, 40.770772, -73.982343, 40.784898, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'qky/nb3/K5sV7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 33, tzinfo=datetime.timezone.utc), 1, 1.82, -73.972432, 40.763033, -73.990635, 40.75129, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'Xb+RINoO27ffiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 3, tzinfo=datetime.timezone.utc), 5, 2.37, -73.975263, 40.777315, -73.976182, 40.753962, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'P1hnbqFgqPJEzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 7, tzinfo=datetime.timezone.utc), 2, 2.13, -73.98172, 40.78352, -73.969103, 40.764032, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'v/eEhc6BaENS+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 44, tzinfo=datetime.timezone.utc), 1, 2.1, -73.986788, 40.761905, -74.005845, 40.737448, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'l/+VjFhn1/B2mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 57, tzinfo=datetime.timezone.utc), 1, 2.91, -73.967375, 40.759378, -73.938338, 40.789807, 'Credit', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'xQUnsAsvlOw/tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 36, tzinfo=datetime.timezone.utc), 5, 1.65, -73.984778, 40.760465, -74.000583, 40.758245, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'z77HB+e9p1u5LA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 37, tzinfo=datetime.timezone.utc), 2, 2.19, -73.983908, 40.774587, -73.968915, 40.755273, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '+A4I7+1D0hB2PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 24, tzinfo=datetime.timezone.utc), 1, 2.04, -73.96947, 40.757785, -73.983833, 40.775777, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'RPjkn27ix3OTQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 12, 30, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 40, 48, tzinfo=datetime.timezone.utc), 1, 1.9, -73.961134, 40.764982, -73.972526, 40.743459, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '+PwaP4uQtJUeOA', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 54, tzinfo=datetime.timezone.utc), 1, 0.31, -73.991705, 40.75009, -73.97491, 40.741753, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '0ahriHNJ1ztr6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 37, tzinfo=datetime.timezone.utc), 5, 2.24, -73.993443, 40.74973, -73.982538, 40.773247, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'WSbbpOuWRD9giw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 33, tzinfo=datetime.timezone.utc), 1, 1.54, -73.969307, 40.756762, -73.972865, 40.74372, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'XXNhZp7riI++rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 1, tzinfo=datetime.timezone.utc), 3, 1.52, -73.981538, 40.741813, -73.982537, 40.757795, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '1OLd/j+1/38mEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 14, tzinfo=datetime.timezone.utc), 1, 1.62, -73.998665, 40.734903, -73.998032, 40.721592, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'VWxl3mcQiXpJDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 57, tzinfo=datetime.timezone.utc), 1, 1.26, -73.988663, 40.755833, -73.993998, 40.767478, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'UYoyi5ZEnIC0nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 19, tzinfo=datetime.timezone.utc), 5, 1.93, -74.00156, 40.715662, -73.986667, 40.740057, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'O9qwta4ECASPIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 33, tzinfo=datetime.timezone.utc), 1, 1.79, -73.982312, 40.776797, -73.960337, 40.774693, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'IzFyS5sojYP5EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 7, tzinfo=datetime.timezone.utc), 1, 2.0, -73.992347, 40.749763, -73.984743, 40.76941, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'F8e14zqN9/G6nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 38, tzinfo=datetime.timezone.utc), 1, 2.31, -73.969382, 40.761037, -73.946023, 40.781528, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'WXNapHoRuvENtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 7, tzinfo=datetime.timezone.utc), 5, 2.46, -73.951, 40.775018, -73.979755, 40.760522, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'piKnw47k4LVIBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 28, tzinfo=datetime.timezone.utc), 2, 1.73, -73.987868, 40.752305, -73.9915, 40.770085, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'KNj5yRLQqla4Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 28, tzinfo=datetime.timezone.utc), 1, 1.57, -73.98377, 40.773045, -73.972587, 40.75999, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '3psGgP3VM3BadQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 6, tzinfo=datetime.timezone.utc), 1, 2.1, -73.981687, 40.779323, -73.959713, 40.779608, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'zr1jE/NYqY9R2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 26, tzinfo=datetime.timezone.utc), 1, 1.8, -73.981387, 40.763125, -73.989267, 40.753225, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'csR0p1cQ6lJwhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 14, tzinfo=datetime.timezone.utc), 1, 2.39, -74.016378, 40.704862, -73.997897, 40.725845, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'avdcAcYJhh4jOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 37, tzinfo=datetime.timezone.utc), 5, 1.59, -73.92523, 40.690168, -73.900535, 40.687647, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'Zm4LCdkHODhNkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 11, tzinfo=datetime.timezone.utc), 3, 2.17, -73.976053, 40.781222, -73.979138, 40.756082, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'C3r+8PBnZyjLew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 3, tzinfo=datetime.timezone.utc), 5, 2.26, -73.979108, 40.765987, -73.954998, 40.780188, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'MHe/emRBvjco8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 7, tzinfo=datetime.timezone.utc), 5, 1.7, -73.97884, 40.728822, -74.00096, 40.725827, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'pa/NHjnQ1Qht8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 17, tzinfo=datetime.timezone.utc), 1, 1.99, -73.967602, 40.756038, -73.987817, 40.765005, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'uFOsGYxn6QvCfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 7, 28, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 39, 30, tzinfo=datetime.timezone.utc), 1, 2.0, -73.956176, 40.778729, -73.972922, 40.75345, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'nKWmk/2uUOgXFA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 7, tzinfo=datetime.timezone.utc), 1, 1.8, -73.978545, 40.782852, -73.954925, 40.782587, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'uRLtZuB5vQ0nwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 28, tzinfo=datetime.timezone.utc), 1, 2.5, -73.978338, 40.763818, -73.997742, 40.741207, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '6jxGvp0g6dHPGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 11, tzinfo=datetime.timezone.utc), 1, 1.91, -74.004147, 40.747853, -73.983755, 40.765402, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'eKW0+u0X6FbNwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 55, tzinfo=datetime.timezone.utc), 1, 1.92, -73.97378, 40.738115, -73.989723, 40.735605, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'F+sBdmqjDwdtJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 1, tzinfo=datetime.timezone.utc), 2, 2.59, -73.958742, 40.780678, -73.98481, 40.769388, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '5WoKx20Jzlmumg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 12, tzinfo=datetime.timezone.utc), 1, 1.84, -74.002747, 40.746953, -73.98371, 40.757955, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'gOPzFfoFJywLJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 10, tzinfo=datetime.timezone.utc), 1, 2.59, -73.9715, 40.757447, -73.992108, 40.72924, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '1dXE227k2dxDfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 20, tzinfo=datetime.timezone.utc), 5, 1.86, -74.001247, 40.741803, -73.97912, 40.750688, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'bM2oPU8zqzszoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 2, 1.24, -73.952188, 40.769022, -73.960353, 40.780748, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'EZq1EhU6p018uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 5, tzinfo=datetime.timezone.utc), 2, 2.57, -73.996308, 40.694623, -74.004438, 40.711788, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '83A+fMDsO22gaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 47, tzinfo=datetime.timezone.utc), 1, 2.28, -73.976127, 40.750475, -73.949955, 40.772865, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '35qOMLO4koIrhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 52, tzinfo=datetime.timezone.utc), 1, 2.11, -73.96566, 40.759463, -73.956568, 40.783642, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'q3wYfNTZ4Mv8Jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 34, tzinfo=datetime.timezone.utc), 1, 2.81, -73.964527, 40.763735, -73.946635, 40.797075, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'pbXraVoBCaJe6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 48, tzinfo=datetime.timezone.utc), 1, 1.42, -73.952983, 40.772445, -73.970352, 40.764677, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'Cp0GJqT0jPetlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 14, tzinfo=datetime.timezone.utc), 5, 2.66, -73.962347, 40.794987, -73.98267, 40.765657, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'bLoypAChlkU6Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 19, tzinfo=datetime.timezone.utc), 1, 1.88, -73.960695, 40.772422, -73.98044, 40.753965, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'V3UHBJgeCcixyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 3, tzinfo=datetime.timezone.utc), 5, 2.77, -73.9741, 40.743057, -73.948688, 40.777868, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '7aH2IR0CIt3EVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 50, tzinfo=datetime.timezone.utc), 1, 2.38, -73.975995, 40.744498, -74.001885, 40.724662, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'ATPbI5bR+rj5eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 32, tzinfo=datetime.timezone.utc), 1, 1.86, -73.971782, 40.792003, -73.94367, 40.790985, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'fzXNYtNfFoIfOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 38, tzinfo=datetime.timezone.utc), 5, 1.72, -73.958217, 40.772955, -73.980723, 40.784875, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'l/Hcq6eGZXtzvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 41, tzinfo=datetime.timezone.utc), 1, 2.03, -73.983328, 40.78127, -73.966465, 40.76465, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'J8EdxLkH0XMjvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 14, tzinfo=datetime.timezone.utc), 2, 2.3, -73.97821, 40.75344, -73.953322, 40.76802, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '/5R4Ji+k4cnNWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 34, tzinfo=datetime.timezone.utc), 1, 2.1, -73.939467, 40.804638, -73.955798, 40.77915, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'FX7ML0xRinuRDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 39, tzinfo=datetime.timezone.utc), 6, 2.13, -73.999328, 40.745653, -73.991253, 40.723403, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'tM5A4zTSJgVR4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 13, tzinfo=datetime.timezone.utc), 3, 1.73, -73.952518, 40.768563, -73.953733, 40.778597, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'LkPnoUcD/S/vDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 25, tzinfo=datetime.timezone.utc), 3, 1.66, -74.000512, 40.71854, -73.995235, 40.739718, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'ZhIoZQAVsN74Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 27, tzinfo=datetime.timezone.utc), 2, 1.6, -73.983998, 40.74329, -73.982682, 40.760282, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '0XuZaXbcWpH2sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 55, tzinfo=datetime.timezone.utc), 2, 1.16, -73.976607, 40.775335, -73.973463, 40.763372, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'jqNr+RS8L869jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 8, tzinfo=datetime.timezone.utc), 1, 1.47, -73.989392, 40.757243, -73.97082, 40.76456, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'QjEEoHxqVhJVnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 34, tzinfo=datetime.timezone.utc), 1, 2.48, -73.975823, 40.7805, -73.991697, 40.75148, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'EiiQfMd4NI3qVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 28, tzinfo=datetime.timezone.utc), 5, 1.93, -73.97368, 40.785477, -73.946478, 40.772522, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'QvAikHefAt6Nzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 50, tzinfo=datetime.timezone.utc), 1, 1.09, -74.0105, 40.720247, -74.012573, 40.708033, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'tyGQ+uBOWZeDsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 49, tzinfo=datetime.timezone.utc), 1, 1.85, -73.994337, 40.74082, -73.981982, 40.762517, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'bPNjQPtIrVIA1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 22, tzinfo=datetime.timezone.utc), 1, 2.52, -73.978442, 40.745177, -73.977958, 40.715723, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'GG3/wfAh1Z4YIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 49, tzinfo=datetime.timezone.utc), 5, 1.39, -73.972842, 40.752435, -73.98182, 40.759298, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'ZwyfWrLLJWd3vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 2, tzinfo=datetime.timezone.utc), 3, 1.79, -73.97889, 40.777305, -73.993007, 40.75516, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '6+zYxux9PBV95Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 46, tzinfo=datetime.timezone.utc), 1, 2.09, -73.95887, 40.783652, -73.979765, 40.765903, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '+FvINQK2laMADA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 4, 47, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 4, 55, 2, tzinfo=datetime.timezone.utc), 1, 2.7, -74.004643, 40.730243, -73.987212, 40.760993, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 't5arQOieYnxCcg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 37, tzinfo=datetime.timezone.utc), 2, 2.38, -73.94413, 40.775815, -73.97013, 40.752108, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'LObXa9fj/QxNIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 57, tzinfo=datetime.timezone.utc), 2, 1.63, -73.979138, 40.781985, -73.980252, 40.76446, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'wLSM68FGrY17aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 16, tzinfo=datetime.timezone.utc), 3, 1.88, -73.969847, 40.761363, -73.949393, 40.771078, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'icXlXIy+CJ++Tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 54, tzinfo=datetime.timezone.utc), 5, 1.3, -73.977737, 40.763818, -73.960093, 40.76042, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '97jOaCJUExm9pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.87, -73.995377, 40.73678, -73.973895, 40.743208, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'zwFnUGkPWp3mdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 51, tzinfo=datetime.timezone.utc), 2, 2.56, -74.009647, 40.709522, -74.006608, 40.743235, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'PlWPD1uZHmvB6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 42, tzinfo=datetime.timezone.utc), 1, 2.06, -73.969882, 40.756887, -73.950983, 40.774692, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'LFOIqDhQEfwXRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.67, -73.955643, 40.768422, -73.976748, 40.759928, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'RWdyn4JKgUz7fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 30, tzinfo=datetime.timezone.utc), 5, 2.41, -73.994465, 40.750898, -73.97613, 40.78056, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'P2n05pSIU9MhQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 13, tzinfo=datetime.timezone.utc), 2, 1.87, -73.974527, 40.751188, -73.95302, 40.76491, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'EYT7QVrVqbmC2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 41, tzinfo=datetime.timezone.utc), 1, 2.54, -73.976732, 40.787918, -73.972697, 40.762168, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'cFNyLRcNyq4Inw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 6, tzinfo=datetime.timezone.utc), 1, 1.78, -73.994312, 40.750965, -73.987758, 40.767138, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '9a0AJC0stLCrGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 7, tzinfo=datetime.timezone.utc), 1, 1.65, -73.999197, 40.739265, -73.976905, 40.738978, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '9hSseUW5jOmeFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 44, tzinfo=datetime.timezone.utc), 3, 2.72, -74.005683, 40.72718, -73.993912, 40.757313, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '+SKEPT/f/AZBkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 42, tzinfo=datetime.timezone.utc), 5, 1.61, -73.95511, 40.784367, -73.959668, 40.765813, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'aNK+H8q3Ghk4vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 29, tzinfo=datetime.timezone.utc), 1, 2.03, -73.987723, 40.750903, -73.971878, 40.757053, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '3dZNwq4XGK2avw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 31, tzinfo=datetime.timezone.utc), 3, 2.15, -73.954687, 40.783042, -73.968395, 40.759348, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '4nPqpJNjnXzxaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 38, tzinfo=datetime.timezone.utc), 3, 2.42, -73.962267, 40.799997, -73.984642, 40.76929, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'JmqpaaJb8Xxs7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 4, tzinfo=datetime.timezone.utc), 2, 1.23, -73.991332, 40.750732, -73.985773, 40.75242, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '2/uJSPEO9S+hCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 16, tzinfo=datetime.timezone.utc), 5, 2.35, -74.01574, 40.711063, -73.999477, 40.73375, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'G3dtrKN9B10e8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 36, tzinfo=datetime.timezone.utc), 1, 2.65, -73.992977, 40.72438, -73.969103, 40.75266, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '8Uir/Z+cvPQlMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 12, tzinfo=datetime.timezone.utc), 5, 1.37, -73.955958, 40.779263, -73.969943, 40.762192, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'ch2GHW7Gy7yrdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 2, tzinfo=datetime.timezone.utc), 1, 1.93, -73.988183, 40.769413, -73.962872, 40.775337, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'OFrg8ysEICA86A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 50, tzinfo=datetime.timezone.utc), 5, 2.08, -73.984177, 40.748958, -74.007963, 40.731782, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'JCQ51qwlv8XQ3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 36, tzinfo=datetime.timezone.utc), 1, 2.36, -73.990683, 40.723658, -73.990428, 40.748403, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'DYRwaIzOY7giKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 20, tzinfo=datetime.timezone.utc), 2, 1.53, -73.972435, 40.76511, -73.954682, 40.769525, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'uHUkVK1chtGNLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 57, tzinfo=datetime.timezone.utc), 5, 1.54, -73.996918, 40.742333, -73.975182, 40.741412, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '/NEUFh3B9lie2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 35, tzinfo=datetime.timezone.utc), 5, 1.8, -73.968033, 40.755613, -73.986152, 40.739223, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'W7x3Ob/QKB12sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 23, tzinfo=datetime.timezone.utc), 1, 2.36, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'Ro7fD9n4+HxlVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 14, tzinfo=datetime.timezone.utc), 1, 2.14, -73.95521, 40.777588, -73.979927, 40.770927, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'diCtehbwEBxhcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 9, tzinfo=datetime.timezone.utc), 1, 2.75, -74.000195, 40.727125, -73.979787, 40.760285, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'ciMH2eDHIJpRgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 4, tzinfo=datetime.timezone.utc), 1, 1.36, -73.992615, 40.76864, -73.97727, 40.759262, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'TRtoPEh7bY87YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 20, tzinfo=datetime.timezone.utc), 1, 1.74, -73.995348, 40.733333, -73.981008, 40.752047, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', 'eEdb6W4WaYUnfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 47, tzinfo=datetime.timezone.utc), 1, 1.31, -73.964453, 40.776385, -73.951357, 40.783897, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685115.6930006', '8ThfjzCdz19Ehg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 52, tzinfo=datetime.timezone.utc), 1, 2.94, -73.983898, 40.770443, -73.961638, 40.802263, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '7qtq4cAR/D+wGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 48, tzinfo=datetime.timezone.utc), 1, 2.69, -73.999922, 40.733168, -73.974505, 40.764555, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '4958aN69e3EG8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 30, tzinfo=datetime.timezone.utc), 2, 2.29, -73.970903, 40.79856, -73.98694, 40.77111, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'lTRuwE5k/Kfolw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.94, -73.984227, 40.74318, -73.990568, 40.761107, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'PlFVjO2I3hKIbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.83, -73.99352, 40.721612, -73.9821, 40.745945, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '4vpoIFsorgak8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 30, tzinfo=datetime.timezone.utc), 1, 2.05, -73.972683, 40.785705, -73.991605, 40.759823, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'mWrtFHnBrVPMOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 3, tzinfo=datetime.timezone.utc), 2, 2.53, -73.990033, 40.772177, -74.0056, 40.740983, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'WC6XzHQtEMDgcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 51, tzinfo=datetime.timezone.utc), 1, 1.79, -73.999883, 40.731193, -73.981832, 40.743817, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'GNcSKhyOmbgBOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 11, tzinfo=datetime.timezone.utc), 2, 2.46, -73.969175, 40.75829, -73.954982, 40.787285, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '6ZvklCTY81fShA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 27, tzinfo=datetime.timezone.utc), 3, 2.05, -73.967823, 40.758855, -73.989075, 40.741177, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '/n6bSv6GrFHjIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 16, tzinfo=datetime.timezone.utc), 1, 1.62, -73.984152, 40.770017, -73.977445, 40.75361, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'wanKtaJWC3W7uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 3, tzinfo=datetime.timezone.utc), 5, 2.45, -74.005505, 40.732278, -73.991115, 40.758082, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'G2clhbC926+BCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 15, tzinfo=datetime.timezone.utc), 1, 2.45, -73.996685, 40.756088, -73.979233, 40.781915, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'DS3/5qC6TuSSCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 23, tzinfo=datetime.timezone.utc), 2, 1.8, -73.971308, 40.755755, -73.99139, 40.755637, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '4vgctYAHOsYPMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 21, tzinfo=datetime.timezone.utc), 1, 1.15, -73.987618, 40.75856, -73.974282, 40.754902, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'h1QAClMTQP4NJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 40, tzinfo=datetime.timezone.utc), 1, 2.42, -73.984963, 40.747732, -73.999783, 40.719143, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'md/LMf1MxnkOYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 2, tzinfo=datetime.timezone.utc), 1, 2.84, -73.989292, 40.720385, -73.97112, 40.754173, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'rt9WISXWlnlRCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 36, tzinfo=datetime.timezone.utc), 1, 2.05, -73.983373, 40.751278, -73.963295, 40.774267, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'NQM9T/VNuQBJJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 34, tzinfo=datetime.timezone.utc), 4, 1.86, -73.99984, 40.738423, -73.978503, 40.744762, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'Qm/+kkLmN7VhMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 10, tzinfo=datetime.timezone.utc), 1, 2.41, -73.992337, 40.745068, -73.98409, 40.721483, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'eppZecjRSbgATg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 11, tzinfo=datetime.timezone.utc), 1, 2.61, -74.000543, 40.730022, -73.983553, 40.75898, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'oaGJ5PmXER0Ycw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 57, tzinfo=datetime.timezone.utc), 2, 2.13, -73.99002, 40.755948, -73.96192, 40.759622, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'X7/9gkDJhVIOMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 47, tzinfo=datetime.timezone.utc), 5, 2.18, -74.000155, 40.743422, -73.974622, 40.7539, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'GfVKkLp/UKR7vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 13, tzinfo=datetime.timezone.utc), 2, 2.67, -73.978637, 40.745708, -73.95365, 40.777077, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'PqQGYlrYaYzO1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 15, tzinfo=datetime.timezone.utc), 1, 2.08, -73.987442, 40.720193, -74.007198, 40.707582, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'jYOrEgz+X9Ho4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 17, tzinfo=datetime.timezone.utc), 5, 2.21, -73.968437, 40.759655, -73.976742, 40.779128, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'skBfqsmzVkYeWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 3, tzinfo=datetime.timezone.utc), 3, 2.24, -73.995547, 40.724967, -73.991323, 40.750207, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'UmEm+URcxEXvcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 15, tzinfo=datetime.timezone.utc), 3, 1.79, -73.986443, 40.726128, -74.006157, 40.735023, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'JeE0pILYpiXG0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 24, tzinfo=datetime.timezone.utc), 1, 2.45, -73.988717, 40.769142, -73.985142, 40.747333, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'UvSdWT+kYjAlCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 1, 7, tzinfo=datetime.timezone.utc), 2, 2.53, -73.843755, 40.721425, -73.813543, 40.720227, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'w5wU9AgQkdgPgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 37, tzinfo=datetime.timezone.utc), 5, 2.24, -73.965228, 40.766105, -73.993733, 40.759778, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'qUCRuHgeaLzd1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 32, tzinfo=datetime.timezone.utc), 2, 2.13, -73.992105, 40.694582, -73.958825, 40.691532, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'NLI3sJBZs4Ie+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 28, tzinfo=datetime.timezone.utc), 1, 2.11, -73.965088, 40.759212, -73.996092, 40.763955, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '3GmUTS3UXDoBxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 9, tzinfo=datetime.timezone.utc), 5, 2.27, -73.989988, 40.739128, -74.010347, 40.717868, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'NqngjaszGrtKbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 32, tzinfo=datetime.timezone.utc), 1, 2.3, -73.972863, 40.759905, -73.989798, 40.735535, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'qzQXJRTSuxr85g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 3, tzinfo=datetime.timezone.utc), 5, 2.11, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'VBgzbM2TnneDZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 2, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 2, 13, tzinfo=datetime.timezone.utc), 1, 2.35, -73.84422, 40.721323, -73.849508, 40.696198, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'HvSdo+8lIQlb8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 44, tzinfo=datetime.timezone.utc), 3, 2.41, -73.981508, 40.756143, -73.987917, 40.727923, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'y4ce1neFcKEqjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 19, tzinfo=datetime.timezone.utc), 5, 2.59, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'Ozu3J++gizMPGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 0, tzinfo=datetime.timezone.utc), 1, 2.32, -74.000813, 40.729085, -73.979538, 40.749707, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'MrTuzxk5ZwpWng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 36, tzinfo=datetime.timezone.utc), 3, 2.68, -74.004497, 40.74211, -73.981937, 40.762992, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'F8qed4/m8bLQRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 54, tzinfo=datetime.timezone.utc), 3, 1.52, -73.981863, 40.736922, -73.987263, 40.722272, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '50/lOJcw23g3uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 24, tzinfo=datetime.timezone.utc), 1, 2.12, -73.981475, 40.772652, -73.971055, 40.753302, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '+WwZ6JsIkJaJuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 46, tzinfo=datetime.timezone.utc), 1, 1.87, -73.858397, 40.72444, -73.852047, 40.725165, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '895rdSee4OxjXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 36, tzinfo=datetime.timezone.utc), 1, 2.4, -74.011613, 40.709238, -73.992163, 40.690077, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'y7RnEcDUPST/fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 16, tzinfo=datetime.timezone.utc), 1, 2.05, -74.003228, 40.7439, -73.99459, 40.724865, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '948mptkobnGtCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 58, tzinfo=datetime.timezone.utc), 1, 2.31, -74.00158, 40.707955, -73.992713, 40.735645, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'do/+DDe4Va51ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 23, tzinfo=datetime.timezone.utc), 3, 1.85, -73.982425, 40.739943, -73.999208, 40.728987, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'rt385e0f5fnsAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 21, tzinfo=datetime.timezone.utc), 3, 2.2, -73.98288, 40.754282, -73.98488, 40.776995, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '2nSmfakzcLV4UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 40, tzinfo=datetime.timezone.utc), 3, 1.71, -73.97729, 40.726178, -74.001718, 40.737573, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '0rDME0Cgg9TwoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 56, tzinfo=datetime.timezone.utc), 2, 2.76, -73.982548, 40.739582, -73.956705, 40.771097, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '0DCZMYkCG/KIIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 1, tzinfo=datetime.timezone.utc), 6, 2.27, -73.979515, 40.780875, -73.949037, 40.780147, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '6mO+DatEBO0gvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 8, tzinfo=datetime.timezone.utc), 5, 2.46, -73.976238, 40.758823, -73.981322, 40.782622, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'LNtSnBeV++H+9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 36, tzinfo=datetime.timezone.utc), 1, 2.14, -73.984758, 40.759983, -73.98375, 40.741298, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'Su+NSJnmM38UcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 52, tzinfo=datetime.timezone.utc), 3, 2.4, -73.983393, 40.75559, -74.004513, 40.733435, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'bFO35c4kiCO2kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 9, tzinfo=datetime.timezone.utc), 4, 1.24, -73.98553, 40.732792, -73.998078, 40.722245, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'WOvyRpXKi8BA6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 24, tzinfo=datetime.timezone.utc), 1, 2.32, -73.979723, 40.771063, -73.958443, 40.800047, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'F2FqsWMg52it4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 59, tzinfo=datetime.timezone.utc), 1, 2.24, -73.9931, 40.752505, -73.990137, 40.776053, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'fXJMdna9jfnwcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 41, tzinfo=datetime.timezone.utc), 1, 1.93, -74.005513, 40.727098, -73.980667, 40.727185, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '3Qz5bdnzpun7Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 13, tzinfo=datetime.timezone.utc), 1, 2.18, -73.987922, 40.7241, -73.997968, 40.745247, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '7HuiobdQ2rpHCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 45, tzinfo=datetime.timezone.utc), 1, 2.61, -74.004665, 40.752015, -73.975848, 40.764947, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'ZKeBjiLFHv/8BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 31, tzinfo=datetime.timezone.utc), 1, 2.79, -73.998338, 40.71317, -73.974753, 40.725332, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'mjlD2rGqk7+Tcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 29, tzinfo=datetime.timezone.utc), 5, 2.15, -73.984297, 40.675108, -73.96246, 40.687128, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'NqhnhtusjJ8wfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 52, tzinfo=datetime.timezone.utc), 1, 2.51, -73.976607, 40.748268, -73.980957, 40.773222, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'jfdQVGkJwxkHgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 22, tzinfo=datetime.timezone.utc), 1, 2.42, -73.97302, 40.764005, -73.997377, 40.743233, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'N+xkn5PUZ/RXrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 7, tzinfo=datetime.timezone.utc), 2, 2.46, -73.997797, 40.746258, -73.970408, 40.76379, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'SMAH8nkxuGZRew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 44, tzinfo=datetime.timezone.utc), 1, 2.47, -73.95915, 40.767903, -73.984445, 40.747178, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'RZ890N584jnxaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 26, tzinfo=datetime.timezone.utc), 1, 2.2, -74.010325, 40.70958, -73.991805, 40.735035, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'taofayqYqHrMng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 0, tzinfo=datetime.timezone.utc), 2, 2.74, -74.01576, 40.714197, -73.986727, 40.710875, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'OVat2nxsDD49Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 10, tzinfo=datetime.timezone.utc), 2, 1.97, -74.008083, 40.714873, -73.991797, 40.735532, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'ZuVzshTAFFfTOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 42, tzinfo=datetime.timezone.utc), 3, 2.07, -73.95384, 40.779118, -73.97747, 40.774033, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'tRZgdNiO9CK/aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 15, tzinfo=datetime.timezone.utc), 1, 2.09, -74.006787, 40.736322, -73.977648, 40.738268, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'rTlbkIDveAY+MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 26, tzinfo=datetime.timezone.utc), 5, 2.41, -73.992702, 40.743092, -73.985662, 40.768657, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '55AKu9qxwSpn2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 40, tzinfo=datetime.timezone.utc), 4, 2.57, -73.993037, 40.743718, -73.991935, 40.71758, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '50ODUlnZyCOmAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 2, tzinfo=datetime.timezone.utc), 1, 1.84, -73.990143, 40.730358, -73.990073, 40.749638, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'Wr7LtOTpiyWwJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 23, tzinfo=datetime.timezone.utc), 1, 1.43, -73.987518, 40.74372, -74.005265, 40.740305, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'jgEskNaGzpUEng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 12, tzinfo=datetime.timezone.utc), 2, 2.4, -73.971627, 40.755233, -73.97703, 40.779165, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'n6CcBcn1IIvakw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 28, tzinfo=datetime.timezone.utc), 1, 2.48, -73.955135, 40.766772, -73.976658, 40.74372, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', '5qpdDiD4qiODHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 52, tzinfo=datetime.timezone.utc), 5, 1.68, -73.973808, 40.751997, -73.994005, 40.763907, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'P7MPs06+xwtFIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 43, tzinfo=datetime.timezone.utc), 1, 2.68, -73.994602, 40.750555, -73.962528, 40.763535, 'Credit', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'sAWj7t/qjHEwAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 35, tzinfo=datetime.timezone.utc), 4, 3.12, -74.003945, 40.725625, -73.978617, 40.763955, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'TVcuJPBIaKqlgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 9, tzinfo=datetime.timezone.utc), 5, 2.45, -73.977152, 40.751808, -74.005297, 40.74027, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'HZhdkDFY8hJKOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 24, tzinfo=datetime.timezone.utc), 5, 2.22, -73.844445, 40.721402, -73.816305, 40.727547, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'YrSVlubeow3lDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 57, tzinfo=datetime.timezone.utc), 5, 2.65, -73.965637, 40.754463, -73.983768, 40.73096, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'A4yMVM81iLhcQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 40, tzinfo=datetime.timezone.utc), 1, 2.17, -73.986048, 40.754835, -73.981563, 40.779132, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685115.6930006', 'U6yluj8k2RqpdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 12, tzinfo=datetime.timezone.utc), 2, 2.73, -74.005305, 40.7256, -73.981927, 40.756378, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'UdC3CuieNeM7UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 3, tzinfo=datetime.timezone.utc), 5, 2.1, -73.9908, 40.756033, -74.001742, 40.735273, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'v+HWqSuLgHyXNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 23, tzinfo=datetime.timezone.utc), 2, 2.08, -73.971772, 40.759818, -73.947103, 40.771547, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'v8PI0SSUlWACOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.99, -73.954818, 40.76524, -73.969262, 40.753565, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'ag0hxINzD9SsWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 43, tzinfo=datetime.timezone.utc), 5, 2.06, -73.981878, 40.778212, -73.956785, 40.771558, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'KlMV4ZUkVeWa8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 49, tzinfo=datetime.timezone.utc), 2, 1.88, -73.981658, 40.773898, -73.980142, 40.752702, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '20sD/LopFJ1IoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 6, tzinfo=datetime.timezone.utc), 5, 1.49, -73.975007, 40.76509, -73.982883, 40.771948, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'p23YGTRTnH2nwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 53, tzinfo=datetime.timezone.utc), 5, 2.35, -73.992817, 40.737133, -73.985558, 40.762893, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'UEm7h14f/uJcxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 44, tzinfo=datetime.timezone.utc), 1, 2.15, -73.9577, 40.784563, -73.984752, 40.779402, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'y8ROMsQpo3dx0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 53, tzinfo=datetime.timezone.utc), 1, 2.27, -73.962805, 40.77827, -73.952928, 40.780158, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'ESoClE1oaEwhJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 1, tzinfo=datetime.timezone.utc), 2, 2.58, -73.984655, 40.75932, -73.985578, 40.731565, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '7UbLEZ+0nPxeyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 21, tzinfo=datetime.timezone.utc), 1, 1.53, -73.969047, 40.761138, -73.977535, 40.774355, 'Credit', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '4UMxkbrqcjuZ/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 30, tzinfo=datetime.timezone.utc), 1, 2.18, -73.994682, 40.72498, -73.992272, 40.749365, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'QmlyxsEIItRYRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 55, tzinfo=datetime.timezone.utc), 1, 1.99, -73.98563, 40.73524, -74.008492, 40.73466, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'CutgHEzs1bOTHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.49, -73.953782, 40.791063, -73.981817, 40.773188, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'nAy957J4bxKDJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 49, tzinfo=datetime.timezone.utc), 1, 1.2, -73.961185, 40.756547, -73.978488, 40.756638, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 's+3QVu2xhlDtew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 43, tzinfo=datetime.timezone.utc), 3, 1.5, -74.006693, 40.716343, -73.98883, 40.722945, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '+9iIbdMp99revg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 5, tzinfo=datetime.timezone.utc), 1, 1.87, -73.986487, 40.740542, -73.987975, 40.75861, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'gVl74KnF3YNDVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 51, tzinfo=datetime.timezone.utc), 5, 2.33, -73.982373, 40.761872, -73.987203, 40.736598, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '+rH6JJjKM8lifg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 26, tzinfo=datetime.timezone.utc), 1, 2.28, -74.005858, 40.740215, -74.015958, 40.717603, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '6Kwsi+sv7GT8oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 54, tzinfo=datetime.timezone.utc), 1, 1.33, -73.969377, 40.766473, -73.984892, 40.76844, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'tL12MKyx6U+jFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 3, tzinfo=datetime.timezone.utc), 1, 2.69, -73.987712, 40.770307, -73.969488, 40.802027, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'LL0w6AJKDij7NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 0, tzinfo=datetime.timezone.utc), 1, 2.55, -73.95977, 40.771262, -73.953753, 40.799535, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'LHumkkcccT/jxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 49, tzinfo=datetime.timezone.utc), 5, 2.51, -73.991803, 40.742337, -73.962627, 40.758627, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '1eyXpr7VABxsPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 19, tzinfo=datetime.timezone.utc), 2, 1.82, -73.996495, 40.724397, -74.006127, 40.736852, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'uOXHQO10qMMl4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.94, -74.007015, 40.741695, -74.013035, 40.717353, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'eG/oS3TNnshxNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 45, tzinfo=datetime.timezone.utc), 1, 1.93, -74.000633, 40.737113, -73.988003, 40.719103, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'DQrvuNYRNb1mnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 33, tzinfo=datetime.timezone.utc), 5, 1.65, -73.983158, 40.768543, -73.968232, 40.752695, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'tip1wdfCLZy43A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 50, tzinfo=datetime.timezone.utc), 1, 1.84, -73.977927, 40.736568, -73.979907, 40.750142, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'YIn4qfMhfjbfbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 45, tzinfo=datetime.timezone.utc), 1, 2.14, -73.978212, 40.773817, -73.953142, 40.779953, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '2Rf8ICFoUqoBZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 1, tzinfo=datetime.timezone.utc), 5, 1.03, -73.990157, 40.7616, -73.99498, 40.750207, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'nR4jAG850cZWrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 42, tzinfo=datetime.timezone.utc), 1, 2.25, -73.95936, 40.77435, -73.980127, 40.749023, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'NyfVvjdsUA+wNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 18, tzinfo=datetime.timezone.utc), 1, 2.06, -73.951847, 40.778052, -73.980822, 40.780855, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'wppa7FFO4qt7Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 40, tzinfo=datetime.timezone.utc), 1, 1.62, -73.96202, 40.759458, -73.960223, 40.776347, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'OuTTRnjwrVsvSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 42, tzinfo=datetime.timezone.utc), 1, 2.18, -74.003058, 40.727993, -73.979562, 40.743618, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', '4rvZkSsaYSK/2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 17, tzinfo=datetime.timezone.utc), 2, 1.54, -73.995917, 40.764022, -73.972305, 40.753695, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685115.6930006', 'TpcBtCH4LhThmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 44, tzinfo=datetime.timezone.utc), 1, 0.0, 0.0, 0.0, -73.949325, 40.831935, 'Credit', 10.0, 0.0, 0.0, 0.0, 10.0, '1705685115.6930006', 'v+lIQdBzTF7HBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 29, tzinfo=datetime.timezone.utc), 1, 2.6, -73.9943, 40.751155, -73.97378, 40.782977, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'dgfU+01Juxda9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 27, tzinfo=datetime.timezone.utc), 1, 1.96, -73.979552, 40.73529, -73.979867, 40.735138, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'izJFpwZZBBvVvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 38, tzinfo=datetime.timezone.utc), 1, 3.21, -74.005265, 40.72894, -73.972673, 40.756402, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '6xg4DDGtP5sjDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 4, tzinfo=datetime.timezone.utc), 1, 2.95, -73.992062, 40.731247, -73.97144, 40.764962, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'B6WT0SvQy/p7Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 20, tzinfo=datetime.timezone.utc), 5, 3.66, -74.010418, 40.71172, -73.984735, 40.75792, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'SdnXwGSQ9CC49Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 7, tzinfo=datetime.timezone.utc), 3, 2.91, -73.953682, 40.779587, -73.920423, 40.806372, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Pb8lx76y2aOFEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 55, tzinfo=datetime.timezone.utc), 1, 2.51, -73.992322, 40.759312, -73.965927, 40.769373, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '/xUCGbM8X2yf/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 47, tzinfo=datetime.timezone.utc), 1, 0.25, -74.005637, 40.750805, -74.006737, 40.718917, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'PPlXNXLTjKufpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 24, tzinfo=datetime.timezone.utc), 1, 1.57, -73.991868, 40.750898, -73.980963, 40.749985, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '83FtMMtM8+tQeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 27, tzinfo=datetime.timezone.utc), 1, 3.24, -73.959478, 40.79885, -73.983623, 40.760985, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'oFBSz8RLCHXB0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 51, tzinfo=datetime.timezone.utc), 1, 2.94, -73.981425, 40.750627, -74.008905, 40.724397, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '9TeaYUpqMhr4Jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 33, tzinfo=datetime.timezone.utc), 1, 2.58, -73.955042, 40.773273, -73.982255, 40.751528, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'pNoUnnCsMuL4Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 31, tzinfo=datetime.timezone.utc), 5, 1.37, -73.970468, 40.768165, -73.984617, 40.758907, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'JHygPnF6mp8lBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 31, tzinfo=datetime.timezone.utc), 5, 3.16, -73.979703, 40.749048, -73.948538, 40.781578, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Ou9iJFzBINNBcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 45, tzinfo=datetime.timezone.utc), 5, 1.78, -73.972425, 40.781133, -73.975623, 40.761067, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '6bEzxFf8m/GkWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 32, tzinfo=datetime.timezone.utc), 1, 2.03, -73.977987, 40.773565, -73.962008, 40.768622, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '/I3OOLTLZe5yxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 47, tzinfo=datetime.timezone.utc), 2, 2.43, -73.986505, 40.744052, -74.002767, 40.716327, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Q0CcIdNdDVicdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 5, tzinfo=datetime.timezone.utc), 3, 2.65, -73.972878, 40.761065, -73.977313, 40.789843, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'IMscZvEbRHs3Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 20, tzinfo=datetime.timezone.utc), 1, 3.66, -74.008995, 40.710978, -73.985932, 40.756555, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '14Q0mCgmMRy7lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 39, tzinfo=datetime.timezone.utc), 1, 2.29, -73.979538, 40.747192, -73.99653, 40.716495, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'p1ROf05uofHwIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 37, tzinfo=datetime.timezone.utc), 1, 1.21, -73.980313, 40.755258, -73.995657, 40.749203, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'egnbpc17vuTXsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 17, tzinfo=datetime.timezone.utc), 5, 2.92, -73.968825, 40.75481, -74.000895, 40.733287, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '/gty2tCExt4KyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 8, tzinfo=datetime.timezone.utc), 1, 2.39, -73.982078, 40.778712, -73.954222, 40.770227, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'ElrkRiu/v6EEOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 53, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978425, 40.753413, -73.982583, 40.76649, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '2FddhtvdGP5n6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 42, tzinfo=datetime.timezone.utc), 2, 2.91, -73.973588, 40.759407, -73.998313, 40.724818, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'cof782Q/6Rp08w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 30, tzinfo=datetime.timezone.utc), 4, 2.77, -73.969367, 40.784908, -73.978455, 40.75424, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '1e8iZFJqYc2HSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 42, tzinfo=datetime.timezone.utc), 1, 3.02, -74.004947, 40.74078, -73.982658, 40.765033, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'bNmtR1y7SBccHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 25, tzinfo=datetime.timezone.utc), 2, 3.29, -73.974513, 40.7546, -73.974827, 40.787858, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '4oduEukZipYhfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 19, tzinfo=datetime.timezone.utc), 1, 1.58, -73.983203, 40.756923, -73.975892, 40.770825, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'OMynCCPIEb9sIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 40, tzinfo=datetime.timezone.utc), 1, 3.4, -73.997098, 40.67601, -74.004365, 40.716225, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'oHj5qQuHUniEfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 15, tzinfo=datetime.timezone.utc), 6, 2.77, -73.991035, 40.755938, -73.955875, 40.765832, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '5kcxJoaX8egjlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 35, tzinfo=datetime.timezone.utc), 1, 3.34, -74.008052, 40.723168, -73.97382, 40.75538, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'gJtfOpxYAywd6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 8, tzinfo=datetime.timezone.utc), 5, 1.85, -74.008165, 40.738817, -73.997093, 40.725233, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'JVWCBsG1bsk23Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 43, tzinfo=datetime.timezone.utc), 1, 2.59, -73.953798, 40.781903, -73.988158, 40.779333, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'o/8exXAAZWgQQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 14, tzinfo=datetime.timezone.utc), 2, 2.85, -73.972683, 40.78698, -73.9694, 40.756663, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'cRGIEEn3/o1WzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 0, tzinfo=datetime.timezone.utc), 1, 1.62, -73.978672, 40.763748, -73.993172, 40.755307, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'pyRQ3gNX6CptqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 1, 2.9, -73.988968, 40.757922, -74.00806, 40.730992, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'nYOqCJuMmsESuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 19, 59, tzinfo=datetime.timezone.utc), 2, 3.02, -73.955355, 40.764348, -73.990557, 40.745323, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'PTKn53A1rgMk3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 23, tzinfo=datetime.timezone.utc), 3, 1.32, -73.991218, 40.750267, -73.97821, 40.749965, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'R0xjN/lrSau2Ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 56, tzinfo=datetime.timezone.utc), 5, 2.43, -73.979573, 40.771203, -73.953207, 40.782853, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'O3S42WSYbsk5dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 34, tzinfo=datetime.timezone.utc), 2, 3.33, -73.974392, 40.750618, -73.99275, 40.713962, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'z3uJcgx9076ZAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 28, tzinfo=datetime.timezone.utc), 1, 2.16, -73.980137, 40.734438, -74.008023, 40.728685, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Y2ah6WvZYEwQAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 32, tzinfo=datetime.timezone.utc), 2, 1.34, -73.968655, 40.754278, -73.993135, 40.762792, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'psHdK3Cd/CLlmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 24, tzinfo=datetime.timezone.utc), 5, 2.68, -73.99715, 40.742028, -73.99076, 40.771835, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'BY11ZzFhqwRUNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 20, tzinfo=datetime.timezone.utc), 2, 1.55, -73.963385, 40.77159, -73.983123, 40.76195, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'mwLaCDW9YyGU9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 40, tzinfo=datetime.timezone.utc), 1, 2.63, -74.003315, 40.71426, -73.975465, 40.724955, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'knu/wsyYJzkZDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 34, tzinfo=datetime.timezone.utc), 1, 2.55, -73.981155, 40.758655, -73.953088, 40.778317, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'o9fdyTEYsEu8zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 30, tzinfo=datetime.timezone.utc), 3, 2.59, -73.989825, 40.75697, -73.958397, 40.76876, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'weli3GKsc0FtEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 28, tzinfo=datetime.timezone.utc), 2, 2.58, -73.999602, 40.738582, -73.97839, 40.766812, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '20/MUWUMNYl+aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 8, tzinfo=datetime.timezone.utc), 5, 2.2, -73.984008, 40.780718, -73.960182, 40.770522, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '3fYvNGBjugspJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 38, tzinfo=datetime.timezone.utc), 1, 2.09, -73.98831, 40.769765, -73.98831, 40.769765, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'SyDDko6xAVJ6OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 33, tzinfo=datetime.timezone.utc), 1, 0.55, -73.970597, 40.760785, -73.984673, 40.7512, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'hBCwkUij2E+9wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 3, tzinfo=datetime.timezone.utc), 1, 2.49, -73.981483, 40.749898, -73.959273, 40.781198, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'ZwcjMwxHalNFRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 34, tzinfo=datetime.timezone.utc), 1, 3.15, -73.98554, 40.75274, -73.95693, 40.784307, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'N50gfpNxzU1ZOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 0, tzinfo=datetime.timezone.utc), 1, 3.13, -73.991707, 40.764688, -74.009865, 40.722333, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'ETZreccVKtCJ1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 31, tzinfo=datetime.timezone.utc), 5, 1.99, -73.974908, 40.756275, -74.000588, 40.757837, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'HeWrZ/AjxK7bDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 59, tzinfo=datetime.timezone.utc), 5, 2.48, -73.966522, 40.772227, -73.974422, 40.795875, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'hTHa22a9SNmb/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 8, tzinfo=datetime.timezone.utc), 1, 2.83, 0.0, 0.0, 0.0, 0.0, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '232orQ7SbNpNXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 54, tzinfo=datetime.timezone.utc), 1, 2.79, -74.01612, 40.711708, -73.993247, 40.737788, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'TssYobPa8ZrL0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 12, tzinfo=datetime.timezone.utc), 5, 1.97, -73.972572, 40.780987, -73.971445, 40.763542, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'nuhV5rYx9drzsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 7, tzinfo=datetime.timezone.utc), 1, 2.91, -73.989448, 40.740737, -73.96361, 40.762248, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'E6LTCttoTdQZOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 3, tzinfo=datetime.timezone.utc), 4, 3.32, -73.987363, 40.72466, -73.957458, 40.766212, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'oalSFRLe+THPXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 31, tzinfo=datetime.timezone.utc), 1, 2.58, -74.000108, 40.717862, -73.984625, 40.748278, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '2Ker5khXt0FpfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 24, tzinfo=datetime.timezone.utc), 5, 2.75, -73.983153, 40.766577, -73.96216, 40.779497, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'rkyS+qoRFv9NQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 36, tzinfo=datetime.timezone.utc), 2, 2.99, -74.004727, 40.716235, -73.98486, 40.75377, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'kZa6lzrD13WyWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 5, tzinfo=datetime.timezone.utc), 4, 3.52, -73.97272, 40.764928, -73.939013, 40.805148, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'cPHzaHTtwuppjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 47, tzinfo=datetime.timezone.utc), 5, 3.2, -73.998277, 40.72627, -73.954717, 40.716662, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'iMNVhkeV9F91Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 12, tzinfo=datetime.timezone.utc), 1, 2.14, -74.006338, 40.751207, -73.975343, 40.74794, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '8W3tM1lD0RROgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 43, tzinfo=datetime.timezone.utc), 2, 2.71, -73.981017, 40.725348, -73.957008, 40.714178, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'ht6DfrKvtyJdUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 12, tzinfo=datetime.timezone.utc), 2, 3.32, -73.989568, 40.745597, -73.981598, 40.778673, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'K7KQWWVWyYs9kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 19, tzinfo=datetime.timezone.utc), 2, 1.65, -73.988033, 40.75081, -73.981075, 40.764053, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'a1NrIk4pOIPJvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 31, tzinfo=datetime.timezone.utc), 1, 2.21, -73.977773, 40.73411, -73.97697, 40.75673, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'TWdTb8abVAKBxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 32, tzinfo=datetime.timezone.utc), 1, 3.27, -73.977237, 40.733988, -73.967422, 40.76851, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'mRLn+qBBYNv+sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 47, tzinfo=datetime.timezone.utc), 1, 2.84, -73.95584, 40.764007, -73.98938, 40.757773, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'x969+onR6vNNAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 5, tzinfo=datetime.timezone.utc), 4, 2.73, -73.990568, 40.693317, -74.00773, 40.707233, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'LdAklCz+Nx3A5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 1, 55, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 2, 8, 21, tzinfo=datetime.timezone.utc), 1, 2.9, -73.9999, 40.728482, -73.974483, 40.75846, 'Cash', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'H7ni3Xnv3d1g+A', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 8, tzinfo=datetime.timezone.utc), 1, 2.89, -74.016293, 40.706418, -74.007735, 40.747263, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Nm3zeghQxKZz4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 56, tzinfo=datetime.timezone.utc), 5, 3.08, -73.99704, 40.729793, -73.972885, 40.761787, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'xcicqDBqJcblWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 42, tzinfo=datetime.timezone.utc), 5, 3.45, -73.993195, 40.717287, -73.980753, 40.70925, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'i2AAYAqX/TFGew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), 1, 2.33, -74.005503, 40.738622, -73.9958, 40.716523, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'JYkp0OkjVeDYaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 42, tzinfo=datetime.timezone.utc), 1, 3.2, -73.98547, 40.748115, -73.981783, 40.714553, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'Wq0TuNtw79F0ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 42, tzinfo=datetime.timezone.utc), 1, 1.57, -73.992463, 40.735522, -73.976332, 40.748952, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', 'x6mGGDo7xaldFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 10, tzinfo=datetime.timezone.utc), 1, 2.44, -73.975132, 40.752183, -74.004868, 40.740835, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685115.6930006', '35/GjdW2Y34+cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 40, tzinfo=datetime.timezone.utc), 2, 3.17, -74.01102, 40.71557, -73.978778, 40.736473, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '4MUr/iR1o5s3ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 5, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 5, 58, tzinfo=datetime.timezone.utc), 6, 3.18, -73.979578, 40.735007, -73.984548, 40.769613, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'obmhV9n3JvMauQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 13, tzinfo=datetime.timezone.utc), 5, 3.43, -73.98624, 40.734628, -73.954438, 40.776335, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '51SyFtvOpaQu/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 13, tzinfo=datetime.timezone.utc), 1, 3.25, -73.99814, 40.745702, -73.98105, 40.784737, 'Credit', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '64Q9/fncv0ks1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 31, tzinfo=datetime.timezone.utc), 1, 3.37, -74.010153, 40.709812, -73.985128, 40.746825, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'VEqF4Smie4QdSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 54, tzinfo=datetime.timezone.utc), 3, 3.41, -74.00741, 40.743348, -73.968967, 40.767448, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'oiccJ/8alkscYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 27, tzinfo=datetime.timezone.utc), 1, 3.65, -73.952155, 40.790057, -73.984908, 40.747182, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'y0eG0dQr2jnSkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 47, tzinfo=datetime.timezone.utc), 1, 3.04, -73.95584, 40.772458, -73.988115, 40.745958, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '3hkDAzC6D/ctew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 51, tzinfo=datetime.timezone.utc), 5, 3.49, -73.988897, 40.749143, -73.975847, 40.788092, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'd+D1IDe7oSxwhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 56, tzinfo=datetime.timezone.utc), 1, 3.27, -73.985152, 40.760573, -73.996365, 40.72212, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '7YYpww0pWlgMOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 19, tzinfo=datetime.timezone.utc), 1, 3.05, -73.98118, 40.749945, -73.980658, 40.721535, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'Ov4a/d5pm/GxTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 52, tzinfo=datetime.timezone.utc), 5, 3.16, -74.000357, 40.71827, -73.955248, 40.71046, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'zFRuskmyOcKMtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 2, tzinfo=datetime.timezone.utc), 1, 2.59, -73.994813, 40.750127, -73.993532, 40.727335, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'SuwpDDVqloBf1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 11, tzinfo=datetime.timezone.utc), 5, 2.02, -73.98384, 40.72558, -74.003688, 40.742923, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'cXRue8Hi2Z2Vig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 34, tzinfo=datetime.timezone.utc), 1, 1.99, -74.006032, 40.739955, -73.982165, 40.746, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'imzJm9pqNHfSOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 59, tzinfo=datetime.timezone.utc), 2, 2.75, -73.962993, 40.810868, -73.98236, 40.77549, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'xu9VTNGOzUs0TA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 57, tzinfo=datetime.timezone.utc), 3, 2.87, -74.005947, 40.735967, -73.973215, 40.754055, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '8hgSkBIQJpDcOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 24, tzinfo=datetime.timezone.utc), 1, 3.53, -73.983952, 40.761245, -73.945477, 40.790333, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'lOpCSfEzyDLitA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 37, tzinfo=datetime.timezone.utc), 1, 2.76, -73.983637, 40.726098, -74.014955, 40.716348, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'UBg45eMblyDXXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 23, tzinfo=datetime.timezone.utc), 1, 3.21, -73.9464, 40.74247, -73.98624, 40.733623, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'DDaPbr3lpRCmfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 14, tzinfo=datetime.timezone.utc), 1, 2.27, -73.972145, 40.755007, -73.990617, 40.734617, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'imU9V94BPXA2jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 52, tzinfo=datetime.timezone.utc), 1, 3.22, -73.979718, 40.764215, -73.95491, 40.803972, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'DYtf81woowT5uQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 32, tzinfo=datetime.timezone.utc), 5, 3.62, -73.994022, 40.751347, -73.95862, 40.776898, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'QwPj2FvKpkJKHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 40, tzinfo=datetime.timezone.utc), 1, 2.92, -73.984638, 40.748397, -73.953638, 40.76676, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'NOwfVG9+229ODg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 37, tzinfo=datetime.timezone.utc), 2, 2.52, -73.98505, 40.763377, -73.991813, 40.735315, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'um0/m/wxvRjt2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 46, tzinfo=datetime.timezone.utc), 1, 2.79, -73.95588, 40.775303, -73.984095, 40.748372, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '/6k8f5muBAPMvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 48, tzinfo=datetime.timezone.utc), 1, 2.87, -73.97505, 40.761715, -74.001608, 40.732237, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'XJ2spxOSbQIazg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 11, tzinfo=datetime.timezone.utc), 1, 2.52, -73.972343, 40.757092, -74.003683, 40.751323, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'tuLZaA9+kcabcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 40, tzinfo=datetime.timezone.utc), 2, 2.97, -73.986885, 40.739363, -73.959213, 40.776163, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'VkoGtVhJgIemEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 29, tzinfo=datetime.timezone.utc), 1, 2.75, -73.988735, 40.737642, -73.969087, 40.762523, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'La2KpiQ4vSiV0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 16, tzinfo=datetime.timezone.utc), 1, 1.74, -73.994573, 40.749603, -73.9922, 40.733917, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'PhZFdshQIn3kTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 27, tzinfo=datetime.timezone.utc), 2, 3.27, -73.968088, 40.756725, -74.005638, 40.745638, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', '/08RdrNV6C5KXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 55, tzinfo=datetime.timezone.utc), 2, 3.67, -73.991077, 40.760573, -73.971757, 40.799665, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'swb3p+WgQPSr8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 46, tzinfo=datetime.timezone.utc), 1, 2.73, -74.005612, 40.740597, -73.982143, 40.755932, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 'w/Mlokjb43pMOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 36, tzinfo=datetime.timezone.utc), 1, 3.46, -73.966365, 40.804822, -73.993767, 40.766445, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685115.6930006', 're4LoNfJSdaahQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.38, -73.988702, 40.736523, -74.005658, 40.740228, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '2idSiIF0H394SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 54, tzinfo=datetime.timezone.utc), 1, 2.75, -73.989193, 40.714802, -73.958888, 40.76253, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'APsyc0A/G1hKFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 2, tzinfo=datetime.timezone.utc), 1, 3.03, -73.990398, 40.718972, -73.973698, 40.68755, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '4mXOpfH0KRzDtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 32, tzinfo=datetime.timezone.utc), 5, 2.72, -73.990217, 40.752185, -74.003175, 40.717318, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'z3PayI4cdpVFbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 18, tzinfo=datetime.timezone.utc), 1, 2.55, -73.969715, 40.759997, -73.97938, 40.783613, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '9KEyFCUssmBgkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 45, tzinfo=datetime.timezone.utc), 1, 2.74, -73.972445, 40.745088, -73.959338, 40.777032, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'MI5bD1mG6u0fLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 13, tzinfo=datetime.timezone.utc), 1, 2.15, -73.98949, 40.737748, -73.998797, 40.751637, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'MBe0DApXAlc0yQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 35, tzinfo=datetime.timezone.utc), 1, 3.29, -74.007207, 40.71323, -73.983617, 40.724523, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'qB8vM10OaW7cQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 52, tzinfo=datetime.timezone.utc), 5, 2.67, -73.96774, 40.762977, -73.997745, 40.741137, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'TrFv0iZcFDusIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 53, tzinfo=datetime.timezone.utc), 2, 2.82, -73.971763, 40.749175, -73.963892, 40.757082, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'cTah2J4HhN9kQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 53, tzinfo=datetime.timezone.utc), 5, 3.21, -73.992035, 40.744215, -73.959705, 40.777922, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'UFT1xozDOPxL+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 40, tzinfo=datetime.timezone.utc), 1, 2.69, -73.970417, 40.79669, -73.945962, 40.773575, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'JwfG88poBrY++A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 28, tzinfo=datetime.timezone.utc), 1, 2.58, -73.981388, 40.767153, -73.989442, 40.741632, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'gHaosDyKJH+ULA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 44, tzinfo=datetime.timezone.utc), 5, 2.79, -73.985917, 40.755592, -73.986162, 40.730863, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '+sgww8gxYXNrFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 43, tzinfo=datetime.timezone.utc), 5, 2.35, -73.980632, 40.765065, -73.985338, 40.73869, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'BTr6QTDF5txChQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 27, tzinfo=datetime.timezone.utc), 2, 1.42, -73.975472, 40.755207, -73.982225, 40.769485, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'blMWl/rO/pL0xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 51, tzinfo=datetime.timezone.utc), 1, 1.97, -73.993155, 40.752613, -73.968085, 40.758242, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'UV9QE0ZRJxE24g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 45, tzinfo=datetime.timezone.utc), 1, 3.07, -74.000173, 40.721417, -73.96149, 40.716318, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '9oCGuGjv1TwMFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 29, tzinfo=datetime.timezone.utc), 5, 1.67, -73.96722, 40.762618, -73.988187, 40.761635, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'P6MnTAkD4Wj+HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 40, tzinfo=datetime.timezone.utc), 1, 2.04, -73.977112, 40.755383, -73.953183, 40.766642, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'Ayib4NRfLbz0DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 47, tzinfo=datetime.timezone.utc), 4, 1.82, -73.980848, 40.765838, -74.002627, 40.760742, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'YOO/gGm3bvCYgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 11, tzinfo=datetime.timezone.utc), 1, 2.86, -73.984498, 40.768817, -73.948407, 40.778195, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'jwXmwL9m1acv2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 29, tzinfo=datetime.timezone.utc), 2, 2.67, -73.97885, 40.772187, -73.980332, 40.74338, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '/ObQo4aQKmLuLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 4, tzinfo=datetime.timezone.utc), 1, 2.85, -73.969453, 40.749127, -73.947382, 40.781892, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '99u1yeJtGjw2Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 0, tzinfo=datetime.timezone.utc), 1, 3.28, -73.983355, 40.741463, -73.949793, 40.773767, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'eL+XADcKuZv4Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 46, tzinfo=datetime.timezone.utc), 1, 2.64, -73.988475, 40.748622, -73.996598, 40.722128, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', '60qVBAc/iCmkUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 43, tzinfo=datetime.timezone.utc), 1, 2.49, -73.991477, 40.730993, -74.009753, 40.746813, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685115.6930006', 'NTnCe5jRECz/uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 41, tzinfo=datetime.timezone.utc), 5, 3.19, -73.954938, 40.767398, -73.974737, 40.790662, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'nQTP4eDi1lwgsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 13, tzinfo=datetime.timezone.utc), 1, 4.13, -73.994047, 40.741303, -73.958153, 40.784632, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'VFNgettJAQt1fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 23, tzinfo=datetime.timezone.utc), 1, 4.41, -73.862932, 40.769232, -73.913233, 40.776508, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'DSYJH4XxQEPdqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 15, tzinfo=datetime.timezone.utc), 4, 3.89, -74.014202, 40.704352, -73.984455, 40.748642, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'SuRumFygaO6xdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 39, tzinfo=datetime.timezone.utc), 1, 3.47, -73.98804, 40.718872, -73.970882, 40.759962, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'WF/fTdC+frUYMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 32, tzinfo=datetime.timezone.utc), 1, 2.66, -73.997712, 40.765998, -73.974912, 40.749103, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '2xNIoh/4RjHaDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 22, tzinfo=datetime.timezone.utc), 1, 3.54, -73.954967, 40.800017, -73.979085, 40.758773, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'JmqnxFmPBiocxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 30, tzinfo=datetime.timezone.utc), 5, 2.8, -73.9506, 40.77922, -73.976775, 40.74873, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'XYYn4hKYqHO0tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 0, tzinfo=datetime.timezone.utc), 1, 4.41, -74.016538, 40.716303, -73.989537, 40.77143, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '4W9PQbX69x4nRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 1, 4.08, -73.959513, 40.798842, -73.99846, 40.75345, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '9rGyBIZuCbI9Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 11, tzinfo=datetime.timezone.utc), 1, 3.71, -73.99504, 40.749887, -74.014182, 40.709677, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'XIGmSwzi0TbW8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 4.2, -73.971537, 40.787478, -73.978815, 40.74077, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '6HMICAv/Nx2B4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 6, tzinfo=datetime.timezone.utc), 1, 2.97, -73.980328, 40.775422, -73.984243, 40.744332, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'tElpKIGWn3kDVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 38, tzinfo=datetime.timezone.utc), 5, 3.81, -73.992787, 40.753268, -73.962607, 40.79922, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'WqXKJqf3107hKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 10, tzinfo=datetime.timezone.utc), 2, 2.97, -73.984703, 40.759035, -74.004123, 40.7209, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'mbiJQnUdmE70LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 8, tzinfo=datetime.timezone.utc), 1, 1.68, -73.97735, 40.779643, -73.961365, 40.77173, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '32VNh4udKTDWUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 1, tzinfo=datetime.timezone.utc), 5, 2.45, -73.967098, 40.772347, -73.988822, 40.756625, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'XS3kF0SxSEfphA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 14, tzinfo=datetime.timezone.utc), 1, 3.97, -73.944472, 40.779438, -73.98133, 40.737155, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'EvvfuedwBzOhmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 52, tzinfo=datetime.timezone.utc), 1, 2.97, -74.002728, 40.714163, -73.977358, 40.751693, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'JrYIgRlQERMEgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 0, tzinfo=datetime.timezone.utc), 1, 3.63, -74.016632, 40.70993, -73.989993, 40.738727, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '3eZO9Jb/M4uTvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 25, tzinfo=datetime.timezone.utc), 1, 2.6, -73.999713, 40.734415, -73.982052, 40.76304, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'eJocM1fGWVkq7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 5, tzinfo=datetime.timezone.utc), 2, 4.44, -73.93768, 40.804038, -73.978732, 40.75071, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'H6HUK87m6/oo6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 15, tzinfo=datetime.timezone.utc), 1, 2.1, -73.99639, 40.725165, -73.996727, 40.717862, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'Y9kUz1UbxLFJbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 38, tzinfo=datetime.timezone.utc), 1, 3.71, -73.98191, 40.768067, -73.996333, 40.726867, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'oF15r0Nvkwjf9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 27, tzinfo=datetime.timezone.utc), 5, 2.98, -73.965375, 40.754373, -73.973805, 40.784138, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'QVgcQerIxd4NmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 10, tzinfo=datetime.timezone.utc), 2, 2.85, -73.95668, 40.786262, -73.980398, 40.752258, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '0LJDR5uL3L9a2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 16, tzinfo=datetime.timezone.utc), 1, 4.69, -73.975565, 40.74538, -74.011378, 40.703898, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'z5a95i5HJ0RWEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 41, tzinfo=datetime.timezone.utc), 1, 2.16, -74.009897, 40.712753, -73.984427, 40.724805, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'dBGDTdXcbXf4ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 46, tzinfo=datetime.timezone.utc), 5, 4.82, -73.981215, 40.733357, -73.952682, 40.789358, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'GAszh72cGwFUrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), 1, 3.32, -73.977408, 40.769765, -74.00572, 40.740338, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'VSm0SvdpnQfkNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 14, tzinfo=datetime.timezone.utc), 1, 2.91, -73.993057, 40.751907, -74.005157, 40.718948, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'XpefNdMtsFZ4GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), 2, 4.31, -73.992193, 40.748653, -73.945482, 40.778668, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'wBa51eLM5ri7Ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 56, tzinfo=datetime.timezone.utc), 2, 3.45, -73.962872, 40.75783, -73.991778, 40.742503, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'S2IN7DSrPIVWow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 41, tzinfo=datetime.timezone.utc), 3, 3.25, -73.97748, 40.763638, -73.96222, 40.802308, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '0hXo1qHLdF0TGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 1, tzinfo=datetime.timezone.utc), 2, 2.51, -73.979743, 40.735057, -73.990332, 40.757382, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'renyKfSNqGlBJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 18, tzinfo=datetime.timezone.utc), 1, 3.63, -73.978152, 40.757282, -74.004112, 40.717767, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'u6SCSsxC5xeo2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 2, tzinfo=datetime.timezone.utc), 1, 1.29, -73.967268, 40.769388, -73.960772, 40.760813, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'hhuaPhvRL57ctw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 45, tzinfo=datetime.timezone.utc), 5, 3.53, -73.953418, 40.776033, -73.99167, 40.749443, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'Uhs+sBauCCFwug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 2, tzinfo=datetime.timezone.utc), 2, 4.29, -74.006833, 40.730233, -73.964435, 40.77063, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'y7iH1yymWnWL1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 19, tzinfo=datetime.timezone.utc), 1, 3.51, -74.006948, 40.734952, -73.984548, 40.76725, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '0bIlv4nyVF6Dpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 34, tzinfo=datetime.timezone.utc), 1, 2.51, -73.981765, 40.778727, -73.975008, 40.752208, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'Fvy8/w9ylsALYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 31, tzinfo=datetime.timezone.utc), 2, 3.03, -74.000837, 40.828912, -73.956083, 40.837638, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'ZtNKw0I6y1YFgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 54, tzinfo=datetime.timezone.utc), 1, 4.54, -73.987957, 40.718612, -73.964397, 40.771347, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '7kWMjKLLboIqNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 9, tzinfo=datetime.timezone.utc), 1, 2.92, -73.98006, 40.775412, -73.983985, 40.756853, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'zDPWWG+JicIsLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 38, tzinfo=datetime.timezone.utc), 5, 3.38, -73.964645, 40.80712, -73.983268, 40.762592, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', '5VLIcchoS+Wjrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 2, tzinfo=datetime.timezone.utc), 1, 2.41, -73.998665, 40.734632, -73.993997, 40.761437, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685115.6930006', 'j3DieIBjeTpCyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 4, tzinfo=datetime.timezone.utc), 1, 4.48, -73.947423, 40.779187, -73.944663, 40.829025, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'xggUjRAypJUF7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 51, tzinfo=datetime.timezone.utc), 2, 4.03, -73.993548, 40.721522, -73.990915, 40.765977, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'BoyQ3VnXpARs8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 5, tzinfo=datetime.timezone.utc), 1, 4.12, -74.007928, 40.738068, -73.969683, 40.786847, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'VHtSDBmXnSIIEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 21, tzinfo=datetime.timezone.utc), 3, 2.37, -73.987067, 40.776045, -73.984757, 40.742112, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', '4Dv9dOw14aQy7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 34, tzinfo=datetime.timezone.utc), 1, 3.4, -74.015145, 40.718165, -74.002792, 40.760552, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'UeOE7+uGItXl1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 58, tzinfo=datetime.timezone.utc), 2, 4.09, -73.970392, 40.758388, -73.907353, 40.743247, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'FX87owtnOJ7UJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 20, tzinfo=datetime.timezone.utc), 1, 4.05, -73.998228, 40.75509, -73.977138, 40.71913, 'Credit', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'K9gnBowY7wqzGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 4, tzinfo=datetime.timezone.utc), 1, 4.03, -73.96372, 40.761415, -73.956735, 40.805875, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'J4pZzBSRVWlspw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 1, 4.79, -74.006052, 40.740345, -73.966352, 40.799597, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'KQO5xmeRUfCXQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 32, tzinfo=datetime.timezone.utc), 3, 4.35, -73.994542, 40.726165, -73.952345, 40.772923, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'KHc22xccywpEzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 49, tzinfo=datetime.timezone.utc), 1, 4.12, -74.007548, 40.705558, -73.943693, 40.711707, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'Gzh89mABiQilIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 4, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 5, 2, tzinfo=datetime.timezone.utc), 1, 4.65, -74.000695, 40.737402, -73.95201, 40.777757, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'VvEJHO1TzPQ/Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 10, tzinfo=datetime.timezone.utc), 2, 4.09, -73.998427, 40.7245, -73.968618, 40.764278, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'JuEfVn1nR0RDpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 52, tzinfo=datetime.timezone.utc), 1, 4.43, -73.957198, 40.760867, -73.92206, 40.774633, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'DOfX3fjBBY4+Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 34, tzinfo=datetime.timezone.utc), 1, 3.48, -73.959853, 40.762622, -74.004292, 40.758497, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', '8GjDOcWzzxuT1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 3, tzinfo=datetime.timezone.utc), 2, 4.16, -73.983038, 40.722603, -73.982383, 40.767283, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', '0WdQYvUy5qSmhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 6, tzinfo=datetime.timezone.utc), 1, 3.65, -73.988507, 40.7485, -73.950282, 40.779908, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'lwwBl0ucqZto9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 12, tzinfo=datetime.timezone.utc), 5, 3.08, -73.971027, 40.76337, -73.98869, 40.73875, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', '453g6n7HPQO6hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 51, tzinfo=datetime.timezone.utc), 1, 4.74, -73.977567, 40.78423, -73.940978, 40.839295, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'SQy84XLjnKwnvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 7, tzinfo=datetime.timezone.utc), 1, 4.06, 0.0, 0.0, 0.0, 0.0, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'C2d5V+P0lcyFrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 30, tzinfo=datetime.timezone.utc), 2, 4.43, -73.995508, 40.749903, -73.96518, 40.803647, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'rnPbpb4RC6fzrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 29, tzinfo=datetime.timezone.utc), 1, 3.84, -74.005802, 40.74035, -73.974595, 40.760572, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'Wd2eIpbyDYw+YQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 25, tzinfo=datetime.timezone.utc), 1, 3.6, -73.993207, 40.697172, -73.979257, 40.661737, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'nJrWzGHVEMY6Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 58, tzinfo=datetime.timezone.utc), 5, 4.54, -73.974783, 40.758703, -73.94149, 40.801793, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'oIsKldtVTma1gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 3, tzinfo=datetime.timezone.utc), 3, 4.44, -73.952625, 40.776328, -74.000307, 40.73738, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'T8Qb4WwxRDIFCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 33, tzinfo=datetime.timezone.utc), 1, 3.7, -74.0101, 40.706295, -74.010295, 40.706348, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'AWLLBlSucKRS6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 26, tzinfo=datetime.timezone.utc), 2, 3.64, -73.956298, 40.818667, -73.98234, 40.772835, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', 'RBSxa07aKfj2DQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 30, tzinfo=datetime.timezone.utc), 1, 3.9, -73.976143, 40.756608, -74.011183, 40.728957, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685115.6930006', '8r/Hwa29hoZdVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), 2, 3.1, -73.970388, 40.793933, -73.963552, 40.762788, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'FxvR6P3+U6umHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 21, tzinfo=datetime.timezone.utc), 5, 2.5, -73.985913, 40.759735, -73.965427, 40.762927, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'j0cwUEdlnUkceg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 29, tzinfo=datetime.timezone.utc), 2, 1.31, -73.975775, 40.761302, -74.000045, 40.74268, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'uKK6pvT8R8IeZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 37, tzinfo=datetime.timezone.utc), 2, 3.48, -74.015872, 40.71134, -73.99472, 40.750285, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '5htttAXbmCAhng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 59, tzinfo=datetime.timezone.utc), 2, 2.46, -73.969668, 40.790528, -73.98781, 40.759872, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '3M2G34gveFKLtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 42, tzinfo=datetime.timezone.utc), 2, 3.17, -73.977855, 40.7547, -73.97135, 40.782487, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'LquU4nt54eF6bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 35, tzinfo=datetime.timezone.utc), 5, 2.8, -73.956537, 40.78049, -73.98431, 40.748623, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'eQZiMtFRh99Y7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 18, tzinfo=datetime.timezone.utc), 5, 4.19, -74.006777, 40.713862, -73.989567, 40.759227, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'KKKRHMN6ZvDqlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 39, tzinfo=datetime.timezone.utc), 5, 3.81, -73.999865, 40.741478, -73.981592, 40.781085, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '43OymXP0vMEaHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 48, tzinfo=datetime.timezone.utc), 1, 2.62, -73.97136, 40.763623, -73.995917, 40.73285, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'DIBTq2ykahtceA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 17, tzinfo=datetime.timezone.utc), 1, 2.64, -73.991305, 40.75012, -73.961378, 40.761798, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'w59IG28u8545Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 5, tzinfo=datetime.timezone.utc), 5, 2.33, -73.958292, 40.760578, -73.987583, 40.762703, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '7evFS48XEeBl7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 5, tzinfo=datetime.timezone.utc), 1, 1.61, -73.971087, 40.761148, -73.989747, 40.756315, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '+moWWgTMr/LrxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.87, -73.979672, 40.760117, -73.987103, 40.738788, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'qnyX7mChVtv68Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 22, tzinfo=datetime.timezone.utc), 1, 2.87, -73.953545, 40.810252, -73.973655, 40.763505, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'Cjq5L1HLQ5mibw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 3, tzinfo=datetime.timezone.utc), 2, 3.75, -73.97796, 40.779527, -74.005567, 40.740103, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', '1xjRS0QhNVgehw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 35, tzinfo=datetime.timezone.utc), 1, 3.65, -73.956833, 40.785898, -73.993143, 40.762007, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'zqn+28p0fBwSxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 47, tzinfo=datetime.timezone.utc), 5, 3.26, -73.974203, 40.752093, -73.974253, 40.787408, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'k/csy8jtbSqXTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 6, tzinfo=datetime.timezone.utc), 1, 3.63, -73.983072, 40.755867, -73.968238, 40.800615, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685115.6930006', 'SnKoje0HA4MBKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 7, tzinfo=datetime.timezone.utc), 1, 4.51, -73.991762, 40.751493, -74.013345, 40.705692, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'TKjqcGnuMOoJZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 48, tzinfo=datetime.timezone.utc), 1, 3.58, -73.999595, 40.72334, -73.971112, 40.764287, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '6sE8GgZvNgn+HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 9, 17, tzinfo=datetime.timezone.utc), 1, 5.63, -73.978037, 40.745457, -73.966032, 40.808627, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'y0qs6rzwzdMvjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 56, tzinfo=datetime.timezone.utc), 1, 2.93, -73.99168, 40.737645, -73.961542, 40.756165, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '9zqNCLCOw9+qDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 44, tzinfo=datetime.timezone.utc), 1, 4.09, -73.99918, 40.744217, -74.013553, 40.702308, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'H/lViR/CabKd0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 42, tzinfo=datetime.timezone.utc), 3, 4.91, -73.982302, 40.74582, -73.964728, 40.801662, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'gqShNj1ivUeO2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 21, tzinfo=datetime.timezone.utc), 5, 3.2, -73.952487, 40.779438, -73.969828, 40.778055, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'SWnXZuZnIqHGBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 7, tzinfo=datetime.timezone.utc), 1, 4.86, -73.894665, 40.740212, -73.968535, 40.764383, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'MFEyOUDMIJTUKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 39, tzinfo=datetime.timezone.utc), 1, 5.34, -73.947825, 40.771615, -73.994782, 40.725887, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'CcIchl4/Ek7Cbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 26, tzinfo=datetime.timezone.utc), 1, 3.89, 0.0, 0.0, 0.0, 0.0, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '18hQpA2OAOprDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 3, tzinfo=datetime.timezone.utc), 1, 3.37, -73.991607, 40.755717, -73.951918, 40.779222, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'o/+5SuhU7W207A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 48, tzinfo=datetime.timezone.utc), 5, 3.86, -73.95434, 40.77809, -73.96053, 40.81606, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'GyK119mKNOBCVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 48, tzinfo=datetime.timezone.utc), 1, 4.45, -73.952083, 40.772948, -73.990377, 40.735168, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'SMNIxHGTtyBbGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 20, tzinfo=datetime.timezone.utc), 2, 5.24, -73.982012, 40.770725, -74.016032, 40.710762, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '/ZjyZj/4b7ZypA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 9, tzinfo=datetime.timezone.utc), 5, 5.66, -73.969728, 40.757158, -74.012628, 40.702012, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'nTiSEwIYM8OA0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 22, 31, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 49, 55, tzinfo=datetime.timezone.utc), 1, 4.8, -73.98768, 40.780143, -74.004213, 40.719325, 'Cash', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'ZMdpINb5HqW2Sg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 49, tzinfo=datetime.timezone.utc), 5, 4.43, -73.986967, 40.750953, -73.9651, 40.806248, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '5/WmKdLnUyUptg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 1, tzinfo=datetime.timezone.utc), 5, 3.07, -73.972305, 40.743317, -73.960302, 40.779027, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'XB9gvQHmDGWLCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 57, tzinfo=datetime.timezone.utc), 2, 3.84, -73.97064, 40.76503, -73.967823, 40.807807, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '0GkVbqr9S/48iA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 6, tzinfo=datetime.timezone.utc), 1, 3.95, -73.965373, 40.806022, -73.97508, 40.76126, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'iCKIMl1GnM5feQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), 1, 3.85, -73.9666, 40.770142, -73.924743, 40.741323, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'xmca+uacq+pUmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 51, tzinfo=datetime.timezone.utc), 1, 2.98, -73.99496, 40.744888, -74.009653, 40.71118, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'vI2kJ2MBLn7W9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 46, tzinfo=datetime.timezone.utc), 1, 3.78, -73.987225, 40.751947, -74.012022, 40.708235, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 'oel1u4AM5PZDoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 50, tzinfo=datetime.timezone.utc), 5, 2.82, -73.96607, 40.773897, -73.995005, 40.752802, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', 't18kXBUw1ZViPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 50, tzinfo=datetime.timezone.utc), 1, 4.24, -73.97367, 40.763612, -74.006715, 40.719812, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685115.6930006', '7VvyUVhoeAo9yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 17, tzinfo=datetime.timezone.utc), 5, 3.61, -74.00701, 40.734847, -73.997488, 40.761053, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'W2cCvUA7y/u8hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 26, tzinfo=datetime.timezone.utc), 1, 4.22, -73.997817, 40.724122, -73.964062, 40.76984, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'gWwaAPYzL0a35Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 4, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 4, 36, tzinfo=datetime.timezone.utc), 1, 5.16, -73.966773, 40.756647, -73.90675, 40.760448, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'MfB0Dlki4oBYDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 2, 46, tzinfo=datetime.timezone.utc), 5, 5.61, -74.000847, 40.736535, -73.947065, 40.783007, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'R4NMTOV2jbDHJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 52, tzinfo=datetime.timezone.utc), 3, 4.0, -73.97751, 40.752142, -73.960177, 40.798155, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'UfWlBlErZYQS5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 17, tzinfo=datetime.timezone.utc), 1, 5.76, -74.009468, 40.705017, -73.967787, 40.7552, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', '3A8DjTaWDXQYLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 47, tzinfo=datetime.timezone.utc), 5, 4.63, -73.958137, 40.71344, -74.001178, 40.74647, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'Sqg3FH48ZCn50Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 7, tzinfo=datetime.timezone.utc), 1, 4.8, -74.008063, 40.716877, -73.989127, 40.774937, 'Credit', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'sJuByzx69SPjYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 55, tzinfo=datetime.timezone.utc), 1, 3.69, -73.98195, 40.767437, -73.993642, 40.727427, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'ndEN+MXO5ipZxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 43, tzinfo=datetime.timezone.utc), 4, 5.09, -73.967742, 40.757325, -74.002087, 40.708352, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'A1O9xy4RuYOIog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 50, tzinfo=datetime.timezone.utc), 5, 4.49, -73.971713, 40.782143, -74.007377, 40.73296, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'bKI8Lg5So9y+8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 50, tzinfo=datetime.timezone.utc), 1, 5.03, -74.00079, 40.746998, -73.950678, 40.804158, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'Ims5HZMptx35qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 33, tzinfo=datetime.timezone.utc), 5, 4.69, -73.980138, 40.730168, -73.939653, 40.688772, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'JjWVKhbyMpQrig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 56, tzinfo=datetime.timezone.utc), 1, 4.19, -73.981245, 40.755755, -73.9579, 40.774258, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'ZkxTx4wcxZYY8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 59, tzinfo=datetime.timezone.utc), 5, 5.35, -73.95243, 40.773207, -73.983847, 40.725663, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'TZGsqruoA2Mqew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 3, tzinfo=datetime.timezone.utc), 3, 5.86, -74.003335, 40.706102, -73.965425, 40.754853, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'czoqiiw6sa/CLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 7, tzinfo=datetime.timezone.utc), 2, 5.09, -73.993292, 40.727788, -73.978152, 40.78315, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'YxV0ju8IPwFiCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 28, tzinfo=datetime.timezone.utc), 2, 4.76, -74.00026, 40.730155, -73.978953, 40.67245, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'x9jnf0Jx6pHAqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 5, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 5, 54, tzinfo=datetime.timezone.utc), 1, 4.39, -73.988848, 40.723402, -73.932, 40.698407, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'wcHUIW3LTowOcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 34, tzinfo=datetime.timezone.utc), 1, 5.31, -73.994387, 40.76103, -73.944523, 40.824255, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'O406iRMv0A9EwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), 1, 4.55, -74.016168, 40.710972, -73.987953, 40.759155, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'IaX9d2TpJe5Qqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 52, tzinfo=datetime.timezone.utc), 5, 5.2, 0.0, 0.0, 0.0, 0.0, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', '90nEuwGMty96Hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 55, tzinfo=datetime.timezone.utc), 2, 5.89, -74.004318, 40.70692, -73.960872, 40.765248, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'wWSVIie7qthQKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 42, tzinfo=datetime.timezone.utc), 1, 4.3, -74.018067, 40.705737, -73.989412, 40.743053, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'EFrVzVOAwI/gvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 38, tzinfo=datetime.timezone.utc), 1, 5.06, -73.969773, 40.774188, -73.986522, 40.759547, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'jr+2L4Dtywd/+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 51, tzinfo=datetime.timezone.utc), 5, 4.99, -73.959823, 40.813772, -73.991122, 40.751157, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'ftYgYDTQKRw9Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 57, tzinfo=datetime.timezone.utc), 1, 5.85, -73.980945, 40.71151, -73.909133, 40.728163, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'WX0aPZ0gczaELg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 8, tzinfo=datetime.timezone.utc), 5, 5.58, -73.948595, 40.777933, -73.987443, 40.72004, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'aLXq63oLfCeRdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 50, tzinfo=datetime.timezone.utc), 6, 4.77, -73.972133, 40.742673, -73.988912, 40.74156, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'X6efel6y1YY1Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 41, tzinfo=datetime.timezone.utc), 1, 5.34, -73.953707, 40.714105, -73.94661, 40.774005, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'yDhE/SS8qa1u4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 3, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 46, tzinfo=datetime.timezone.utc), 1, 5.46, -73.9818, 40.757557, -73.942815, 40.72683, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'dSWQIkQpr71PFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 42, tzinfo=datetime.timezone.utc), 5, 5.28, -73.98732, 40.75445, -73.932723, 40.801398, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'o5b7xd+qkUlvtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 51, tzinfo=datetime.timezone.utc), 2, 4.77, -73.999, 40.721555, -73.961122, 40.679617, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685115.6930006', 'ZhfT1K0zQhb1jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 19, tzinfo=datetime.timezone.utc), 1, 3.14, -73.9859, 40.74409, -73.953092, 40.765055, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'r/170dtfpepm+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 1, tzinfo=datetime.timezone.utc), 1, 3.66, -73.959567, 40.781152, -73.987288, 40.736073, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'wHiR6XKr3HIC2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 17, 0, tzinfo=datetime.timezone.utc), 1, 2.1, -73.937992, 40.797095, -73.916503, 40.818688, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'ev97FRYbnQXxVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 49, tzinfo=datetime.timezone.utc), 2, 4.92, -74.012387, 40.70691, -73.987445, 40.738947, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'zKL2oXdgpmEu+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 43, tzinfo=datetime.timezone.utc), 1, 4.7, -74.004448, 40.705395, -73.981238, 40.747893, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'n8crJJd1Y5UzfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 22, tzinfo=datetime.timezone.utc), 1, 3.18, -73.97963, 40.73536, -73.96681, 40.772437, 'Credit', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'AZXNpy5krRC7Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 34, tzinfo=datetime.timezone.utc), 5, 3.78, -74.00284, 40.723437, -73.971647, 40.757068, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'awuOHXb3iXu92Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 47, tzinfo=datetime.timezone.utc), 5, 5.94, -74.005418, 40.706792, -73.953812, 40.766632, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'baYpXRRA1jWzXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 49, tzinfo=datetime.timezone.utc), 1, 3.97, -73.977803, 40.777277, -73.987513, 40.732922, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'C0G3y3AMc2n9zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 17, tzinfo=datetime.timezone.utc), 5, 4.11, -73.997745, 40.73606, -73.977338, 40.783613, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685115.6930006', 'EraGyUwgIzDR5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 3, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 3, 31, tzinfo=datetime.timezone.utc), 1, 0.0, -73.99065, 40.75796, -73.99065, 40.75796, 'Credit', 16.0, 0.0, 0.0, 0.0, 16.0, '1705685115.6930006', 'Gq9YcOTEmWWCuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 42, tzinfo=datetime.timezone.utc), 1, 6.02, -73.975182, 40.792715, -73.9233, 40.760925, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '0v3pEw+ZVz4HWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 33, tzinfo=datetime.timezone.utc), 2, 5.5, -73.920692, 40.741285, -73.920615, 40.741053, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '91UfbcEQNYBN2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 51, tzinfo=datetime.timezone.utc), 5, 5.54, -73.987855, 40.760432, -73.93439, 40.757282, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'rrirh8JK+NZWtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 51, tzinfo=datetime.timezone.utc), 1, 6.28, -74.009402, 40.71341, -73.976393, 40.792863, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'Rbhi2NxOYPY3kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 57, tzinfo=datetime.timezone.utc), 1, 5.6, -73.977508, 40.758013, -73.952295, 40.711123, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'uFiBuvUynVmaXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 36, tzinfo=datetime.timezone.utc), 3, 5.99, -74.007688, 40.72884, -73.963143, 40.798905, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '23UoqPmWGdg66g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 2, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 2, 58, tzinfo=datetime.timezone.utc), 1, 5.88, -73.991545, 40.75985, -73.945568, 40.82225, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '27hTMS2dzvdWDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 58, tzinfo=datetime.timezone.utc), 1, 5.82, -73.97959, 40.77625, -73.894877, 40.755862, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '2EHbDYhwJNHsNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 0, 51, tzinfo=datetime.timezone.utc), 1, 6.34, -74.004685, 40.751975, -73.915932, 40.747267, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'hAej3NGmb9se/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 4, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 37, tzinfo=datetime.timezone.utc), 1, 6.98, -73.962475, 40.760738, -74.016362, 40.70591, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'rV5Gntf5BM/iXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 11, tzinfo=datetime.timezone.utc), 5, 5.4, -73.970212, 40.75758, -73.954365, 40.804813, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '/ffam5Ava9dwrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 32, tzinfo=datetime.timezone.utc), 2, 4.64, -74.005067, 40.73581, -73.963698, 40.768373, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'IIv43Ye3r5KINg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 27, tzinfo=datetime.timezone.utc), 1, 0.59, -74.01562, 40.711092, -73.968357, 40.767705, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '2n4ghUKFjo+2iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 30, tzinfo=datetime.timezone.utc), 2, 5.56, -74.00385, 40.725438, -73.972708, 40.787098, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '8n5bonyGbc1krg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 19, tzinfo=datetime.timezone.utc), 5, 5.67, -73.969432, 40.797758, -74.006397, 40.739168, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'i/W11Ccal1CC+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 36, tzinfo=datetime.timezone.utc), 1, 4.93, -73.983198, 40.756512, -73.907517, 40.75771, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'CJ/MW2CQy3mLxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 49, tzinfo=datetime.timezone.utc), 3, 5.42, -73.970007, 40.794772, -73.9775, 40.733242, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'g+t+X2wez/Y+9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 28, tzinfo=datetime.timezone.utc), 1, 6.85, -73.781853, 40.644767, -73.865965, 40.67082, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'dWSTWN4n0RqQ2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 55, tzinfo=datetime.timezone.utc), 5, 6.32, -73.78355, 40.648663, -73.740332, 40.70809, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '/C5925Y7VsB2dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 22, tzinfo=datetime.timezone.utc), 2, 6.16, -73.957192, 40.776842, -73.889588, 40.747355, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', '5cF7nbZm7tzRMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 14, tzinfo=datetime.timezone.utc), 1, 5.76, -73.999413, 40.743862, -73.939755, 40.715123, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685115.6930006', 'blzxMQ8Awwnn/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.0, -73.953877, 40.813338, -73.953868, 40.81334, 'CASH', 17.5, 0.5, 0.0, 0.0, 18.0, '1705685115.6930006', 'XgZV3Bs4uE3gRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 29, tzinfo=datetime.timezone.utc), 1, 6.29, -73.987368, 40.728947, -73.961695, 40.648557, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'XdgZPn3vW+KGYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 47, tzinfo=datetime.timezone.utc), 1, 7.64, -73.980617, 40.764535, -73.897972, 40.759967, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'y5AbmScTY+oibA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 30, tzinfo=datetime.timezone.utc), 1, 6.07, -73.963605, 40.757563, -73.869437, 40.749197, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'vwklAfN7ifbusg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 23, tzinfo=datetime.timezone.utc), 1, 7.35, -73.960865, 40.765597, -74.01701, 40.708335, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'GM+n67cle/VHEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 7, tzinfo=datetime.timezone.utc), 5, 6.97, -73.98648, 40.751343, -73.947428, 40.827618, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', '+WFyaM2GlmV/hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 14, tzinfo=datetime.timezone.utc), 5, 5.8, -73.948612, 40.774037, -73.951327, 40.80994, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'MV2akEe/yhMcjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 30, tzinfo=datetime.timezone.utc), 1, 6.2, -73.983397, 40.718648, -73.946738, 40.779913, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'ZdLrEzIl2Iauyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 51, tzinfo=datetime.timezone.utc), 3, 6.39, -74.00733, 40.73367, -73.947453, 40.779428, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'hk9FPYXc3a+CEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 35, tzinfo=datetime.timezone.utc), 1, 5.87, -73.97849, 40.73705, -73.942332, 40.712428, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'M6eTu+c720t9ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 6, tzinfo=datetime.timezone.utc), 6, 5.21, -73.985145, 40.76029, -73.917123, 40.741643, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'c8U7Wd2NWK/NmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 12, tzinfo=datetime.timezone.utc), 1, 5.51, -73.978635, 40.67918, -74.000003, 40.743107, 'Credit', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', 'sMBUAAX65rkzbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 5, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 8, tzinfo=datetime.timezone.utc), 1, 6.31, -73.987923, 40.759917, -73.904312, 40.776205, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', '9lyXfpG5/9ddhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 25, tzinfo=datetime.timezone.utc), 1, 6.93, -73.991438, 40.750027, -73.949755, 40.82211, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685115.6930006', '+AviVqKBAvSX0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 30, tzinfo=datetime.timezone.utc), 1, 0.0, -74.004965, 40.718703, -74.004962, 40.718688, 'Credit', 20.0, 0.0, 0.0, 0.0, 20.0, '1705685115.6930006', 'WeR15gdwJZALxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 7, tzinfo=datetime.timezone.utc), 2, 7.9, -73.966587, 40.80448, -73.90214, 40.862885, 'CASH', 20.5, 0.5, 0.0, 0.0, 21.0, '1705685115.6930006', 'sjZQX4ttFNOZew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 36, tzinfo=datetime.timezone.utc), 1, 7.11, -73.98799, 40.737958, -73.95138, 40.77786, 'CASH', 20.5, 0.5, 0.0, 0.0, 21.0, '1705685115.6930006', 'DQjHWqQqHWbtpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 45, tzinfo=datetime.timezone.utc), 1, 9.36, -73.9929, 40.759608, -73.932623, 40.899467, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685115.6930006', 'ltYcO7hTnn9VlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 53, tzinfo=datetime.timezone.utc), 5, 8.27, -74.008938, 40.715297, -73.960222, 40.81137, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685115.6930006', '/MZORz95fnjW5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 41, tzinfo=datetime.timezone.utc), 2, 7.67, -73.989018, 40.763193, -73.936708, 40.695328, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685115.6930006', 'RhMRb8zcOiiG/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 20, tzinfo=datetime.timezone.utc), 1, 9.4, -73.991192, 40.71746, -73.925182, 40.768515, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685115.6930006', 'MYHSBiRgeBytHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 7, tzinfo=datetime.timezone.utc), 5, 9.44, -73.965543, 40.754732, -73.999138, 40.675707, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685115.6930006', 'bZC3L1BIJgJRAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 6, 8, tzinfo=datetime.timezone.utc), 1, 10.47, -73.976717, 40.739505, -73.856597, 40.828427, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'abI7W6gNqpL4nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 22, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978468, 40.750423, -73.991005, 40.750398, 'Credit', 25.0, 0.0, 0.0, 0.0, 25.0, '1705685115.6930006', '8epfTcgsfmQUaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 57, tzinfo=datetime.timezone.utc), 1, 9.86, -73.97666, 40.74744, -73.96927, 40.646302, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'ZmLJAkMBgeR+kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 22, tzinfo=datetime.timezone.utc), 1, 9.91, -73.977195, 40.75455, -73.978358, 40.659522, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'HKCTygMIMYPmvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 45, tzinfo=datetime.timezone.utc), 2, 10.08, -74.004758, 40.747993, -73.916728, 40.850808, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'deLKPQKO3fYqCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 32, tzinfo=datetime.timezone.utc), 1, 9.73, -74.01172, 40.793592, -73.982895, 40.74009, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'fJb1HoU/62TJfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 12, tzinfo=datetime.timezone.utc), 1, 10.39, -73.871065, 40.773778, -73.972502, 40.76103, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685115.6930006', 'fCOY+f96KeMj1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 59, tzinfo=datetime.timezone.utc), 5, 11.6, -73.983635, 40.769583, -73.851222, 40.831182, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685115.6930006', 'AmgXKvexVWZJUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 10, tzinfo=datetime.timezone.utc), 1, 11.6, -73.862798, 40.769057, -73.986237, 40.678698, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685115.6930006', 'tvMTiHB6Wc35KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 0, tzinfo=datetime.timezone.utc), 1, 8.69, -74.001302, 40.736458, -73.974518, 40.668588, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685115.6930006', 'XS0HQj0kGK0UFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 22, tzinfo=datetime.timezone.utc), 2, 8.34, -73.98789, 40.764653, -73.876255, 40.715413, 'CASH', 22.5, 0.5, 0.0, 5.0, 28.0, '1705685115.6930006', 'HC3e0x8/o/J9Tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.0, -73.979822, 40.74635, -73.979822, 40.74635, 'Credit', 28.0, 0.0, 0.0, 0.0, 28.0, '1705685115.6930006', 'bhnqNs8aQJYI2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 34, tzinfo=datetime.timezone.utc), 1, 9.22, -73.986165, 40.755627, -73.986165, 40.755627, 'CASH', 22.5, 0.5, 0.0, 5.0, 28.0, '1705685115.6930006', 'wvIeusjIL7utkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 2, tzinfo=datetime.timezone.utc), 1, 9.56, -73.874655, 40.774115, -73.977342, 40.78683, 'Credit', 24.5, 0.5, 0.0, 5.0, 30.0, '1705685115.6930006', 'dvFB0lLYuCJYIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 54, tzinfo=datetime.timezone.utc), 1, 12.83, -73.993632, 40.720272, -73.923185, 40.86584, 'CASH', 30.5, 0.5, 0.0, 0.0, 31.0, '1705685115.6930006', '+rZFa0xKILHkrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 24, tzinfo=datetime.timezone.utc), 2, 16.91, -73.989907, 40.758123, -73.782998, 40.64393, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685115.6930006', 'P05zM1U/pR0CFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 41, tzinfo=datetime.timezone.utc), 4, 18.11, -73.790052, 40.643992, -73.982357, 40.75542, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685115.6930006', 'AahI2eLTa1s8qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 1, tzinfo=datetime.timezone.utc), 1, 0.0, -74.027912, 40.740292, -74.027818, 40.740147, 'Credit', 50.0, 0.0, 0.0, 0.0, 50.0, '1705685115.6930006', 'x0++YZVGTtD+jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 32, tzinfo=datetime.timezone.utc), 1, 7.58, -73.878082, 40.771318, -73.977718, 40.760797, 'Credit', 50.0, 0.0, 0.0, 0.0, 50.0, '1705685115.6930006', '2/3yWjLwppea4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 21, tzinfo=datetime.timezone.utc), 1, 17.0, -73.930555, 40.801448, -73.782922, 40.64397, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685115.6930006', 'fkdMGutBjwrVvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 45, tzinfo=datetime.timezone.utc), 1, 0.0, -73.788955, 40.641577, -73.78895, 40.64157, 'Credit', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685115.6930006', 'xMsEXwt0fm4Ehw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 59, tzinfo=datetime.timezone.utc), 3, 11.65, -73.872208, 40.77393, -73.992868, 40.75209, 'CASH', 28.1, 0.0, 0.0, 4.15, 32.25, '1705685115.6930006', 'pz2j17wBHhFAcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 38, tzinfo=datetime.timezone.utc), 2, 12.03, -73.980482, 40.782613, -73.870577, 40.773882, 'CASH', 30.1, 0.0, 0.0, 4.15, 34.25, '1705685115.6930006', 'aiBybqrGo9V8mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 1, tzinfo=datetime.timezone.utc), 1, 10.66, -73.994947, 40.740018, -74.01459, 40.627023, 'CASH', 32.1, 0.0, 0.0, 4.15, 36.25, '1705685115.6930006', 'LD81Xr6BV0Q3dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 47, tzinfo=datetime.timezone.utc), 2, 12.38, -73.874493, 40.774043, -73.992512, 40.756603, 'CASH', 34.1, 0.0, 0.0, 4.15, 38.25, '1705685115.6930006', 'aob6KZxh4/8j5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 24, tzinfo=datetime.timezone.utc), 5, 8.38, -73.95389, 40.770608, -73.872265, 40.774483, 'CASH', 20.1, 0.0, 0.0, 4.15, 24.25, '1705685115.6930006', '+8xHAdjH9NgRfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 48, tzinfo=datetime.timezone.utc), 3, 8.43, -73.865303, 40.76913, -73.948635, 40.773822, 'CASH', 20.1, 0.0, 0.0, 4.15, 24.25, '1705685115.6930006', 'd8NBO58DkNFT6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 22, tzinfo=datetime.timezone.utc), 1, 8.14, -73.872177, 40.773795, -73.978287, 40.7485, 'CASH', 22.1, 0.0, 0.0, 4.15, 26.25, '1705685115.6930006', 'f0QirZcI2eH6lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 49, tzinfo=datetime.timezone.utc), 1, 9.15, -73.863317, 40.770005, -73.985528, 40.752868, 'Credit', 22.1, 1.0, 0.0, 4.15, 27.25, '1705685115.6930006', '6lRQkyPJvz5RJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 23, tzinfo=datetime.timezone.utc), 1, 9.07, -73.864418, 40.770662, -73.977602, 40.754783, 'CASH', 24.1, 0.0, 0.0, 4.15, 28.25, '1705685115.6930006', '35EKhOrOuDfd2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 1, tzinfo=datetime.timezone.utc), 4, 10.33, -73.872522, 40.77406, -73.972978, 40.755865, 'CASH', 24.1, 1.0, 0.0, 4.15, 29.25, '1705685115.6930006', '+aj6acOaH1UQbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 14, tzinfo=datetime.timezone.utc), 1, 11.28, -73.977367, 40.755212, -73.86174, 40.768432, 'CASH', 26.1, 0.0, 0.0, 4.15, 30.25, '1705685115.6930006', 'VOOi+CZeRWHpWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 53, tzinfo=datetime.timezone.utc), 1, 10.13, -73.970987, 40.754362, -73.885538, 40.77317, 'CASH', 26.1, 0.0, 0.0, 4.15, 30.25, '1705685115.6930006', 'j03wPU7jm+Bxgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 51, tzinfo=datetime.timezone.utc), 1, 11.0, -73.972663, 40.755013, -73.861703, 40.768357, 'CASH', 26.1, 1.0, 0.0, 4.15, 31.25, '1705685115.6930006', 'S7Pf1AYceXZvyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 23, tzinfo=datetime.timezone.utc), 5, 13.59, -73.976915, 40.738778, -73.85531, 40.666458, 'CASH', 34.5, 0.0, 0.0, 0.0, 34.5, '1705685115.6930006', 'K3LkC2Y6uLOE3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 22, tzinfo=datetime.timezone.utc), 5, 13.34, -73.789632, 40.646702, -73.982407, 40.671527, 'CASH', 34.5, 0.0, 0.0, 0.0, 34.5, '1705685115.6930006', 'PrbnQSaJVMj7xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 2, tzinfo=datetime.timezone.utc), 1, 15.2, -73.785555, 40.639998, -73.930962, 40.76948, 'Credit', 36.5, 0.0, 0.0, 0.0, 36.5, '1705685115.6930006', 'Jd5sSLOUMkHe5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 21, tzinfo=datetime.timezone.utc), 2, 12.83, -73.954228, 40.764265, -73.856183, 40.784557, 'CASH', 36.5, 0.0, 0.0, 0.0, 36.5, '1705685115.6930006', '2IH6oMRfHh739A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 23, tzinfo=datetime.timezone.utc), 1, 2.59, -73.789815, 40.655165, -73.850998, 40.91951, 'CASH', 89.0, 0.0, 0.0, 0.0, 89.0, '1705685115.6930006', 'U3VAOgY7dtaS+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 25, tzinfo=datetime.timezone.utc), 1, 4.81, -73.989367, 40.747577, -73.949262, 40.800977, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'orjQaWgeovWdUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 15, tzinfo=datetime.timezone.utc), 1, 6.36, -73.998625, 40.723233, -73.977425, 40.656013, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'HIevXyWWNJEUMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 31, tzinfo=datetime.timezone.utc), 1, 4.21, -73.978892, 40.77733, -73.977335, 40.7365, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'OM4/TJForNdw+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 1, tzinfo=datetime.timezone.utc), 1, 4.64, -73.965508, 40.800382, -73.985035, 40.748042, 'Credit', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'dCXOdzA6Binxyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), 5, 4.73, -73.991877, 40.722027, -73.987933, 40.663313, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'Qh+boZnHtc31BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 5, tzinfo=datetime.timezone.utc), 1, 6.82, -73.870905, 40.773755, -73.81103, 40.71695, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'YYOx8Di2B6a0Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 18, tzinfo=datetime.timezone.utc), 1, 6.18, -74.008485, 40.745298, -73.995768, 40.695928, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'B/RaCkNYvhZMCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.77, -74.000462, 40.732397, -73.957132, 40.780385, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', '2TuL7a71LlvLGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 32, tzinfo=datetime.timezone.utc), 3, 5.23, -73.984323, 40.759663, -74.016765, 40.704732, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'Ca2e9b78P61WPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 0, tzinfo=datetime.timezone.utc), 1, 1.66, -73.96125, 40.77736, -73.979352, 40.760108, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'BxLV4AYkwKIA6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 59, tzinfo=datetime.timezone.utc), 1, 4.39, -73.964157, 40.807938, -73.979205, 40.753, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'tlzctgxq8lE22A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 44, tzinfo=datetime.timezone.utc), 1, 6.78, -73.944053, 40.775953, -74.005895, 40.70625, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', '/BnuxBPD5vQ5ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 5, tzinfo=datetime.timezone.utc), 1, 6.19, -74.006985, 40.704138, -73.970608, 40.764175, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'J6fqgBQ28rgp0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 0, tzinfo=datetime.timezone.utc), 5, 6.25, -73.979865, 40.73488, -73.972408, 40.793997, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685115.6930006', 'qDBGFSPXdgOYlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 5, tzinfo=datetime.timezone.utc), 2, 4.02, -73.984487, 40.730403, -73.99023, 40.768885, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685115.6930006', '5Pp5lCo2WwIy1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 48, tzinfo=datetime.timezone.utc), 1, 4.35, -74.004977, 40.740758, -73.953647, 40.766852, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685115.6930006', 'ZbxqOQCB3Q+18A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 11, tzinfo=datetime.timezone.utc), 1, 2.46, -73.963607, 40.757013, -73.997268, 40.756245, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685115.6930006', 'r2rdJFJWns7+8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 45, tzinfo=datetime.timezone.utc), 2, 3.44, -73.975903, 40.763633, -73.985515, 40.723435, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685115.6930006', 'y9aoW40I9DwatA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 1, tzinfo=datetime.timezone.utc), 5, 0.0, -73.939005, 40.79339, -73.938993, 40.793395, 'CASH', 17.5, 1.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'RMMQvC6V+QGtug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 14, tzinfo=datetime.timezone.utc), 1, 5.38, -73.936802, 40.813917, -73.984868, 40.760653, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'H+V1KBIxCxj83A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 10, tzinfo=datetime.timezone.utc), 5, 0.07, -73.913375, 40.82503, -73.912878, 40.826007, 'CASH', 17.5, 1.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'xYn0jiNNYSD6VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 22, tzinfo=datetime.timezone.utc), 1, 5.63, -74.012265, 40.701432, -73.991668, 40.75009, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'YUuqHGM5/aO5EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 47, tzinfo=datetime.timezone.utc), 1, 4.89, -73.97367, 40.782915, -73.992963, 40.727992, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'kYV8GcW/VGagiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 28, tzinfo=datetime.timezone.utc), 1, 7.73, -73.919967, 40.868135, -73.981368, 40.781943, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'ovnLtbhvyeFnsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 48, tzinfo=datetime.timezone.utc), 1, 6.11, -74.007692, 40.712618, -73.966528, 40.76006, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'RGc1aJHRbZJR+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 9, 1, 31, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 52, 21, tzinfo=datetime.timezone.utc), 1, 7.1, -74.000319, 40.730568, -73.92003, 40.775479, 'Cash', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'ggDTeWyuYN3hUA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 21, tzinfo=datetime.timezone.utc), 2, 3.37, -73.983145, 40.767877, -74.006868, 40.730533, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'sB2OhAxo9VFquQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 8, 51, tzinfo=datetime.timezone.utc), 1, 7.46, -73.85262, 40.69732, -73.875202, 40.76272, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'rUOWvLZKoEFngw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 35, tzinfo=datetime.timezone.utc), 2, 5.56, -73.989717, 40.735007, -73.950795, 40.798075, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'lJTEYWmFAKiXXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 0, tzinfo=datetime.timezone.utc), 1, 5.03, -74.017228, 40.705118, -73.980752, 40.755493, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'fB6xwu/hFMZ8Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 28, tzinfo=datetime.timezone.utc), 2, 7.73, -73.950635, 40.783307, -74.011247, 40.702153, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685115.6930006', 'pqlmhpzUA9t29A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 58, tzinfo=datetime.timezone.utc), 2, 6.09, -73.972632, 40.76173, -74.016657, 40.70438, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', 'yMGM7Z/KblNiEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 32, tzinfo=datetime.timezone.utc), 1, 5.46, -73.998385, 40.723193, -73.952103, 40.780433, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', '31z6QlQll5JTlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 52, tzinfo=datetime.timezone.utc), 2, 5.57, -73.961235, 40.777777, -74.005982, 40.720283, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', '9SKjXxXaaUS95g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 6, tzinfo=datetime.timezone.utc), 1, 6.11, -73.972968, 40.765117, -74.01396, 40.702497, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', 'Q34MLUrosxy9wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 30, tzinfo=datetime.timezone.utc), 2, 8.46, -73.941563, 40.791703, -74.01074, 40.701922, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', 'OM04xMcPapAiWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 2, tzinfo=datetime.timezone.utc), 3, 7.78, -73.959052, 40.780887, -74.012243, 40.702713, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685115.6930006', 's8Pei/HldNpstQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 52, tzinfo=datetime.timezone.utc), 5, 8.57, -74.0065, 40.704158, -73.950185, 40.787408, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685115.6930006', 'CEq5sHl8QeM//A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 23, tzinfo=datetime.timezone.utc), 1, 6.77, -74.012377, 40.705735, -73.980062, 40.788243, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685115.6930006', 'PAjbdCKgflZDNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 50, tzinfo=datetime.timezone.utc), 1, 5.65, -73.984397, 40.75632, -73.963005, 40.711747, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685115.6930006', 'vQXEsFk2lVEnLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 1, 31, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 59, tzinfo=datetime.timezone.utc), 1, 8.5, -73.983676, 40.760499, -73.968365, 40.679322, 'Cash', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685115.6930006', '1W7WF1ishOza2Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 42, tzinfo=datetime.timezone.utc), 5, 7.53, -73.973617, 40.764483, -74.01518, 40.715608, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685115.6930006', 'JW1wjTnvTbRQ3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 9, tzinfo=datetime.timezone.utc), 5, 8.56, -73.991233, 40.755863, -73.922088, 40.83079, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685115.6930006', '6uwoWBxZd/y4MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 54, tzinfo=datetime.timezone.utc), 1, 9.27, -73.971827, 40.74601, -73.924953, 40.861572, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685115.6930006', '3p6I0PZCksBNEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 10, tzinfo=datetime.timezone.utc), 1, 7.32, -74.010315, 40.711918, -73.959292, 40.77734, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685115.6930006', 't9nZzfuBvnQEyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 39, tzinfo=datetime.timezone.utc), 1, 7.19, -73.952478, 40.780978, -73.864625, 40.838247, 'CASH', 22.5, 1.0, 0.0, 0.0, 23.5, '1705685115.6930006', 'TgHcQxdRixPWRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 44, tzinfo=datetime.timezone.utc), 1, 8.75, -73.862745, 40.769105, -73.95318, 40.782735, 'CASH', 22.5, 1.0, 0.0, 0.0, 23.5, '1705685115.6930006', 'HyYy8slUhnBu4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 54, tzinfo=datetime.timezone.utc), 1, 9.85, -73.993388, 40.72166, -73.870985, 40.774142, 'CASH', 24.5, 0.0, 0.0, 0.0, 24.5, '1705685115.6930006', 'kxw9zHVU6Vse4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 38, tzinfo=datetime.timezone.utc), 5, 7.79, -74.0167, 40.704693, -74.000287, 40.725582, 'CASH', 24.5, 0.0, 0.0, 0.0, 24.5, '1705685115.6930006', 'TPMSpls+SKtBlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 44, tzinfo=datetime.timezone.utc), 3, 7.33, -73.99188, 40.749922, -73.945962, 40.807962, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685115.6930006', 'Umfp2j7SCmhBwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 57, tzinfo=datetime.timezone.utc), 1, 9.93, -73.862767, 40.768833, -73.986953, 40.718377, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685115.6930006', 'MF7BHLInzQ+OEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 22, tzinfo=datetime.timezone.utc), 1, 9.8, -73.870642, 40.773652, -73.994858, 40.713423, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685115.6930006', 'AoVOx73oFNexdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 8, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 49, 34, tzinfo=datetime.timezone.utc), 2, 10.4, -74.001483, 40.731141, -73.887011, 40.767925, 'Cash', 26.5, 0.0, 0.0, 0.0, 26.5, '1705685115.6930006', 'ya1GSS2O26+FWA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 43, tzinfo=datetime.timezone.utc), 2, 11.45, -73.988485, 40.754148, -73.872485, 40.774295, 'CASH', 26.5, 0.0, 0.0, 0.0, 26.5, '1705685115.6930006', 'lAXBfY/BXl7R3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 55, tzinfo=datetime.timezone.utc), 1, 9.57, 0.0, 0.0, 0.0, 0.0, 'CASH', 22.5, 0.0, 0.0, 5.0, 27.5, '1705685115.6930006', 'eehMWiZDTtBlbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 33, tzinfo=datetime.timezone.utc), 3, 12.32, -73.971368, 40.7469, -73.893302, 40.88889, 'CASH', 28.5, 0.0, 0.0, 0.0, 28.5, '1705685115.6930006', '1CsEtVrYr3T6Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 16, tzinfo=datetime.timezone.utc), 2, 11.88, -73.917205, 40.770057, -73.804332, 40.75348, 'CASH', 28.5, 0.0, 0.0, 0.0, 28.5, '1705685115.6930006', 'wmkzkqlP4j7eQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 6, tzinfo=datetime.timezone.utc), 1, 9.32, -73.870847, 40.773773, -73.9893, 40.730497, 'CASH', 22.5, 1.0, 0.0, 5.0, 28.5, '1705685115.6930006', 'neQZXMQHzDY49g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 21, tzinfo=datetime.timezone.utc), 4, 10.08, -73.862755, 40.769133, -73.941198, 40.827332, 'CASH', 24.5, 0.0, 0.0, 5.0, 29.5, '1705685115.6930006', 'b9kHTsjlZEkg9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 6, tzinfo=datetime.timezone.utc), 1, 10.24, -73.87085, 40.77358, -73.982385, 40.755575, 'Credit', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685115.6930006', 'QaGgOnQjQmymXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 50, tzinfo=datetime.timezone.utc), 2, 10.26, -73.990927, 40.755822, -73.96446, 40.689868, 'Credit', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685115.6930006', 'Cd2isjDUl+JEPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 5, tzinfo=datetime.timezone.utc), 1, 11.12, -73.862627, 40.76891, -73.978308, 40.76505, 'CASH', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685115.6930006', 'xK5xQGN0cnvKBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 19, tzinfo=datetime.timezone.utc), 5, 12.61, -73.862802, 40.769062, -73.98918, 40.757437, 'CASH', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685115.6930006', 'uTh6tPSmgNNbQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 42, tzinfo=datetime.timezone.utc), 2, 10.28, -73.984883, 40.757607, -73.865002, 40.770498, 'CASH', 26.5, 0.0, 0.0, 5.0, 31.5, '1705685115.6930006', 'zBvmPMnmpRFprw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 17, tzinfo=datetime.timezone.utc), 5, 11.55, -73.783125, 40.648542, -73.865258, 40.770702, 'CASH', 30.5, 1.0, 0.0, 0.0, 31.5, '1705685115.6930006', '7vkq5rCpr0eolw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 28, tzinfo=datetime.timezone.utc), 1, 0.0, -73.873148, 40.774278, -73.87315, 40.774278, 'Credit', 37.0, 0.0, 0.0, 0.0, 37.0, '1705685115.6930006', 'vbgLBrG7Dklz/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 14, tzinfo=datetime.timezone.utc), 1, 13.56, -73.990515, 40.734693, -73.909018, 40.655998, 'CASH', 36.5, 0.5, 0.0, 0.0, 37.0, '1705685115.6930006', '9/5r55oCaZkmsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 50, tzinfo=datetime.timezone.utc), 1, 16.05, -74.012405, 40.70702, -74.021055, 40.618997, 'CASH', 42.5, 0.5, 0.0, 0.0, 43.0, '1705685115.6930006', 'DzEe/xtJ2iF49g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 50, tzinfo=datetime.timezone.utc), 1, 18.29, -73.78801, 40.641498, -73.99327, 40.722027, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'qd+RsfiI25Ka5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 13, tzinfo=datetime.timezone.utc), 5, 19.03, -73.96786, 40.759817, -73.793902, 40.656642, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '65iGfOdXbXey5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.02, -73.969808, 40.75307, -73.969902, 40.752997, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'suU4rFECVDMZYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), 3, 18.38, -73.988888, 40.75618, -73.782497, 40.648778, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '1D5QDe/iYFMFmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 24, tzinfo=datetime.timezone.utc), 1, 18.87, -73.78675, 40.652833, -73.77659, 40.645132, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'g8II43G++N0NJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 45, tzinfo=datetime.timezone.utc), 1, 16.41, -73.968562, 40.764283, -73.782503, 40.644093, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'HbonRFaKfAiFmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 0, 14, tzinfo=datetime.timezone.utc), 5, 20.26, -73.782023, 40.64481, -74.001087, 40.68075, 'CASH', 44.5, 0.5, 0.0, 0.0, 45.0, '1705685115.6930006', 'YCA7ftft8YxhyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 37, tzinfo=datetime.timezone.utc), 5, 16.8, -73.98297, 40.765595, -73.782585, 40.644117, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'VT/4hTnIsWlPbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 0, tzinfo=datetime.timezone.utc), 1, 21.62, -73.78346, 40.648693, -74.0145, 40.70821, 'Credit', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'nhLZR2o8J8RipQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 51, tzinfo=datetime.timezone.utc), 2, 11.59, -73.892537, 40.689665, -73.747902, 40.561657, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'ZpRa8f5IrUAmcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 11, tzinfo=datetime.timezone.utc), 1, 0.0, -73.974732, 40.742102, -73.974728, 40.742102, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'FxX3QGkEoBhNZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 15, tzinfo=datetime.timezone.utc), 1, 18.04, -73.777405, 40.64526, -73.984597, 40.76931, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'W0Q6mpiO8D79OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 43, tzinfo=datetime.timezone.utc), 1, 0.06, -73.96716, 40.761697, -73.966302, 40.762032, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '8B/fxOTaRC+Lng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 48, tzinfo=datetime.timezone.utc), 1, 0.04, -73.8896, 40.755177, -73.890052, 40.75512, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'Oiole01Go39umQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 8, tzinfo=datetime.timezone.utc), 1, 17.67, -74.003312, 40.723717, -73.785892, 40.638812, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'xrwkyFo2lacAmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 40, tzinfo=datetime.timezone.utc), 5, 18.66, -74.00381, 40.72555, -73.77768, 40.644725, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '8NYTifn0W+Nxwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 45, tzinfo=datetime.timezone.utc), 2, 0.44, -73.997277, 40.741697, -74.003715, 40.742673, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'Abx1Q7+1zWVjJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 41, tzinfo=datetime.timezone.utc), 1, 14.42, -73.791562, 40.66089, -73.996427, 40.710143, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'J9wqs+MLNITedA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 3, tzinfo=datetime.timezone.utc), 1, 30.76, -73.778048, 40.646783, -73.941233, 40.849138, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '3xW3m3cnexYpMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 11, 47, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 47, 40, tzinfo=datetime.timezone.utc), 1, 0.0, -74.010269, 40.70984, -74.010405, 40.709903, 'Cash', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'PrINwxgxBh0crA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 28, tzinfo=datetime.timezone.utc), 2, 1.58, -73.995912, 40.738607, -73.982662, 40.757783, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'dW+gOI35YT3yJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 12, tzinfo=datetime.timezone.utc), 1, 18.56, -74.005343, 40.720288, -73.776482, 40.644957, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'I4qkPIrPXKFURQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 5, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 1, tzinfo=datetime.timezone.utc), 5, 20.39, -73.974813, 40.782982, -73.783465, 40.643788, 'Credit', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'Cw+YnuiGNjSzqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 38, tzinfo=datetime.timezone.utc), 1, 21.29, -73.790283, 40.643603, -73.960758, 40.764825, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '17GOgLIVmnzRLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 27, tzinfo=datetime.timezone.utc), 1, 18.92, -73.924752, 40.732723, -74.008433, 40.731395, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'SusYYjnB8FBoSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.01, -73.970687, 40.764682, -73.970605, 40.764727, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'KykKh/r3TYWhLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 43, tzinfo=datetime.timezone.utc), 1, 17.81, -73.78949, 40.647283, -73.980423, 40.764742, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'T4E21j3uZocQHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 44, tzinfo=datetime.timezone.utc), 2, 21.34, -73.790668, 40.645207, -74.009158, 40.716812, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'aVuNrOueInOQXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 31, tzinfo=datetime.timezone.utc), 2, 17.34, -73.976592, 40.76285, -73.78291, 40.64392, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', '3EuJoxgegaT+Yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 2, tzinfo=datetime.timezone.utc), 1, 1.34, -73.922557, 40.775357, -73.903853, 40.767867, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'MBnuXucl4Mo6lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 52, tzinfo=datetime.timezone.utc), 1, 0.0, -73.960058, 40.758457, -73.960052, 40.758462, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'Uh9fonjcu7CHhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 23, tzinfo=datetime.timezone.utc), 1, 17.06, -73.988985, 40.75412, -73.786512, 40.638868, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685115.6930006', 'J7/NynrWpHdbyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 44, tzinfo=datetime.timezone.utc), 1, 4.51, -73.991768, 40.759485, -74.029445, 40.738467, 'CASH', 45.0, 0.0, 0.0, 8.0, 53.0, '1705685115.6930006', 'xbbwdTQDSPddcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 20, tzinfo=datetime.timezone.utc), 1, 11.0, -73.874592, 40.77408, -73.985238, 40.759452, 'CASH', 30.1, 1.0, 0.0, 4.15, 35.25, '1705685115.6930006', 'VuqSlLCOKTOsxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 12, tzinfo=datetime.timezone.utc), 1, 10.97, -73.874473, 40.773992, -73.981587, 40.751948, 'CASH', 32.1, 1.0, 0.0, 4.15, 37.25, '1705685115.6930006', 'gTArJucJY0d6dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), 2, 20.57, -73.954352, 40.764097, -73.954137, 40.577933, 'CASH', 48.1, 1.0, 0.0, 4.15, 53.25, '1705685115.6930006', 'gVasvd9GmRtBQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 41, tzinfo=datetime.timezone.utc), 2, 7.4, -73.872465, 40.773922, -73.948777, 40.78416, 'CASH', 18.1, 0.5, 0.0, 4.15, 22.75, '1705685115.6930006', 'hmiqb6YF3XSJ9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 6, tzinfo=datetime.timezone.utc), 3, 9.38, -73.862613, 40.768882, -73.973093, 40.755593, 'CASH', 22.1, 0.5, 0.0, 4.15, 26.75, '1705685115.6930006', 'whhQWu1UQffbqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 31, tzinfo=datetime.timezone.utc), 5, 10.28, 0.0, 0.0, 0.0, 0.0, 'CASH', 24.1, 0.5, 0.0, 4.15, 28.75, '1705685115.6930006', '8WGOn9G46KDOTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 54, tzinfo=datetime.timezone.utc), 1, 10.88, -73.870873, 40.773698, -73.982452, 40.762475, 'CASH', 26.1, 0.5, 0.0, 4.15, 30.75, '1705685115.6930006', '3ne0YDrjN3K3/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 5, tzinfo=datetime.timezone.utc), 5, 13.7, -73.993493, 40.721125, -74.177552, 40.695413, 'CASH', 49.5, 0.0, 0.0, 8.0, 57.5, '1705685115.6930006', 'wbVwjarn6EZx0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 56, tzinfo=datetime.timezone.utc), 1, 27.47, -73.994375, 40.756048, -74.21319, 40.545983, 'Credit', 95.0, 0.0, 0.0, 8.0, 103.0, '1705685115.6930006', 'hQ0BU42QSRfWjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 50, tzinfo=datetime.timezone.utc), 1, 21.52, -73.981992, 40.758053, -74.166142, 40.712655, 'CASH', 67.5, 0.0, 0.0, 8.0, 75.5, '1705685115.6930006', 'Ybdwtep6W4szMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 22, tzinfo=datetime.timezone.utc), 1, 0.32, -73.978382, 40.78673, -73.978952, 40.782983, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'MpzHIJoPqsBQtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 37, tzinfo=datetime.timezone.utc), 2, 0.23, -73.967148, 40.793425, -73.969203, 40.790425, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'g3vzcrj8JxTNSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 4, tzinfo=datetime.timezone.utc), 5, 0.12, -74.00596, 40.735145, -74.003633, 40.735558, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'SY0jwQ8iEz0k7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.2, -73.967427, 40.7613, -73.966588, 40.761912, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'cUibRy4BELen0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 39, tzinfo=datetime.timezone.utc), 1, 0.18, -73.975782, 40.756922, -73.974113, 40.758775, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', '53EMjofhgBeHyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 36, tzinfo=datetime.timezone.utc), 2, 0.22, -73.952747, 40.780607, -73.952747, 40.780607, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'CxZWehxKiertDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 39, tzinfo=datetime.timezone.utc), 1, 0.34, -73.975072, 40.758047, -73.972123, 40.762583, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'idFpxX7uv/laWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 13, tzinfo=datetime.timezone.utc), 2, 0.28, -73.975558, 40.78211, -73.978047, 40.77839, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'VTADfm1evGq/+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 27, tzinfo=datetime.timezone.utc), 2, 0.17, -73.988113, 40.723882, -73.986545, 40.726092, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'L/1L48a2vvTstQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), 1, 0.08, -73.98811, 40.750997, -73.98912, 40.75185, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'wmS0QHidwUaeFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 37, tzinfo=datetime.timezone.utc), 3, 0.03, -73.988215, 40.761368, -73.987653, 40.761367, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'iQnQ3Oj7bQ5N/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 1, tzinfo=datetime.timezone.utc), 1, 0.33, -73.954155, 40.784595, -73.95707, 40.780422, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'lz7Va8sRKV/thg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 27, tzinfo=datetime.timezone.utc), 1, 0.06, -73.946533, 40.776453, -73.946757, 40.77619, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'WyVdH2M5ba+Zxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 51, tzinfo=datetime.timezone.utc), 3, 0.24, -73.977873, 40.766347, -73.973973, 40.764782, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'VM/pWXmu2IoocA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 44, tzinfo=datetime.timezone.utc), 1, 0.21, -73.959997, 40.770265, -73.957957, 40.773175, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'S5DDPvgVxHUFCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 17, tzinfo=datetime.timezone.utc), 1, 0.31, -73.970582, 40.758635, -73.972968, 40.754552, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685115.6930006', 'xnFg2rJYG18rKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 42, tzinfo=datetime.timezone.utc), 1, 0.15, -73.945763, 40.773482, -73.946758, 40.771798, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'Knvmj4rEv12F7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 52, tzinfo=datetime.timezone.utc), 2, 0.1, -73.987617, 40.721823, -73.988487, 40.72082, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'GgQKtvb5YQNvbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.2, -74.0082, 40.738722, -74.005847, 40.737483, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'u4yJtkc166wCqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 35, tzinfo=datetime.timezone.utc), 1, 0.1, -73.978817, 40.745172, -73.978027, 40.745717, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'tSqXsRtFtsNk9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 41, tzinfo=datetime.timezone.utc), 3, 0.12, -73.986908, 40.74406, -73.989207, 40.743443, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'NqkPmI+VgZkdLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.27, -73.778095, 40.646762, -73.781907, 40.647262, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'EMMdxdHqacok0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 44, tzinfo=datetime.timezone.utc), 3, 0.25, -73.950585, 40.805968, -73.95284, 40.802905, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'VPj6AkwDsQBFfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 43, tzinfo=datetime.timezone.utc), 2, 0.21, -74.01627, 40.709202, -74.015843, 40.707507, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'P+S3XU7F+cx+BQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 51, tzinfo=datetime.timezone.utc), 1, 0.32, -73.96027, 40.775853, -73.958542, 40.779812, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'p6bnX2ZzyBgTlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 46, tzinfo=datetime.timezone.utc), 1, 0.16, -73.957827, 40.717788, -73.955488, 40.716368, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'K2G0qtrofuux1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 42, tzinfo=datetime.timezone.utc), 1, 0.12, -73.949922, 40.730297, -73.949672, 40.730782, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685115.6930006', 'N0q9Cv/azD8tgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 39, tzinfo=datetime.timezone.utc), 1, 0.05, -73.982592, 40.763875, -73.982693, 40.763403, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'AUMH1f7AFcrQvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 32, tzinfo=datetime.timezone.utc), 5, 0.29, -73.956855, 40.780848, -73.956892, 40.780268, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'T3M7EnuqZ8LCZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), 1, 0.36, -73.988432, 40.72337, -73.98431, 40.72553, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'rYjGuDd8fqkSQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 8, tzinfo=datetime.timezone.utc), 1, 0.2, -73.976735, 40.755473, -73.974328, 40.757622, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'MKJ2zLlI4jmB3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 47, tzinfo=datetime.timezone.utc), 1, 0.26, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', '+8EAjf81WC+EBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 51, tzinfo=datetime.timezone.utc), 5, 0.05, -73.963283, 40.764987, -73.963022, 40.765498, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'ZP5tEKSoHXyLsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 39, tzinfo=datetime.timezone.utc), 1, 0.04, -73.972502, 40.752075, -73.971957, 40.751712, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'ycCWsMBSBbxHtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 9, tzinfo=datetime.timezone.utc), 1, 0.22, -73.95374, 40.779073, -73.951662, 40.781795, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', '1YYDRaiuhklUGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 9, tzinfo=datetime.timezone.utc), 2, 0.23, -73.98077, 40.781797, -73.983338, 40.78381, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'CaepXDgq3feK/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 21, tzinfo=datetime.timezone.utc), 1, 0.37, -73.994802, 40.745183, -73.997173, 40.740682, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'VggQrahPXBh/Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.37, -73.999288, 40.74937, -74.002602, 40.74476, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', '2Bruc0+EVPPQpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 20, tzinfo=datetime.timezone.utc), 1, 0.34, -73.951855, 40.824665, -73.955073, 40.82031, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'BnpjYpwvlPXhpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 52, tzinfo=datetime.timezone.utc), 1, 0.34, -73.95951, 40.774202, -73.962592, 40.769913, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685115.6930006', 'e+XuJ8AuDznPUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 19, tzinfo=datetime.timezone.utc), 5, 0.32, -73.965202, 40.769087, -73.96665, 40.772295, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', '8JyVVRNKFGAWTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 58, tzinfo=datetime.timezone.utc), 1, 0.47, -74.00746, 40.742617, -74.003077, 40.747222, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'sEMd3Ihoqupw+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 18, tzinfo=datetime.timezone.utc), 1, 0.43, -73.975603, 40.78185, -73.979587, 40.776445, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'wQVPc0QHhJsYmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 54, tzinfo=datetime.timezone.utc), 1, 0.37, -73.775853, 40.593627, -73.77959, 40.594745, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', '/inOqcjTlcPC+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 15, tzinfo=datetime.timezone.utc), 5, 0.37, -73.960208, 40.769512, -73.957758, 40.773765, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'cP7fqNjFrLjj8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 36, tzinfo=datetime.timezone.utc), 2, 0.46, -73.973912, 40.79209, -73.978222, 40.786383, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', '0x3v911Qck+l6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 55, tzinfo=datetime.timezone.utc), 1, 0.5, -73.990232, 40.738632, -73.992373, 40.743417, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'RNvz+KfvHeZChw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 35, tzinfo=datetime.timezone.utc), 1, 0.28, -73.988703, 40.768988, -73.986307, 40.772183, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'zahBPUzJLkXVVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), 1, 0.18, -73.992207, 40.690202, -73.994562, 40.68949, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', '4qZGnS0673V35Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 43, tzinfo=datetime.timezone.utc), 1, 0.43, -73.951823, 40.777977, -73.953573, 40.773508, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'KoyUS8D0xPGZKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 6, tzinfo=datetime.timezone.utc), 2, 0.33, -73.976937, 40.749788, -73.980238, 40.74549, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'nandqcgnacZBeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 25, tzinfo=datetime.timezone.utc), 1, 0.01, -73.96067, 40.756668, -73.960763, 40.757163, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'yOhnEuZ/wTQxmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 43, tzinfo=datetime.timezone.utc), 1, 0.4, -73.980633, 40.74509, -73.980633, 40.74509, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'GVbTrLdquavHCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 0, tzinfo=datetime.timezone.utc), 2, 0.39, -73.994832, 40.744758, -73.998665, 40.740425, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'jdMdsCug+iMISA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 37, tzinfo=datetime.timezone.utc), 2, 0.23, -73.997965, 40.754102, -73.994335, 40.752475, 'Credit', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'Cr2u4iyrs7ZekA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 53, tzinfo=datetime.timezone.utc), 5, 0.25, -73.982118, 40.771893, -73.978758, 40.772323, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'U3+d/yH87lMvLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 33, tzinfo=datetime.timezone.utc), 5, 0.24, -73.973317, 40.785125, -73.976258, 40.78618, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'bIS/xESs85uOfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 54, tzinfo=datetime.timezone.utc), 2, 0.44, -73.987025, 40.733427, -73.983008, 40.738922, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'CaLZ7UEPOf5gzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 32, tzinfo=datetime.timezone.utc), 1, 0.5, -73.949705, 40.780463, -73.954275, 40.774252, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'C68ToFzTSYVoOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 32, tzinfo=datetime.timezone.utc), 3, 0.34, -73.96735, 40.766823, -73.963377, 40.769248, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'FwEzgpt+82Nmeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 0, tzinfo=datetime.timezone.utc), 1, 0.32, -73.94606, 40.77319, -73.950498, 40.775453, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', '0HnLpvmejUzxFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.17, -73.981823, 40.761512, -73.98342, 40.76096, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'TI3/MHWlTK30Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 12, tzinfo=datetime.timezone.utc), 1, 0.18, -73.966773, 40.764012, -73.965342, 40.764583, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685115.6930006', 'Z80vIvQkAAFULw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 57, tzinfo=datetime.timezone.utc), 1, 1.19, -73.970595, 40.75633, -73.962452, 40.771533, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'M/qkBACexCJOwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 42, tzinfo=datetime.timezone.utc), 1, 1.08, -73.988108, 40.738455, -73.977583, 40.75155, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'kirF+Oc1CSQ86A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 50, tzinfo=datetime.timezone.utc), 2, 0.69, -73.993905, 40.724488, -73.9877, 40.718232, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'OGNEL9Z+wfRkTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 36, tzinfo=datetime.timezone.utc), 5, 0.95, -73.961355, 40.757648, -73.973282, 40.754975, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'z5p0e0sjA0DriQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 42, tzinfo=datetime.timezone.utc), 5, 0.81, -73.982358, 40.752625, -73.97465, 40.751785, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'OhSvBn27CaR9xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 8, tzinfo=datetime.timezone.utc), 1, 1.3, -73.959897, 40.773598, -73.971027, 40.758538, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '9JuzaHAY3oD0YQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 11, tzinfo=datetime.timezone.utc), 5, 1.33, -73.959707, 40.809412, -73.967835, 40.79393, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'wSB3AmhlNCfBEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 0, tzinfo=datetime.timezone.utc), 1, 1.22, -73.960053, 40.782078, -73.97755, 40.789433, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '89AfeDLJo9myOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 30, tzinfo=datetime.timezone.utc), 2, 0.97, -73.9863, 40.74001, -73.99174, 40.749282, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'aQI/6aE1S/xSHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 26, tzinfo=datetime.timezone.utc), 5, 0.86, -74.016137, 40.711273, -74.012968, 40.702365, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'JlBB+S5ctpTa8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 19, 28, tzinfo=datetime.timezone.utc), 5, 0.99, -73.963072, 40.776798, -73.956447, 40.776472, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'vyk0boAq8ZcwTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 33, tzinfo=datetime.timezone.utc), 4, 0.65, -73.998985, 40.722802, -73.998443, 40.715707, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'tSTMS9wf7+4WuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.7, -73.987765, 40.733582, -73.999108, 40.738428, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'DfCAoN3dE24i6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 20, tzinfo=datetime.timezone.utc), 2, 1.4, -73.97859, 40.740968, -73.991198, 40.723562, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'EbMkb3ZyPYbUtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 28, tzinfo=datetime.timezone.utc), 1, 0.66, -73.963107, 40.774577, -73.964897, 40.766365, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Nz1eQxLckyKzOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 48, tzinfo=datetime.timezone.utc), 2, 0.88, -74.003217, 40.72766, -73.99342, 40.733108, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'bmS6sP6Ci5wDgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 40, tzinfo=datetime.timezone.utc), 1, 0.72, -73.97773, 40.752902, -73.970748, 40.755723, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'SgPrX0bHYkjFdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 39, tzinfo=datetime.timezone.utc), 1, 0.34, -73.974072, 40.764505, -73.976255, 40.76047, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '8NrCfR+gor1mSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 24, tzinfo=datetime.timezone.utc), 1, 1.18, -73.981553, 40.732597, -73.970943, 40.747475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'RuHKHdCr4TQlPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.15, -73.977688, 40.753535, -73.985263, 40.73891, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'VnzUoAoYdFPXLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 44, tzinfo=datetime.timezone.utc), 2, 0.84, -73.990577, 40.756937, -73.978018, 40.753398, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '41tocI6n80amVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 32, tzinfo=datetime.timezone.utc), 2, 0.89, -73.955247, 40.779797, -73.957203, 40.769913, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'DmRDEQ2n/gs0+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 7, tzinfo=datetime.timezone.utc), 1, 1.14, -74.00268, 40.757587, -74.003112, 40.744965, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'g49+cFqNVNTAcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 58, tzinfo=datetime.timezone.utc), 1, 1.09, -73.991837, 40.738468, -74.00293, 40.731153, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'zv1LY//pK2+GVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 46, tzinfo=datetime.timezone.utc), 1, 0.66, -73.977682, 40.753883, -73.97711, 40.761003, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'yJaqszAsXoQUQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 54, tzinfo=datetime.timezone.utc), 1, 0.71, -73.982627, 40.738663, -73.991862, 40.744312, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'vkURNdG8dcyFzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 37, tzinfo=datetime.timezone.utc), 1, 0.75, -74.010393, 40.711705, -74.013125, 40.703072, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'rM0VslVgTPb1MQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 23, tzinfo=datetime.timezone.utc), 1, 0.96, -73.97859, 40.75082, -73.978718, 40.740635, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'pXvoyw3ezYg8hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.03, -73.970897, 40.751213, -73.981, 40.744157, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '2MSAAIfa++QnHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 40, tzinfo=datetime.timezone.utc), 5, 1.04, -73.988867, 40.736742, -74.002322, 40.733483, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'jOV/1l0c6xhEHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 28, tzinfo=datetime.timezone.utc), 1, 0.76, -73.974672, 40.762773, -73.977937, 40.753567, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '8LNhEeBff38fsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 52, tzinfo=datetime.timezone.utc), 1, 1.13, -73.966523, 40.770538, -73.957902, 40.784627, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'VelRxvvUi9RbAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 28, tzinfo=datetime.timezone.utc), 2, 0.92, -73.983702, 40.756297, -73.997837, 40.748768, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'eUVNIow77qmsAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 2, tzinfo=datetime.timezone.utc), 1, 0.9, -73.971963, 40.765498, -73.980402, 40.754338, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'tz2UNIjk8f97Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 54, tzinfo=datetime.timezone.utc), 5, 1.05, -73.985225, 40.76849, -73.969737, 40.761998, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CdrtvDRIFJVB+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 0, tzinfo=datetime.timezone.utc), 1, 1.14, -73.976715, 40.756382, -73.98253, 40.76718, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '6HZx1Mxwyr9cog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 28, tzinfo=datetime.timezone.utc), 5, 1.04, -73.967932, 40.80212, -73.969757, 40.789963, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'SceGdiaOTyCILA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 51, tzinfo=datetime.timezone.utc), 6, 0.83, -73.990625, 40.751193, -73.994032, 40.741122, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '9n/occgaLqriJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 16, tzinfo=datetime.timezone.utc), 1, 1.2, -73.991753, 40.74452, -73.979632, 40.754502, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'uN2subIjiWjHGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 0, tzinfo=datetime.timezone.utc), 1, 0.65, -73.983458, 40.734358, -73.993498, 40.736853, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'tXffZhg3aWcLRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 25, tzinfo=datetime.timezone.utc), 5, 0.7, -73.997727, 40.757268, -73.990562, 40.751385, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'UpCxuhKLO3ekMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 39, tzinfo=datetime.timezone.utc), 5, 1.09, -73.967025, 40.788662, -73.980965, 40.78516, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'BZm4stw9ulTQmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 27, tzinfo=datetime.timezone.utc), 1, 0.99, -73.988427, 40.727578, -74.001333, 40.725042, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'bBPII2cVQlmOoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.02, -73.968878, 40.761515, -73.97238, 40.749683, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'RreqLWpiVuXfgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 12, tzinfo=datetime.timezone.utc), 1, 1.44, -73.973607, 40.7893, -73.960177, 40.80783, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'rVfkIpayc04YpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 46, tzinfo=datetime.timezone.utc), 2, 0.85, -73.97668, 40.765133, -73.98258, 40.774092, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'KkkC84/ipct/8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 32, tzinfo=datetime.timezone.utc), 1, 1.1, -73.988055, 40.750357, -73.97896, 40.763102, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'NuKRmtr20HKzxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 50, tzinfo=datetime.timezone.utc), 1, 0.81, -73.992973, 40.767945, -73.986337, 40.761202, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'PwF6c3zIMjuKDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 35, tzinfo=datetime.timezone.utc), 1, 1.2, -73.991803, 40.73869, -73.987647, 40.746262, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CewO3piXc8GdMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 4, tzinfo=datetime.timezone.utc), 1, 0.29, -73.988135, 40.723792, -73.990072, 40.725632, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'q7WO4UTBiBelMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 10, tzinfo=datetime.timezone.utc), 5, 0.93, -73.96129, 40.77443, -73.970608, 40.764212, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Ovkyj+yKHcXLNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 8, tzinfo=datetime.timezone.utc), 1, 0.97, -73.991033, 40.745248, -73.991055, 40.755702, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'wbI6kMZ3cAf5Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 17, tzinfo=datetime.timezone.utc), 1, 1.05, -73.976682, 40.756505, -73.990042, 40.745112, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'PV4S217GFFcQLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 48, tzinfo=datetime.timezone.utc), 2, 0.81, -73.960285, 40.764685, -73.962643, 40.772838, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '+4AtZwR9hqGI7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 11, tzinfo=datetime.timezone.utc), 1, 0.79, -73.996145, 40.74435, -73.990952, 40.736065, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'XpU6ZbDO6JKn0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 18, tzinfo=datetime.timezone.utc), 2, 0.73, -73.994805, 40.730252, -73.993867, 40.734288, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'asX8xWAuzZjqrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.64, -73.981425, 40.752798, -73.991472, 40.755217, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'HNFvKsUglGTMaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.73, -73.966763, 40.75285, -73.974933, 40.74865, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '0jQQKwYlzKElFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 53, tzinfo=datetime.timezone.utc), 5, 0.91, -73.961958, 40.767805, -73.956102, 40.778737, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'XcUihQfJn9FkMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 10, tzinfo=datetime.timezone.utc), 5, 0.86, -73.982448, 40.761633, -73.982573, 40.771412, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '2aLuN9/FvrUE9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 44, tzinfo=datetime.timezone.utc), 5, 0.81, -74.005178, 40.721328, -73.996437, 40.723792, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '+d+93DK/hsNMoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 26, tzinfo=datetime.timezone.utc), 2, 0.85, -73.994012, 40.736398, -73.991902, 40.744115, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ld5RnHl0opnQqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 54, tzinfo=datetime.timezone.utc), 1, 0.83, -74.01353, 40.716102, -74.017173, 40.708335, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'XW4wKIYPENQ39Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 59, tzinfo=datetime.timezone.utc), 1, 1.26, -73.979487, 40.776822, -73.983152, 40.760452, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'PluHzYAhlzKV8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 32, tzinfo=datetime.timezone.utc), 1, 0.98, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ynVfZ+Z5B+ulgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 30, tzinfo=datetime.timezone.utc), 1, 0.97, -73.97767, 40.75556, -73.966433, 40.765397, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Sbn6XpWfde0HUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 51, tzinfo=datetime.timezone.utc), 2, 0.82, -73.979143, 40.785212, -73.981072, 40.774398, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'yHmy7tHTa2Q5Yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 1, tzinfo=datetime.timezone.utc), 1, 0.98, -73.978518, 40.755387, -73.976075, 40.752938, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Ndr1Rf6AkwKetA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 34, tzinfo=datetime.timezone.utc), 5, 1.02, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ghzVB7EpQ1ooEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 19, tzinfo=datetime.timezone.utc), 5, 1.1, -73.967995, 40.771157, -73.97748, 40.757785, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '6Arxjccy7SlkSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 58, tzinfo=datetime.timezone.utc), 1, 0.74, -73.975332, 40.757925, -73.966298, 40.753305, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hBudgtfi5gjClQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 0, tzinfo=datetime.timezone.utc), 1, 0.95, -73.950117, 40.77133, -73.961745, 40.76426, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'tx4+IixCrgvqOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 44, tzinfo=datetime.timezone.utc), 1, 0.9, -73.990898, 40.745168, -73.991405, 40.754798, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '6d2iD3XYVzb6MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 56, tzinfo=datetime.timezone.utc), 4, 0.93, -73.982112, 40.766567, -73.981248, 40.778927, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'RMj/Q4GkwIQT6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 29, tzinfo=datetime.timezone.utc), 1, 0.94, -73.968783, 40.767203, -73.97472, 40.756403, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'QorfLKtjFyq5Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 0, tzinfo=datetime.timezone.utc), 1, 0.98, -73.982018, 40.774722, -73.984523, 40.761262, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'OuDWoQU3odmJNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 16, tzinfo=datetime.timezone.utc), 1, 0.99, -73.961982, 40.8107, -73.969543, 40.797813, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'keBC+A+W8/bL5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 2, tzinfo=datetime.timezone.utc), 1, 1.02, -73.966625, 40.752978, -73.964578, 40.764158, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'TtR78t5qQ1E4xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 56, tzinfo=datetime.timezone.utc), 1, 0.87, -73.96169, 40.773263, -73.949637, 40.773728, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'lC/2vJagNKk3YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 12, tzinfo=datetime.timezone.utc), 5, 0.67, -73.985137, 40.739575, -73.99527, 40.74221, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'WKy6hYN6Ku2YTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 55, tzinfo=datetime.timezone.utc), 1, 1.18, -73.970408, 40.75875, -73.958918, 40.768475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '9X+LbqkWsV+/2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 53, tzinfo=datetime.timezone.utc), 1, 0.8, -73.969003, 40.761193, -73.978073, 40.756678, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'QJXyA8Ygw32ztw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 47, tzinfo=datetime.timezone.utc), 5, 0.45, -74.00166, 40.747442, -73.995992, 40.74869, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'f+7YxIFmBWWWsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 20, tzinfo=datetime.timezone.utc), 1, 1.21, -73.955917, 40.781803, -73.957915, 40.768635, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'G68X0XfmIL8xLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 19, tzinfo=datetime.timezone.utc), 1, 0.98, -73.959073, 40.774913, -73.967918, 40.762848, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CCWsiO5vLD/gNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 1, tzinfo=datetime.timezone.utc), 5, 0.88, -73.992928, 40.768282, -73.979322, 40.767042, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '3KnLGipYoKzWOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 34, tzinfo=datetime.timezone.utc), 5, 1.41, -73.994218, 40.746373, -74.000665, 40.728847, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ZmeKyWpatTQqRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 11, tzinfo=datetime.timezone.utc), 1, 1.04, -73.990787, 40.75089, -73.987583, 40.741413, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'nxuDHZMynXbdIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 17, tzinfo=datetime.timezone.utc), 1, 0.99, -73.994853, 40.76264, -73.989808, 40.752582, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'yVpdz/uxSuI8Ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 22, 50, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 56, 52, tzinfo=datetime.timezone.utc), 1, 0.9, -74.006567, 40.734366, -73.999138, 40.739594, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ZOwORtJW0g9JRA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 31, tzinfo=datetime.timezone.utc), 1, 1.15, -73.989807, 40.756032, -73.990018, 40.756817, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'rOipPeleJ8tOjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 47, tzinfo=datetime.timezone.utc), 5, 0.96, -73.983707, 40.762143, -73.99189, 40.749098, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'yNEYHZmQWIULuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 9, 48, tzinfo=datetime.timezone.utc), 1, 1.05, -73.972338, 40.78655, -73.984365, 40.780055, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'G8BCrBOSpkQecg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 5, tzinfo=datetime.timezone.utc), 2, 0.85, -73.985505, 40.751925, -73.978177, 40.757253, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'KE+bXHwn0V43dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 22, tzinfo=datetime.timezone.utc), 1, 1.0, -73.96154, 40.760123, -73.9694, 40.753717, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'vwK0IKdRkHnrHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 41, tzinfo=datetime.timezone.utc), 1, 1.08, -73.993608, 40.75706, -73.988868, 40.768823, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'IcpRmFg840coLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 10, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980925, 40.759885, -73.97273, 40.756257, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '4YZ7EbKiGItD2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.8, -73.983832, 40.7552, -73.973705, 40.755088, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'DNrMyvCZJiPH3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 46, tzinfo=datetime.timezone.utc), 6, 1.33, -73.982528, 40.776243, -73.971027, 40.793298, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'sPQX8fjmXxnFmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 28, tzinfo=datetime.timezone.utc), 1, 1.19, -73.964547, 40.790837, -73.950757, 40.799948, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '42SXfR06yFXViQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 25, tzinfo=datetime.timezone.utc), 1, 1.03, -73.96542, 40.76609, -73.961897, 40.756087, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'rU2gPMP39VSakw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 34, tzinfo=datetime.timezone.utc), 1, 1.35, -73.994418, 40.745818, -74.006427, 40.73021, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ukeb9JFr4cor8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 13, 20, 58, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 2, 20, tzinfo=datetime.timezone.utc), 1, 1.4, -73.955908, 40.778687, -73.968869, 40.761032, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'HSFGBxt4vpnh0Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 11, tzinfo=datetime.timezone.utc), 5, 0.82, -73.989752, 40.756808, -73.979295, 40.758425, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hg4S/94XlnzmJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 53, tzinfo=datetime.timezone.utc), 1, 1.16, -73.986588, 40.73046, -73.9864, 40.742192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'm6zt3r5LHkv8Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 13, tzinfo=datetime.timezone.utc), 1, 0.57, -73.996328, 40.686175, -73.992575, 40.693858, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'IGQxOIRzrFi6tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 48, tzinfo=datetime.timezone.utc), 1, 0.73, -74.000143, 40.726658, -73.991755, 40.733467, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'azDn6ESoqKrj3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 22, tzinfo=datetime.timezone.utc), 2, 1.02, -73.98259, 40.776027, -73.98045, 40.786495, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Hr1AxF+douE71A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 9, tzinfo=datetime.timezone.utc), 1, 0.93, -73.969437, 40.762203, -73.958547, 40.766008, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'HJ3+UQNfFWRXKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 27, tzinfo=datetime.timezone.utc), 2, 1.25, -73.972885, 40.74454, -73.97186, 40.757065, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '93Nnwn1Pv4D3eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 47, tzinfo=datetime.timezone.utc), 1, 1.19, -74.00658, 40.731792, -73.99647, 40.742855, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'voi/zpe7hzvXUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 12, tzinfo=datetime.timezone.utc), 1, 0.91, -73.990682, 40.755817, -73.980378, 40.750223, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'lhfmdvN2XSAA9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), 5, 0.91, -73.830245, 40.75943, -73.816962, 40.761767, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '0pz5E883+4+VYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 53, tzinfo=datetime.timezone.utc), 2, 0.81, -73.960507, 40.768772, -73.95818, 40.777772, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'AMEHvlDlr4hvcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 43, tzinfo=datetime.timezone.utc), 3, 0.97, -73.995095, 40.73401, -73.980283, 40.727173, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'cSYMU6EdX9fHLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 2, tzinfo=datetime.timezone.utc), 2, 0.88, -73.984125, 40.752055, -73.984052, 40.746958, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'nP6j3SVwSrmlCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 23, tzinfo=datetime.timezone.utc), 2, 1.03, -73.988968, 40.74138, -73.979505, 40.752358, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'UsjAB4sbgMXUpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 32, tzinfo=datetime.timezone.utc), 1, 1.13, -73.990978, 40.745297, -73.982428, 40.756697, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'eEfF2ZyMI3PzgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 14, tzinfo=datetime.timezone.utc), 2, 0.76, -73.978385, 40.761793, -73.971788, 40.756488, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '/XA7ny9Q3UQuxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 49, tzinfo=datetime.timezone.utc), 1, 0.94, -73.984735, 40.75725, -73.99429, 40.747137, 'Credit', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'gvhbz1Fl2EBjvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 3, tzinfo=datetime.timezone.utc), 1, 0.49, -73.98612, 40.7621, -73.97898, 40.762595, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'oJQzV56x7v5s/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 39, tzinfo=datetime.timezone.utc), 1, 0.91, -73.986878, 40.754763, -73.995123, 40.750028, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ssrjVv6LXz+gcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 36, tzinfo=datetime.timezone.utc), 1, 0.71, -73.98237, 40.763822, -73.976665, 40.757127, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hZ9mp1jTV+z3Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 57, tzinfo=datetime.timezone.utc), 1, 1.17, -73.991938, 40.740888, -73.984185, 40.754812, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'VB3fuiu/VULMUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.93, -73.982705, 40.739668, -73.992643, 40.743142, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'aQRfaSOR+vR6PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 7, tzinfo=datetime.timezone.utc), 1, 1.26, -74.003258, 40.742555, -74.001297, 40.756393, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '7De0h5qYgrrUfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.75, -73.96205, 40.767762, -73.963862, 40.775465, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '7rXPMZSoMVFR+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 6, tzinfo=datetime.timezone.utc), 1, 0.91, -74.008103, 40.73343, -73.992683, 40.734015, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'rP2FgR8UiwJ0iA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 41, tzinfo=datetime.timezone.utc), 1, 0.92, -73.981825, 40.751385, -73.994372, 40.750178, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'iybsvscCHjEW1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 30, tzinfo=datetime.timezone.utc), 1, 0.84, -73.981457, 40.743963, -73.972157, 40.749612, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'odyltOUF064U2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 20, tzinfo=datetime.timezone.utc), 3, 0.84, -73.998538, 40.745393, -74.008147, 40.747572, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'YZDJ3e7pTfnUUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 54, tzinfo=datetime.timezone.utc), 5, 0.74, -73.968013, 40.771058, -73.97025, 40.76823, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'WyvNh7uyJ5rK2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 48, tzinfo=datetime.timezone.utc), 1, 0.85, -73.99164, 40.744502, -73.99082, 40.734582, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CSJ0u4QvUFij7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 54, tzinfo=datetime.timezone.utc), 1, 1.34, -73.990563, 40.75161, -74.001817, 40.734982, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '5M3OIHgRKx4JGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 39, tzinfo=datetime.timezone.utc), 2, 0.93, -73.965978, 40.762347, -73.957463, 40.768487, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'nyaFEi8DnKnMAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 14, tzinfo=datetime.timezone.utc), 1, 0.48, -73.969315, 40.75805, -73.974023, 40.7573, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'czwxt41zTYpduQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 56, tzinfo=datetime.timezone.utc), 2, 0.67, -73.997188, 40.722148, -74.000517, 40.728632, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'sTL9a1jaJ0yhAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 25, tzinfo=datetime.timezone.utc), 1, 0.89, -73.967883, 40.787313, -73.974527, 40.793243, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'FLr07rpNk3yKIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 34, tzinfo=datetime.timezone.utc), 1, 0.96, -73.979388, 40.727463, -73.981745, 40.735803, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'mUCGKwTwwoxkBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 43, tzinfo=datetime.timezone.utc), 1, 1.31, -73.966063, 40.762127, -73.959057, 40.777527, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'I19Ot9S3/05NBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 45, tzinfo=datetime.timezone.utc), 5, 0.98, -73.985813, 40.762477, -73.987813, 40.755683, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'spa1ei3sHcM2lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 8, tzinfo=datetime.timezone.utc), 3, 0.79, -73.987402, 40.735997, -73.999787, 40.738465, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hW6/07Z5DTHIfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 56, tzinfo=datetime.timezone.utc), 1, 1.14, -73.945145, 40.774647, -73.945363, 40.78218, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'uxCPW8aS3Flkwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 51, tzinfo=datetime.timezone.utc), 2, 0.48, -73.952668, 40.786005, -73.947233, 40.782577, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'XIedhQmI6rJ+iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 27, tzinfo=datetime.timezone.utc), 1, 1.04, -73.986567, 40.769388, -73.98627, 40.75752, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CWvzviGQlCbN3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 9, 58, tzinfo=datetime.timezone.utc), 2, 1.06, -73.98643, 40.77741, -73.982075, 40.767275, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'KQWhJFXGW3kKVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 15, tzinfo=datetime.timezone.utc), 5, 0.75, -73.978448, 40.754163, -73.979798, 40.76192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '7IqKMC46u9aiDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 14, tzinfo=datetime.timezone.utc), 1, 1.15, -73.969052, 40.800893, -73.977477, 40.787153, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'RyK8RbOo31vWaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 22, tzinfo=datetime.timezone.utc), 2, 0.97, -73.953302, 40.791585, -73.961942, 40.779347, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'diUYoTXrtqXYaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 45, tzinfo=datetime.timezone.utc), 5, 1.05, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'LccvYp//fuXABg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 27, tzinfo=datetime.timezone.utc), 5, 0.85, -74.005517, 40.748477, -73.998753, 40.742443, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'iNFjEigHxHqsjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.97, -73.95862, 40.78089, -73.96579, 40.769478, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'MhsDPBC3sPLuNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 44, tzinfo=datetime.timezone.utc), 2, 0.87, -73.985885, 40.761793, -73.975843, 40.757023, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'vp4PS7sXj7HxYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 22, 44, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 49, 3, tzinfo=datetime.timezone.utc), 2, 1.2, -74.013018, 40.716553, -74.007719, 40.732278, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'mTQyv4yaEg9kLQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), 1, 0.61, -73.97341, 40.756515, -73.973187, 40.750227, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '6QVBsywq6uEb0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 12, 18, 25, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 32, 55, tzinfo=datetime.timezone.utc), 1, 0.5, -73.951534, 40.777843, -73.954427, 40.783806, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'SJkqciG8VUcdew', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 36, tzinfo=datetime.timezone.utc), 6, 0.94, -74.007068, 40.743742, -73.992493, 40.740282, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'IH2TMkQ6wSyY/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 50, tzinfo=datetime.timezone.utc), 1, 1.04, -73.975525, 40.745365, -73.974537, 40.736523, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'HOm0RAqgZpfhaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 50, tzinfo=datetime.timezone.utc), 2, 0.81, -73.97715, 40.755285, -73.973622, 40.76307, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '5H4hi7LVIfXvJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.34, -74.003745, 40.713382, -73.99773, 40.720818, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '/TjeG3ci5e2rOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 25, tzinfo=datetime.timezone.utc), 2, 1.0, -73.95037, 40.775717, -73.951358, 40.786112, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'qhrgtvReVTSjsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 20, tzinfo=datetime.timezone.utc), 2, 1.09, -73.95944, 40.771198, -73.970123, 40.762475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'fs9wMNcsT3HhEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 46, tzinfo=datetime.timezone.utc), 5, 1.54, -73.976112, 40.78619, -73.959963, 40.79974, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Ly95LO4mIeYOZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 3, tzinfo=datetime.timezone.utc), 1, 0.96, -73.992653, 40.758485, -74.001385, 40.746383, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hOrcHeROBhasnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 21, tzinfo=datetime.timezone.utc), 5, 0.95, -73.976183, 40.744968, -73.991538, 40.749957, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Wlqkurm16Fqr5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 37, tzinfo=datetime.timezone.utc), 2, 0.98, -73.972213, 40.764633, -73.981683, 40.755245, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'BKDaSs4Jx4yt5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.08, -73.979265, 40.755417, -73.986443, 40.754777, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Wk1BvJP0eNaQTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 26, tzinfo=datetime.timezone.utc), 1, 0.71, -73.956567, 40.778268, -73.960352, 40.769653, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'pizOAsIWNFbQOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 42, tzinfo=datetime.timezone.utc), 1, 1.09, -73.977813, 40.783737, -73.982352, 40.771363, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '3cEml8tRVxZ+Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 26, tzinfo=datetime.timezone.utc), 1, 0.88, -73.978602, 40.750422, -73.97021, 40.757192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'UEktBOB7CZFxDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.27, -73.973472, 40.751305, -73.962332, 40.768298, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'DTmpSrwSvv+RHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 13, tzinfo=datetime.timezone.utc), 1, 0.65, -73.975995, 40.740188, -73.980737, 40.746165, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'UxzWsXPTKNPw6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 6, tzinfo=datetime.timezone.utc), 2, 0.69, -73.985543, 40.744648, -73.99481, 40.745457, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'hw8h6TYyEC+Jwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 18, tzinfo=datetime.timezone.utc), 2, 0.61, -73.954625, 40.778187, -73.95376, 40.784928, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '5RLcu0+hU6EaGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 45, tzinfo=datetime.timezone.utc), 1, 1.05, -73.989202, 40.736523, -74.006602, 40.744573, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'xnY2nWwKKf3Edw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 48, tzinfo=datetime.timezone.utc), 2, 1.17, -73.985385, 40.73567, -73.975, 40.750147, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'zYw9Z2sNwtTJPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 31, tzinfo=datetime.timezone.utc), 2, 0.88, -73.958882, 40.775208, -73.95677, 40.779447, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '+WH9ZVuM8Q4Hnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 38, tzinfo=datetime.timezone.utc), 2, 1.38, -73.977935, 40.74879, -73.961575, 40.756738, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'taXz5LsH4UQvcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 34, tzinfo=datetime.timezone.utc), 1, 0.83, -73.993857, 40.741657, -74.007305, 40.7482, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'R3NxNF4v+RxrLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 55, tzinfo=datetime.timezone.utc), 2, 1.02, -73.989603, 40.741857, -74.00417, 40.735558, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Pe4vff9oL3BBIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 31, tzinfo=datetime.timezone.utc), 2, 1.01, -73.977083, 40.75052, -73.991428, 40.7503, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'SXI1+EmGGuchvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 54, tzinfo=datetime.timezone.utc), 1, 1.21, -73.970295, 40.767892, -73.981825, 40.755085, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'CXJZwBPIVmOeTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 6, tzinfo=datetime.timezone.utc), 1, 0.41, -73.973218, 40.760765, -73.9776, 40.75809, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'HvmIw+mauCCWzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.61, -73.969498, 40.757702, -73.963823, 40.765373, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'zIZXmtI3ZYQYmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 23, tzinfo=datetime.timezone.utc), 3, 1.33, -73.987178, 40.770855, -73.981207, 40.78684, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Hv/qOjbON/3Cbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 4, tzinfo=datetime.timezone.utc), 5, 1.09, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'm5PZWNU8ucETng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 25, tzinfo=datetime.timezone.utc), 2, 1.37, -73.976983, 40.76259, -73.985742, 40.74893, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'qtwuZgpv7n2SDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 23, tzinfo=datetime.timezone.utc), 1, 1.31, -74.006163, 40.7345, -73.994425, 40.750782, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'GSC0XSz3DjEv4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 22, tzinfo=datetime.timezone.utc), 5, 0.76, -73.957265, 40.77459, -73.946157, 40.773718, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'e5dV7NL1XAi8Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 54, tzinfo=datetime.timezone.utc), 3, 1.02, -73.979333, 40.75654, -73.972047, 40.74644, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '/PfKL9dV7nFJpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 36, tzinfo=datetime.timezone.utc), 1, 1.05, -73.990072, 40.756135, -73.97625, 40.756778, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '8JzKGV9ch84/sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 54, tzinfo=datetime.timezone.utc), 1, 1.12, -73.955872, 40.781992, -73.9505, 40.771172, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'Cg8w1AfbWhWR6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.82, -73.975663, 40.74953, -73.968202, 40.759765, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'jbXJgGTIPYPO1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 17, tzinfo=datetime.timezone.utc), 5, 0.84, -73.98594, 40.761723, -73.973732, 40.755067, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'w43UEYhJzjO2kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 5, tzinfo=datetime.timezone.utc), 5, 1.04, -73.982452, 40.767962, -73.981043, 40.781507, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'ibBvMJbHZd/7RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 16, tzinfo=datetime.timezone.utc), 1, 0.62, -73.964868, 40.759622, -73.971043, 40.764182, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', 'pKuBs3CKVN/Sdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 44, tzinfo=datetime.timezone.utc), 1, 1.15, -73.955997, 40.767732, -73.967597, 40.756283, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685115.6930006', '0Jg+ThRkE16keA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 10, tzinfo=datetime.timezone.utc), 2, 0.95, -74.008793, 40.719118, -73.99879, 40.717167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Lw7E2AhiLD0Ucw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 18, tzinfo=datetime.timezone.utc), 1, 1.17, -73.980043, 40.751722, -73.990927, 40.751167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'hozwY1EnqugVtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 8, tzinfo=datetime.timezone.utc), 1, 1.09, -73.988903, 40.666095, -73.998003, 40.656955, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'qV2vxJ05HuyfkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.985415, 40.762048, -73.97052, 40.757293, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Q9BEGPnqwZOCjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 43, tzinfo=datetime.timezone.utc), 1, 1.3, -73.952448, 40.778783, -73.941568, 40.79038, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Pn63XlKZvbfhWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 35, tzinfo=datetime.timezone.utc), 1, 0.87, -73.991258, 40.719632, -74.005432, 40.724368, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'U78jky4lZ6F6IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 54, tzinfo=datetime.timezone.utc), 2, 0.98, -73.989803, 40.747512, -74.004517, 40.752185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'OEXhxh+IRjoLZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 24, tzinfo=datetime.timezone.utc), 1, 0.93, -73.991165, 40.745357, -73.978088, 40.745608, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'ArfI0PDdUu84ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 46, tzinfo=datetime.timezone.utc), 3, 1.43, -74.007717, 40.711745, -74.001382, 40.730317, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 's+1rPXuC18OlJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 3, tzinfo=datetime.timezone.utc), 2, 0.92, -73.999032, 40.744462, -74.008218, 40.747368, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'ziZgQWCUB18mvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 19, tzinfo=datetime.timezone.utc), 6, 0.95, -73.988583, 40.758855, -73.974185, 40.75573, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'czwyLL8bj0DCng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 21, tzinfo=datetime.timezone.utc), 1, 1.15, -73.970498, 40.76776, -73.971052, 40.748808, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'o8FZE/GNFPOHcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 4, tzinfo=datetime.timezone.utc), 1, 0.97, -73.993223, 40.728042, -73.978662, 40.724557, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '6QNGG4aQVAS6Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 39, tzinfo=datetime.timezone.utc), 2, 1.19, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '1w6p+eglhvg9HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 8, tzinfo=datetime.timezone.utc), 2, 1.27, -73.976142, 40.746685, -73.98137, 40.760167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'mKKjs9D/aUK9ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 20, tzinfo=datetime.timezone.utc), 1, 1.43, -73.972185, 40.756222, -73.985943, 40.74391, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'lCG0jdzsySwaGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 32, tzinfo=datetime.timezone.utc), 1, 1.33, -73.965287, 40.755008, -73.962892, 40.769695, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'xV3YR5jh3PM3Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 30, tzinfo=datetime.timezone.utc), 2, 1.13, -73.96096, 40.774872, -73.952828, 40.788207, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '/7/U3GqBGnNItg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 4, 26, tzinfo=datetime.timezone.utc), 5, 1.0, -73.985168, 40.731573, -73.999027, 40.731378, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'DdVSB3zv0iMC1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 53, tzinfo=datetime.timezone.utc), 1, 1.36, -74.014147, 40.7174, -74.008623, 40.734778, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'br0zrAwRRO54zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 57, tzinfo=datetime.timezone.utc), 1, 1.15, -73.992505, 40.743095, -73.977725, 40.747297, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'lKbSyEX7s5jASA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 19, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989332, 40.747982, -73.985747, 40.735745, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'O+FFQUiFEErsHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 38, tzinfo=datetime.timezone.utc), 5, 0.9, -73.974083, 40.762943, -73.982325, 40.762775, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'epH1HlbRdFk20g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 28, tzinfo=datetime.timezone.utc), 5, 1.02, -73.99227, 40.736872, -73.99009, 40.748378, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '2O1hevzxcSOA0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 48, tzinfo=datetime.timezone.utc), 2, 0.99, -73.997443, 40.714182, -74.011163, 40.713472, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'nRIXtJ6jXNG5tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 8, tzinfo=datetime.timezone.utc), 5, 0.99, -73.998207, 40.716953, -74.01009, 40.721967, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'vzfOQBM2YXQ9lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 34, tzinfo=datetime.timezone.utc), 1, 1.03, -73.98094, 40.75949, -73.979783, 40.770943, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'vuEGnFOGc5eWPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 11, tzinfo=datetime.timezone.utc), 5, 1.25, -73.994925, 40.725603, -73.982283, 40.737597, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '/LLtePVUB8q4wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.25, -73.964052, 40.768012, -73.975763, 40.752465, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'IX1eU3JmLSkDZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 24, tzinfo=datetime.timezone.utc), 1, 0.69, -73.994527, 40.728345, -73.983012, 40.723345, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'DIkjGtU/7zmgug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 3, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 3, 57, tzinfo=datetime.timezone.utc), 2, 0.99, -74.00202, 40.750808, -73.990453, 40.758853, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'SYr5qnFWxtYnXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 47, tzinfo=datetime.timezone.utc), 1, 0.98, -73.988777, 40.722158, -74.00471, 40.728533, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'F0kGN70uksVYmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 5, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 5, 9, tzinfo=datetime.timezone.utc), 1, 1.17, -73.963613, 40.768498, -73.952058, 40.777783, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'fielg+yhZ+AWJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 17, tzinfo=datetime.timezone.utc), 5, 0.82, -73.993533, 40.727443, -73.991135, 40.73749, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'H4VZT+l4ajLq1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 5, tzinfo=datetime.timezone.utc), 1, 1.06, -73.844373, 40.72131, -73.853372, 40.708938, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'f/ciWMpiIcSZCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 43, tzinfo=datetime.timezone.utc), 1, 1.16, -73.939648, 40.706398, -73.924312, 40.70617, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'BeQjIrqLRZe7LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 24, tzinfo=datetime.timezone.utc), 1, 0.88, -73.982548, 40.762095, -73.990225, 40.751307, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Ulmi60L40wYlnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 25, tzinfo=datetime.timezone.utc), 2, 0.92, -73.968743, 40.764307, -73.982362, 40.765963, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'NBsiO+XaCo1TLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 49, tzinfo=datetime.timezone.utc), 2, 1.15, -73.969258, 40.724902, -73.972053, 40.725745, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'QOcgpWBsL9eqsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 48, tzinfo=datetime.timezone.utc), 5, 1.18, -73.982613, 40.772275, -73.995185, 40.762053, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '6upJX1clWvyA2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 33, tzinfo=datetime.timezone.utc), 1, 1.25, -73.99755, 40.72469, -74.008552, 40.712452, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'qqq2IiAlYAwr5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 2, tzinfo=datetime.timezone.utc), 5, 0.91, -73.984033, 40.762992, -73.992698, 40.768422, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'DGois0WFrRWh0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 10, tzinfo=datetime.timezone.utc), 5, 1.06, -73.993967, 40.751303, -73.984867, 40.764107, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'xITFgUXRJTGvzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 28, tzinfo=datetime.timezone.utc), 1, 1.43, -73.966758, 40.798315, -73.953288, 40.814382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'he8Xyok9EviLtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 15, tzinfo=datetime.timezone.utc), 1, 0.87, -73.977268, 40.789598, -73.975753, 40.781542, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'HLgFXdTnOHKsHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 33, tzinfo=datetime.timezone.utc), 1, 0.98, -73.972823, 40.76519, -73.982367, 40.773268, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'm/hHFGDHYeVh6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 4, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 5, 1, tzinfo=datetime.timezone.utc), 5, 0.98, -74.00471, 40.740603, -73.992428, 40.743513, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'YhjZaC8pgkuhYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.64, -73.97924, 40.74606, -73.974143, 40.742763, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'UVi1JgAd0f9+oQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 16, tzinfo=datetime.timezone.utc), 1, 0.73, -73.991062, 40.75073, -73.990568, 40.755717, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'IHqCNO7sOzJ5UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.07, -73.983943, 40.76136, -73.992218, 40.747908, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'NY6xWwGGL/RzbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 52, tzinfo=datetime.timezone.utc), 1, 1.08, -73.987905, 40.740047, -73.978348, 40.751593, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'hJ75IyiNbY2YZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 3, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 3, 59, tzinfo=datetime.timezone.utc), 5, 1.03, -73.982268, 40.762957, -73.980457, 40.76592, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'oaaohC6omRzGvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 37, tzinfo=datetime.timezone.utc), 1, 0.61, -73.984625, 40.759123, -73.994878, 40.76367, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'r080+Iw3iUaBrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 12, tzinfo=datetime.timezone.utc), 2, 1.4, -73.99864, 40.745163, -73.996913, 40.760248, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '89HyPFk5yXi+hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 19, tzinfo=datetime.timezone.utc), 1, 1.35, -73.987547, 40.743682, -73.990505, 40.756168, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '/2XmozZrh7IcOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 22, tzinfo=datetime.timezone.utc), 1, 1.39, -73.975318, 40.745573, -73.988032, 40.728048, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'I0Tx+OdjIMCJUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 1, 13, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989157, 40.726705, -74.005705, 40.726425, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'EPwDeBhVB/pzdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 52, tzinfo=datetime.timezone.utc), 1, 1.08, -73.982835, 40.756722, -73.992993, 40.747947, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'qZJaGx7aQBP1+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 37, tzinfo=datetime.timezone.utc), 1, 1.12, -73.999195, 40.744285, -73.982002, 40.739875, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '2Brkil0yfw6jTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 56, tzinfo=datetime.timezone.utc), 1, 1.12, -73.979017, 40.713848, -73.984962, 40.724153, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'zYOm583U2A5YQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 1, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 39, tzinfo=datetime.timezone.utc), 1, 1.24, -73.981505, 40.738093, -73.987442, 40.749302, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'GQE+7PzCkU7l1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 41, tzinfo=datetime.timezone.utc), 3, 0.97, -73.984922, 40.747977, -73.982327, 40.756185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'P8QKSXHzC9Qdog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 56, tzinfo=datetime.timezone.utc), 1, 0.88, -73.948185, 40.801653, -73.949117, 40.803008, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'QEfIf+5HYwZVDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 24, tzinfo=datetime.timezone.utc), 3, 1.13, -73.989223, 40.75617, -73.993493, 40.749385, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'RY7o+q5LA3+bYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 6, tzinfo=datetime.timezone.utc), 1, 1.26, -73.958068, 40.774568, -73.974423, 40.778382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'uvtHRQH68P9DtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 44, tzinfo=datetime.timezone.utc), 1, 1.02, -73.987923, 40.722458, -74.00328, 40.724045, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Z0HX/4T5a1xyzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 34, tzinfo=datetime.timezone.utc), 1, 0.79, -73.986077, 40.730635, -73.99582, 40.72536, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Yj3htexKJqZQOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 41, tzinfo=datetime.timezone.utc), 1, 0.98, -73.995905, 40.759055, -73.9911, 40.750332, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'UEP5d+1vf8AP2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 52, tzinfo=datetime.timezone.utc), 5, 0.88, -73.985023, 40.740753, -73.971282, 40.747417, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'gN7xyvKP+qhXXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 32, tzinfo=datetime.timezone.utc), 2, 1.19, -73.997697, 40.72584, -73.995082, 40.739613, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'g28hvpYaCDs/pQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 5, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 5, 55, tzinfo=datetime.timezone.utc), 1, 1.23, -73.995805, 40.72079, -74.009565, 40.709992, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'jE6yEs3UDOGuzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 25, tzinfo=datetime.timezone.utc), 1, 1.27, -73.97143, 40.758718, -73.983418, 40.74385, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'jz7ZZtl8+fLHBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 20, tzinfo=datetime.timezone.utc), 5, 0.98, -73.985017, 40.758067, -73.97824, 40.754028, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'PXjCTOCSrmyHOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 32, tzinfo=datetime.timezone.utc), 5, 0.49, -73.98569, 40.76227, -73.97997, 40.761082, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'HeeTVKjlH4rK1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 54, tzinfo=datetime.timezone.utc), 1, 0.99, -73.985137, 40.74763, -73.986223, 40.756943, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'DXrlk84RBgQGYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 48, tzinfo=datetime.timezone.utc), 1, 1.38, -73.977847, 40.783942, -73.96652, 40.80073, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'ebK9d7zfw3SisA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 13, tzinfo=datetime.timezone.utc), 2, 0.93, -73.989385, 40.748915, -73.991157, 40.738467, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'StM71gQOhLNuGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 2, tzinfo=datetime.timezone.utc), 1, 0.98, -73.975942, 40.763802, -73.98218, 40.77494, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '8N8S0ECv6/PLzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.44, -73.947002, 40.784127, -73.932498, 40.799825, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'rdK1Tfa8oNVTiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 36, tzinfo=datetime.timezone.utc), 1, 0.91, -73.985898, 40.726877, -73.998637, 40.734053, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'M7H35/57VJ6bSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 3, tzinfo=datetime.timezone.utc), 1, 1.11, -74.007238, 40.727528, -73.995193, 40.718485, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '3PmgCp+bHMCBZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 4, tzinfo=datetime.timezone.utc), 5, 1.21, -74.08482, 40.694078, -74.073335, 40.701065, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'p/ppae44rzkdKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 3, tzinfo=datetime.timezone.utc), 5, 1.27, -73.948472, 40.782338, -73.960897, 40.76936, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'A9Ok4LRYueZ5Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 7, tzinfo=datetime.timezone.utc), 2, 1.18, -74.006615, 40.70679, -74.010153, 40.719182, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'wdE1NI9DEZgslg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 58, tzinfo=datetime.timezone.utc), 1, 1.31, -73.973918, 40.783993, -73.956702, 40.781785, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'YrnCE9cmQ+YzHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 9, tzinfo=datetime.timezone.utc), 1, 0.99, -73.980753, 40.750922, -73.991702, 40.744645, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'xHMFc8mSVf0WUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 5, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 5, 44, tzinfo=datetime.timezone.utc), 2, 1.12, -73.903522, 40.745368, -73.920365, 40.739502, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'cpgMfHmK4ZsDMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 24, tzinfo=datetime.timezone.utc), 2, 1.28, -73.94478, 40.716745, -73.953783, 40.730928, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'veUgzsI+Hx9v6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 3, tzinfo=datetime.timezone.utc), 2, 1.01, -73.967725, 40.755827, -73.962978, 40.763132, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'uBgqWyd6JLwkAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 33, tzinfo=datetime.timezone.utc), 1, 1.09, -73.993658, 40.736297, -73.990997, 40.725057, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'bbj0VxhI+YeV4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 6, tzinfo=datetime.timezone.utc), 1, 0.97, -73.976418, 40.750912, -73.989968, 40.75318, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'OgQIQZ3okrZEcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 11, tzinfo=datetime.timezone.utc), 1, 1.21, -73.962598, 40.76305, -73.973087, 40.748452, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'lQFnIrXByGWCLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 30, tzinfo=datetime.timezone.utc), 5, 1.5, -74.005407, 40.717967, -73.996205, 40.738073, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Gx6byd6FEdVAcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 20, tzinfo=datetime.timezone.utc), 5, 0.9, -73.995073, 40.724822, -74.003957, 40.729653, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '2n76W3ow5H/uOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 8, tzinfo=datetime.timezone.utc), 1, 1.1, -74.000072, 40.733028, -73.9866, 40.74219, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'i+hhjTYZalXP0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 40, tzinfo=datetime.timezone.utc), 1, 1.02, -74.000607, 40.727163, -73.989027, 40.725288, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'hg0c3Pj7cSmE/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 2, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 2, 19, tzinfo=datetime.timezone.utc), 1, 1.54, -74.005812, 40.726488, -73.992623, 40.743155, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'FueWgqCZ3esJ3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 25, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989358, 40.726198, -73.990197, 40.714558, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'GhAYHfjhCrYSbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 8, tzinfo=datetime.timezone.utc), 5, 1.31, -73.95653, 40.783455, -73.967298, 40.788185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '/9ZRifMBahR6xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.11, -73.976315, 40.747928, -73.984317, 40.737603, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '96RqYQaKy74ehw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 2, tzinfo=datetime.timezone.utc), 1, 1.37, -74.004222, 40.74239, -74.005537, 40.726643, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Q4tsWCeI9peO7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 5, tzinfo=datetime.timezone.utc), 1, 0.13, -73.95206, 40.781792, -73.938883, 40.799597, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'vwZ19PG9bfQa9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 4, tzinfo=datetime.timezone.utc), 5, 1.23, -73.987007, 40.748387, -73.984877, 40.758018, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'sVTTcCALWtPJGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 46, tzinfo=datetime.timezone.utc), 1, 1.14, -73.989797, 40.734398, -74.004898, 40.74328, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'ViJTbBCqIuzVEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 4, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 44, tzinfo=datetime.timezone.utc), 1, 1.37, -73.991658, 40.723938, -73.997083, 40.737227, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '2BYteRBA1QRuDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.31, -73.937645, 40.804187, -73.950555, 40.789612, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '0RHRiy+OZ4hwBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 21, tzinfo=datetime.timezone.utc), 1, 0.67, -73.992027, 40.73874, -73.98273, 40.739138, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'HwfxfExen9z+gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 20, tzinfo=datetime.timezone.utc), 5, 1.08, -73.977077, 40.742963, -73.980617, 40.730492, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '8sZMKr8kXEuN4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 47, tzinfo=datetime.timezone.utc), 5, 0.98, -74.000145, 40.742985, -73.991582, 40.755038, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'K/3BP3KXTF5y8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 27, tzinfo=datetime.timezone.utc), 1, 1.12, -73.989993, 40.72949, -73.984357, 40.742627, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'l3dLwlKN+Bi1OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 17, tzinfo=datetime.timezone.utc), 1, 1.27, -73.98204, 40.752067, -73.995618, 40.740737, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '54Lsl/D/4e4doA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 33, tzinfo=datetime.timezone.utc), 5, 1.33, -73.978893, 40.777202, -73.99112, 40.76041, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'bDU47KYCiayHXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 4, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 4, 56, tzinfo=datetime.timezone.utc), 2, 1.02, -73.985375, 40.745668, -73.991182, 40.751542, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '9kzXS68jkT/D0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.77, -73.984628, 40.760127, -73.977882, 40.75348, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'u9oKNMYpeW0r1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 8, tzinfo=datetime.timezone.utc), 1, 1.16, -73.971125, 40.758477, -73.963278, 40.768247, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'PS8b0Y5ofeXL1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 55, tzinfo=datetime.timezone.utc), 2, 0.88, -73.993705, 40.721997, -73.98676, 40.732937, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Xt1ICUy+g2dOsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 42, tzinfo=datetime.timezone.utc), 2, 1.1, -73.989643, 40.73839, -74.005367, 40.73991, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '0nERG1X03rkqSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 26, tzinfo=datetime.timezone.utc), 2, 1.15, -73.990537, 40.751015, -73.988878, 40.738883, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'o4Sq0Gzgp6KDRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 19, tzinfo=datetime.timezone.utc), 5, 1.02, -73.985968, 40.74719, -73.988958, 40.75447, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'mDSzpEpsg16/8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.07, -73.951983, 40.766283, -73.96482, 40.759847, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '5LOg+Zocd2Zp2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 47, tzinfo=datetime.timezone.utc), 5, 0.91, -73.988588, 40.736742, -73.9781, 40.730963, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'wr9A4ojF9vQADg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 48, tzinfo=datetime.timezone.utc), 2, 0.79, -73.997135, 40.742287, -73.988508, 40.748172, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'LXwxGKcPVvkg/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 22, tzinfo=datetime.timezone.utc), 1, 1.01, -73.952938, 40.778325, -73.959633, 40.765968, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'MeSlfop8uqwLew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 58, tzinfo=datetime.timezone.utc), 1, 1.47, -73.975088, 40.750142, -73.979332, 40.736382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'tpi78t89HLEqpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 57, tzinfo=datetime.timezone.utc), 1, 1.0, -73.980473, 40.77483, -73.975928, 40.786205, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'DGsfgrfGju6zLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 51, tzinfo=datetime.timezone.utc), 1, 1.01, -73.99874, 40.734602, -73.988282, 40.737543, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'oE9rV+Cy8EFG+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 49, tzinfo=datetime.timezone.utc), 1, 1.01, -73.978627, 40.764843, -73.96722, 40.757637, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'nNnDM3Goo+tPNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 2, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 2, 23, tzinfo=datetime.timezone.utc), 2, 1.25, -74.000692, 40.727283, -73.983623, 40.729767, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '5vbmcYuc1mGMPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 41, tzinfo=datetime.timezone.utc), 5, 0.98, -73.983427, 40.755957, -73.97022, 40.757415, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'ZTI4C/pxGwx5vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 33, tzinfo=datetime.timezone.utc), 5, 1.23, -73.990032, 40.756487, -74.00277, 40.747025, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '4eE98Sm7xelzXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.1, -73.986907, 40.751688, -73.973805, 40.743603, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Op7IdFBuGoo/oQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 37, tzinfo=datetime.timezone.utc), 1, 1.21, -73.990838, 40.750342, -73.97843, 40.755177, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'Up9au//yZDi/bA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 45, tzinfo=datetime.timezone.utc), 2, 1.0, -74.009203, 40.738612, -73.995073, 40.74307, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'wugUavCeME/ZJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 52, tzinfo=datetime.timezone.utc), 2, 0.98, -73.979202, 40.785135, -73.989025, 40.774257, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'VhWYq5nsl5xqSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.1, -73.96475, 40.755747, -73.978432, 40.75704, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'zf9PpoQvEkgfGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 24, tzinfo=datetime.timezone.utc), 1, 1.02, -73.988887, 40.73406, -73.985537, 40.741548, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', '8LGr/oTwxxabmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 44, tzinfo=datetime.timezone.utc), 1, 1.09, -73.976967, 40.749645, -73.98073, 40.74139, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'z1Bq6g8sEg14dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 56, tzinfo=datetime.timezone.utc), 3, 0.99, -73.99031, 40.761745, -73.985652, 40.752475, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'G1t7y8psDnKhbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 38, tzinfo=datetime.timezone.utc), 1, 0.71, -74.007072, 40.747873, -74.003863, 40.742918, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 's/V/GXMuOz8S2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 34, tzinfo=datetime.timezone.utc), 1, 1.0, -73.987242, 40.761077, -73.987242, 40.761077, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'aAAaNKkkkS3QoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 42, tzinfo=datetime.timezone.utc), 1, 1.44, -73.966805, 40.769977, -73.953233, 40.786493, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685115.6930006', 'vomjyoFxW2YxMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.26, -73.976692, 40.750223, -73.96268, 40.758003, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'PvZtydZvWwGPug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 31, tzinfo=datetime.timezone.utc), 1, 0.64, -73.978312, 40.754955, -73.978312, 40.754955, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '2gxKvrOvHMY7Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.08, -73.978335, 40.75391, -73.990765, 40.750812, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'mXD81SM1SvkyiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 19, tzinfo=datetime.timezone.utc), 1, 0.77, -73.982222, 40.771353, -73.98388, 40.761388, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ph8qBh37lXs20Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.84, -73.969127, 40.749202, -73.970138, 40.758882, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '+ZTpVcdzmQ1CjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 12, tzinfo=datetime.timezone.utc), 1, 0.84, -73.94647, 40.7726, -73.955333, 40.779408, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'y5A3zRHPnSV7jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 58, tzinfo=datetime.timezone.utc), 1, 1.12, -73.974112, 40.762978, -73.98427, 40.748458, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'fEQXRuji+fMlnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 35, tzinfo=datetime.timezone.utc), 5, 0.35, -73.979965, 40.762825, -73.982378, 40.765087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'HJEMi5p1Ebtp7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 9, tzinfo=datetime.timezone.utc), 3, 0.74, -73.972398, 40.737565, -73.974382, 40.734692, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'I50WD9JTm3QdLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 24, tzinfo=datetime.timezone.utc), 1, 0.75, -73.964767, 40.804167, -73.961737, 40.812885, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'mf4GzOWSuz5zyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 28, tzinfo=datetime.timezone.utc), 5, 1.29, -73.986675, 40.766727, -73.97916, 40.781863, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'u7hUYmIT0j2PpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.95, -73.975943, 40.753665, -73.986873, 40.745303, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'UYX2xo7R8cp6ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 19, tzinfo=datetime.timezone.utc), 1, 1.26, -73.993638, 40.741768, -73.987953, 40.755153, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ke3hgN6+LtrTIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 9, tzinfo=datetime.timezone.utc), 1, 0.81, -73.961667, 40.795948, -73.972498, 40.793952, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'lNdGkhkIio1n3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 31, tzinfo=datetime.timezone.utc), 1, 0.85, -73.988293, 40.748957, -73.97788, 40.752095, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'znhIH4LTjnRIHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 10, tzinfo=datetime.timezone.utc), 1, 0.72, -73.984732, 40.753603, -73.981203, 40.750553, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '4nx37gmmunJ4kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 40, tzinfo=datetime.timezone.utc), 1, 1.01, -73.976633, 40.788148, -73.96944, 40.800362, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'YrP1Ecsew0KSpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.24, -73.975262, 40.760923, -73.962267, 40.772213, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'WD5wWFm6ePNadA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.94, -73.967963, 40.768412, -73.956942, 40.772965, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'FW3sT3XyWujVNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.02, -73.958385, 40.778673, -73.960017, 40.767722, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '3TS4nY1x1dTCFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 32, tzinfo=datetime.timezone.utc), 4, 0.83, -73.987515, 40.75302, -73.9921, 40.744802, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'XUVyhyBiwdkgiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 46, tzinfo=datetime.timezone.utc), 1, 0.91, -73.978463, 40.757095, -73.981457, 40.746948, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'v7zKSm/Fz0ipVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 28, tzinfo=datetime.timezone.utc), 1, 1.35, -73.9688, 40.759825, -73.957287, 40.775965, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'DRfPPjBIfFcAWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 19, tzinfo=datetime.timezone.utc), 4, 0.82, -73.977808, 40.758533, -73.96878, 40.759902, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'WosXgSIBL9f8rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 51, tzinfo=datetime.timezone.utc), 1, 0.74, -73.990818, 40.75797, -73.991788, 40.749772, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'DmkuxdQdglfHQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 31, tzinfo=datetime.timezone.utc), 2, 1.32, -73.971722, 40.782108, -73.969557, 40.793765, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'QgJ8m+mPFRp7AA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 55, tzinfo=datetime.timezone.utc), 1, 0.37, -73.969055, 40.754403, -73.970602, 40.75594, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'qkjlmeBkdGQo5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 47, tzinfo=datetime.timezone.utc), 5, 1.12, -73.981432, 40.758628, -73.988137, 40.764143, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'hpjXg+OhKOm/hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 23, tzinfo=datetime.timezone.utc), 1, 0.89, -73.947385, 40.779392, -73.95238, 40.768743, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'bBHaNuVf0ifjZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 4, tzinfo=datetime.timezone.utc), 6, 0.75, -73.975653, 40.78901, -73.966942, 40.789025, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'j2vpPpWpUbS94g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 32, tzinfo=datetime.timezone.utc), 5, 0.9, -73.994157, 40.746018, -73.979485, 40.739722, 'Credit', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'tDJbj05JkQSGNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 47, tzinfo=datetime.timezone.utc), 1, 0.99, -73.992923, 40.693508, -73.996338, 40.681005, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'v/Cic2MxSechZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 5, tzinfo=datetime.timezone.utc), 1, 0.15, -73.989048, 40.755598, -73.98992, 40.757288, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'rS6gP3QR605eyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 31, tzinfo=datetime.timezone.utc), 3, 0.86, -73.988728, 40.722078, -73.990977, 40.730087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'Ctc8fi6YjliYgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 10, tzinfo=datetime.timezone.utc), 5, 0.87, -73.985603, 40.778447, -73.980353, 40.770222, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'h6lZjXijvxU6xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 59, tzinfo=datetime.timezone.utc), 1, 1.04, -73.969695, 40.762515, -73.979453, 40.753457, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '64Pp6wpOvAPKhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 45, tzinfo=datetime.timezone.utc), 2, 0.81, -73.991895, 40.764535, -74.000713, 40.761968, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'wh4Pqsvd1dUUCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 4, tzinfo=datetime.timezone.utc), 1, 1.23, -73.98555, 40.744102, -73.974553, 40.759138, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'Xu1e/VojIyDYzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 1, tzinfo=datetime.timezone.utc), 2, 1.22, -73.991818, 40.749392, -73.9829, 40.757108, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '7dgl/LCGHVEN/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 54, tzinfo=datetime.timezone.utc), 5, 0.77, -73.958605, 40.772913, -73.967347, 40.767858, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ZmE1x7VqyZSwFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 56, tzinfo=datetime.timezone.utc), 1, 1.08, -73.975785, 40.788993, -73.967465, 40.802973, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'YiYEjIyB7HfDfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 28, tzinfo=datetime.timezone.utc), 2, 0.87, -74.005905, 40.740117, -73.994697, 40.74291, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '/EFyg2Fd8k9hxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 29, tzinfo=datetime.timezone.utc), 6, 0.71, -73.981867, 40.783573, -73.98155, 40.775068, 'Credit', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'sWjLxGrcoXomXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 43, tzinfo=datetime.timezone.utc), 1, 0.75, -73.967905, 40.762557, -73.962262, 40.756422, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'WsJcJlTQ2TGkEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 15, tzinfo=datetime.timezone.utc), 1, 0.95, -73.965965, 40.762118, -73.95479, 40.767297, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'zmvVo/ctu1xR/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 33, tzinfo=datetime.timezone.utc), 1, 1.24, -73.976283, 40.744263, -73.98764, 40.728742, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'bat2HpKSlgOx6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 44, tzinfo=datetime.timezone.utc), 1, 1.07, -74.000312, 40.747723, -74.008898, 40.735405, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'STDHIIfbwe0/DQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 6, tzinfo=datetime.timezone.utc), 1, 0.6, -73.969035, 40.769738, -73.962798, 40.766602, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'qT0odatxnmDslg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 39, tzinfo=datetime.timezone.utc), 1, 0.88, -73.985768, 40.74008, -73.975722, 40.733318, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'b+GgRDrFtwxrPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 52, tzinfo=datetime.timezone.utc), 1, 1.15, -73.963845, 40.771317, -73.973353, 40.75692, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ZP8Os9i+jZJ/bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 15, tzinfo=datetime.timezone.utc), 1, 1.13, -73.988577, 40.769238, -73.972588, 40.766738, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'Dbqrib9/xuch7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 5, tzinfo=datetime.timezone.utc), 2, 0.93, -73.945097, 40.77512, -73.958807, 40.77811, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'kFEQ4DdKe0dbzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 53, tzinfo=datetime.timezone.utc), 5, 1.15, -73.982273, 40.774517, -73.991413, 40.759957, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'Cm7glfTyPmioSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 23, tzinfo=datetime.timezone.utc), 1, 0.8, -73.987517, 40.72882, -73.97606, 40.72783, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'r4NEZlDALUPPhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 7, tzinfo=datetime.timezone.utc), 1, 0.67, -73.978592, 40.744927, -73.988408, 40.750117, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ldxlQq+trMEEPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.09, -73.962488, 40.772822, -73.95252, 40.786263, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '3dPeCVaxvDR8lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 31, tzinfo=datetime.timezone.utc), 2, 1.03, -73.973055, 40.791747, -73.964708, 40.80641, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '9fA75uRdobWYZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.44, -73.968968, 40.760528, -73.962297, 40.77604, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'scCOeWShersIIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 34, tzinfo=datetime.timezone.utc), 2, 0.7, -73.984407, 40.764732, -73.979983, 40.772943, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'tJja5xBZKAK9/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 34, tzinfo=datetime.timezone.utc), 5, 1.24, -73.954772, 40.789233, -73.962987, 40.774087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '1GQ+gXKvbbR4hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 41, tzinfo=datetime.timezone.utc), 5, 1.22, -73.97929, 40.743967, -73.98666, 40.730012, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'NlAYCdPrm2tIjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 57, tzinfo=datetime.timezone.utc), 1, 1.01, -73.990527, 40.75595, -73.981568, 40.767998, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '0jl7IpSBhn8Gwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 41, tzinfo=datetime.timezone.utc), 1, 1.07, -73.968383, 40.754948, -73.983348, 40.756988, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'FoF+vpNGSkJlTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 13, tzinfo=datetime.timezone.utc), 1, 1.21, -73.988517, 40.75691, -73.98227, 40.77131, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'LBaESCEkyD7UzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 27, tzinfo=datetime.timezone.utc), 5, 1.32, -73.963023, 40.76632, -73.951075, 40.782742, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'vposPB88VqItGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 42, tzinfo=datetime.timezone.utc), 1, 1.03, -73.967752, 40.76307, -73.98258, 40.76307, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'xPOVU8wu3exS2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 24, tzinfo=datetime.timezone.utc), 4, 0.86, -73.956558, 40.771355, -73.960645, 40.761545, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '6GBwA7yOnR+kMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 49, tzinfo=datetime.timezone.utc), 1, 0.94, -73.972257, 40.75931, -73.976182, 40.749943, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'cJS6fh142FFIOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 16, tzinfo=datetime.timezone.utc), 5, 1.36, -73.965218, 40.759553, -73.977587, 40.742535, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'ADRvjyx8Qpejgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.15, -73.997888, 40.724042, -74.009498, 40.710477, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'GM8AKHujlMTHAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 55, tzinfo=datetime.timezone.utc), 4, 0.95, -73.978507, 40.755277, -73.967503, 40.761248, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'rZ15uAjDyfl6zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 36, tzinfo=datetime.timezone.utc), 1, 1.09, -73.982012, 40.757135, -73.969548, 40.763293, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '59QPeofCmiI0rQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 44, tzinfo=datetime.timezone.utc), 5, 1.12, -73.988448, 40.737543, -73.977562, 40.75133, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'e3HeabG9B+B8qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 59, tzinfo=datetime.timezone.utc), 1, 1.07, -74.005777, 40.74546, -73.993265, 40.75212, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'wSWDFSgcpHLYKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 30, tzinfo=datetime.timezone.utc), 1, 1.18, -73.960245, 40.779348, -73.97367, 40.788733, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'RIhLaNpdIQHQ8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 55, tzinfo=datetime.timezone.utc), 1, 0.77, -73.957527, 40.76579, -73.961217, 40.766712, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'yeRhhoR8971ybA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 52, tzinfo=datetime.timezone.utc), 5, 1.13, -73.975817, 40.756292, -73.965905, 40.760323, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'HedUgroTOAZ67Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 52, tzinfo=datetime.timezone.utc), 1, 0.81, -73.969755, 40.762988, -73.977647, 40.753497, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '0YSWOnS1Sjey0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 14, tzinfo=datetime.timezone.utc), 1, 0.8, -73.999832, 40.717982, -74.008397, 40.721375, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'XxP852gHly24zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 3, tzinfo=datetime.timezone.utc), 1, 1.37, -73.980955, 40.766902, -73.964362, 40.773108, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'BSnAfJFYrdPzRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 19, tzinfo=datetime.timezone.utc), 1, 0.93, -74.005652, 40.745627, -73.990385, 40.739655, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '/U6yRYijdQCmBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), 1, 0.79, -73.980612, 40.748218, -73.987685, 40.738383, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'D0Pv16akGPanbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 41, tzinfo=datetime.timezone.utc), 1, 0.88, -73.954582, 40.789095, -73.952523, 40.77993, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'jIaDKQrVIKO41g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.24, -74.000948, 40.746988, -73.99838, 40.733113, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'iIhRcc2JK9xpeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 26, tzinfo=datetime.timezone.utc), 1, 0.85, -73.994955, 40.739998, -73.987192, 40.750783, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'rxdj14I2GWOpyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 58, tzinfo=datetime.timezone.utc), 2, 0.99, -73.982202, 40.763407, -73.991352, 40.750473, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', 'mzP8iza4vUd+Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.15, -74.000042, 40.758608, -73.986052, 40.762037, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '2KOA/qKGHouHpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 31, tzinfo=datetime.timezone.utc), 2, 0.96, -73.987977, 40.76987, -73.977317, 40.774483, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685115.6930006', '8gGRHq/X2c2W3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 21, tzinfo=datetime.timezone.utc), 1, 1.64, -73.962672, 40.767087, -73.95273, 40.786672, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Oqcn5vwSCGia3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 31, tzinfo=datetime.timezone.utc), 5, 0.97, -73.96181, 40.76421, -73.971518, 40.753755, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'dYFiiyz1D6gOEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 15, tzinfo=datetime.timezone.utc), 5, 1.72, -73.984127, 40.754402, -73.974378, 40.743223, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'zu0LJH3eTmJs+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 35, tzinfo=datetime.timezone.utc), 1, 2.26, -73.950855, 40.772513, -73.971452, 40.753618, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 's1jN2LCXH2kHfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 5, tzinfo=datetime.timezone.utc), 1, 1.96, -74.016415, 40.709867, -74.003307, 40.73144, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '2X4KfJxBSJ/hhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 0, tzinfo=datetime.timezone.utc), 1, 1.97, -73.958163, 40.77468, -73.982065, 40.771455, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'QQxdTZACmpW62A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 11, tzinfo=datetime.timezone.utc), 5, 1.96, -73.978138, 40.770645, -73.979077, 40.753313, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '0ys6Mk+lCLnMCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 48, tzinfo=datetime.timezone.utc), 2, 1.4, -73.949567, 40.784927, -73.968315, 40.787378, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'rmuhT2njFxWzuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 21, tzinfo=datetime.timezone.utc), 5, 0.96, -73.986147, 40.761825, -73.987838, 40.756713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '1IH0pPrv4WOlQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 24, tzinfo=datetime.timezone.utc), 3, 1.96, -73.947407, 40.78378, -73.96158, 40.760375, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'oNxf+Xhi0riczw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 29, tzinfo=datetime.timezone.utc), 2, 2.11, -74.004792, 40.707203, -73.986678, 40.704423, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Ni91l1BhZqxB3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 1.44, -73.993948, 40.749732, -73.99021, 40.761888, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'PknGySqoqWdGsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 7, 6, tzinfo=datetime.timezone.utc), 1, 2.33, -73.967878, 40.768602, -73.990263, 40.744048, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'UN4oFagbvO5pzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.93, -74.00379, 40.713795, -73.989932, 40.690377, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '5cWkVXI5ftKDSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 22, 1, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.9, -73.984857, 40.72321, -73.996013, 40.74268, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '7Y7XbfC7kz+PWg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 51, tzinfo=datetime.timezone.utc), 1, 1.34, -73.981187, 40.75018, -73.989058, 40.73488, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'N7LW1HFOXEBf4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), 1, 0.79, -74.002725, 40.76061, -73.990502, 40.756167, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'aVfb5vde86Rwcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 40, tzinfo=datetime.timezone.utc), 1, 2.02, -73.975643, 40.749208, -73.954717, 40.76553, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '03rUqwwIpuAXHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 19, tzinfo=datetime.timezone.utc), 2, 1.82, -73.991725, 40.74902, -73.991748, 40.729888, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'SMBaKxohWHaPYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 45, tzinfo=datetime.timezone.utc), 1, 1.7, -73.979945, 40.745653, -73.99335, 40.73097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Xx5HbQaSNOhwUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 37, tzinfo=datetime.timezone.utc), 1, 2.37, -73.924905, 40.644832, -73.996258, 40.743348, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ycYdT/5vRIBwdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 12, tzinfo=datetime.timezone.utc), 1, 0.95, -73.991548, 40.759433, -73.977507, 40.752543, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'kTYAYovMh/gpyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 56, tzinfo=datetime.timezone.utc), 1, 1.92, -73.980305, 40.764977, -73.954098, 40.767087, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'eeWcQHUAXXKPgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 3, tzinfo=datetime.timezone.utc), 1, 1.67, -73.983732, 40.721635, -74.002535, 40.73364, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'CQn6tOSdzW6AQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 51, tzinfo=datetime.timezone.utc), 2, 1.35, -73.985702, 40.757412, -73.974697, 40.763782, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'sNe8f9+3bZ83Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 45, tzinfo=datetime.timezone.utc), 1, 1.7, -73.95794, 40.778747, -73.97784, 40.773812, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'qO3V0+ihSQ8lVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 49, tzinfo=datetime.timezone.utc), 1, 1.32, -73.994772, 40.75013, -73.981742, 40.763168, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '1H7b+zLWWzfVaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 56, tzinfo=datetime.timezone.utc), 1, 1.95, -73.966262, 40.75865, -73.974915, 40.741733, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'h1KzgcJb95fAxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 32, tzinfo=datetime.timezone.utc), 2, 1.65, -73.99023, 40.761405, -73.970478, 40.762038, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'g0ZTYJcb/T9vhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 18, tzinfo=datetime.timezone.utc), 5, 1.07, -73.974858, 40.74212, -73.982602, 40.751622, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'gqW+ampmQkaW+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 58, tzinfo=datetime.timezone.utc), 1, 1.48, -73.988133, 40.75056, -73.981443, 40.763188, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '6iwqLGE3eOA7pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 1, tzinfo=datetime.timezone.utc), 4, 1.42, -73.977895, 40.736768, -73.981878, 40.724572, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'VElNSp4a1FYonw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 43, tzinfo=datetime.timezone.utc), 1, 1.86, -73.973458, 40.760498, -73.987915, 40.745098, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'owqBzwaS/osTAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 21, tzinfo=datetime.timezone.utc), 1, 1.9, -73.969775, 40.799558, -73.953157, 40.78363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'UpISwsJx//tzfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 8, tzinfo=datetime.timezone.utc), 1, 1.24, -73.990977, 40.75021, -73.994302, 40.736245, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '6oBOQn+QRSsijA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 57, tzinfo=datetime.timezone.utc), 3, 1.79, -73.98563, 40.763122, -73.980208, 40.785547, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'gODD5zwwLut8RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 15, tzinfo=datetime.timezone.utc), 1, 1.6, -73.976397, 40.78057, -73.954705, 40.774062, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '3OskdZDTYD4N3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 54, tzinfo=datetime.timezone.utc), 1, 1.58, -73.96132, 40.768638, -73.948437, 40.78074, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '3HNAoeAnvEv0IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 50, tzinfo=datetime.timezone.utc), 1, 1.63, -73.999432, 40.71863, -74.000153, 40.73701, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'EHmv7lR5S7MXJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 22, tzinfo=datetime.timezone.utc), 1, 1.72, -73.981135, 40.774275, -73.965277, 40.758288, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'AGsWH9g1i8ioCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 30, tzinfo=datetime.timezone.utc), 1, 2.24, -73.975128, 40.757783, -73.953032, 40.780595, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '3U4u623qcrfyFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 28, tzinfo=datetime.timezone.utc), 1, 2.0, -73.95425, 40.773097, -73.976717, 40.759573, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'YWBOJj6D/PaQMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 18, tzinfo=datetime.timezone.utc), 1, 1.18, -73.979228, 40.76338, -73.991547, 40.750018, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'koJGqeZYD+zh0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 51, tzinfo=datetime.timezone.utc), 1, 1.26, -73.985092, 40.769432, -73.974787, 40.757837, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'lslsEOrEYYSFnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 9, tzinfo=datetime.timezone.utc), 1, 2.01, -73.97169, 40.757313, -73.956282, 40.782303, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 't7F6t9skRYSrlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.24, -73.953218, 40.782983, -73.960715, 40.768458, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'asuSC24Ja3uehQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 58, tzinfo=datetime.timezone.utc), 2, 0.98, -73.951567, 40.769398, -73.958865, 40.778355, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Lk+ZE1nFFi6U1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 5, tzinfo=datetime.timezone.utc), 2, 1.56, -73.999687, 40.733367, -73.984213, 40.750003, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Muc3mpg9Zu4/xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 12, tzinfo=datetime.timezone.utc), 6, 1.67, -73.98737, 40.76602, -74.002073, 40.745308, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'uTEX/d7at2XrzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 22, tzinfo=datetime.timezone.utc), 1, 1.48, -73.975052, 40.777493, -73.96061, 40.774022, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'eQYX/pQ9Dhgk3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 6, tzinfo=datetime.timezone.utc), 1, 1.56, -73.974263, 40.763077, -73.985627, 40.744313, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'CgpGEDZvwb77YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 38, tzinfo=datetime.timezone.utc), 1, 1.31, -73.97664, 40.765078, -73.960683, 40.771475, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'hDUQ1UZOYofGpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 57, tzinfo=datetime.timezone.utc), 2, 1.99, -74.003838, 40.748197, -74.007575, 40.726023, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'YHHmSxulwWZo7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 47, tzinfo=datetime.timezone.utc), 3, 0.87, -74.000448, 40.76177, -73.987135, 40.757702, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'zhsR1vDJzQO0Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 32, tzinfo=datetime.timezone.utc), 5, 1.9, -73.946268, 40.772853, -73.968977, 40.761395, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'wsPtvpFjxLOh8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 39, tzinfo=datetime.timezone.utc), 2, 0.93, -73.970392, 40.779657, -73.963278, 40.771365, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '494Acede/Ahgow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 59, tzinfo=datetime.timezone.utc), 1, 1.49, -73.992697, 40.743007, -74.007738, 40.751752, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '87+Dc62JbPn7Rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.55, -73.954523, 40.773907, -73.953915, 40.77366, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ayJ5WrBb/RnqRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 14, tzinfo=datetime.timezone.utc), 1, 1.49, -73.982017, 40.757923, -73.98008, 40.74551, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'xESMKMhNlPn4wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 30, tzinfo=datetime.timezone.utc), 1, 1.53, -73.96382, 40.757923, -73.979027, 40.752912, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '+nVxMRhEK1qDsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.88, -73.976143, 40.788928, -73.984867, 40.765025, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'kkmmwcjDm8QZog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 55, tzinfo=datetime.timezone.utc), 1, 1.78, -74.00229, 40.724627, -73.989553, 40.743877, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'bWvXDZH5q8PpVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 8, tzinfo=datetime.timezone.utc), 1, 1.27, -73.971965, 40.757325, -73.985732, 40.746972, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ssl6J4UVmMcaHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 45, tzinfo=datetime.timezone.utc), 1, 1.19, -73.970503, 40.759662, -73.95566, 40.764077, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'e6a44ZEqYRojEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 29, tzinfo=datetime.timezone.utc), 2, 0.77, -73.955992, 40.753085, -73.981313, 40.754517, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'R5iZtrh5B3OcUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 7, tzinfo=datetime.timezone.utc), 1, 1.9, -73.954123, 40.774507, -73.972067, 40.755205, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Jd24GoaKAila4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 56, tzinfo=datetime.timezone.utc), 1, 2.06, -74.01511, 40.704338, -74.01208, 40.720563, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'CodDfzaztUe1PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 30, tzinfo=datetime.timezone.utc), 1, 2.06, -73.992347, 40.744203, -74.005763, 40.720028, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '8kPfwO2aw2/Row', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 25, tzinfo=datetime.timezone.utc), 2, 2.08, -73.968563, 40.75502, -73.989687, 40.734478, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'PL9bIoKFMbFW5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 14, tzinfo=datetime.timezone.utc), 1, 1.48, -73.991548, 40.738187, -74.000652, 40.724697, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'yOGXlUpDSdI7NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 48, tzinfo=datetime.timezone.utc), 4, 1.37, -73.981087, 40.758545, -73.977452, 40.747175, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'FrzWONLQxqjzSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 1, tzinfo=datetime.timezone.utc), 1, 1.23, -74.002285, 40.724437, -73.986982, 40.731008, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'pX/bMYXR031Sag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 4, tzinfo=datetime.timezone.utc), 3, 2.23, -73.952672, 40.789092, -73.947953, 40.813772, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '77dDIrUdcDISCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 23, tzinfo=datetime.timezone.utc), 1, 0.98, -73.978248, 40.756393, -73.993547, 40.758603, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Y2P5603rPV9ZaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 37, tzinfo=datetime.timezone.utc), 2, 1.28, -74.000055, 40.73474, -73.99223, 40.749302, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Po6V2hSP4cE42w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 19, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 26, 1, tzinfo=datetime.timezone.utc), 1, 1.8, -73.988338, 40.758936, -73.965019, 40.763268, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'bLEIZx2UO0hzFw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 46, tzinfo=datetime.timezone.utc), 1, 1.93, -73.978537, 40.737033, -73.970687, 40.757818, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Abiq/lvwpPvyNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 17, tzinfo=datetime.timezone.utc), 1, 1.41, -73.937957, 40.796852, -73.958587, 40.800188, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'mSQC/i7pJGbwmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 51, tzinfo=datetime.timezone.utc), 1, 2.14, -73.977675, 40.77735, -73.980575, 40.753607, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'cV8ej7fSqzIn4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 41, tzinfo=datetime.timezone.utc), 1, 1.81, -73.982452, 40.761805, -73.977302, 40.784403, 'Credit', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'xNUylQHdxGLAhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 22, tzinfo=datetime.timezone.utc), 1, 0.83, -73.969777, 40.757405, -73.979982, 40.760115, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'mAe6dd5b7aM47g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 0, tzinfo=datetime.timezone.utc), 1, 1.74, -73.991797, 40.749933, -74.006522, 40.728733, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'VpK7BhcSl58EzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 18, tzinfo=datetime.timezone.utc), 1, 1.85, -73.953312, 40.782182, -73.97189, 40.762292, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'L67eedkDUYJeJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 38, tzinfo=datetime.timezone.utc), 2, 1.84, -73.98349, 40.768087, -73.9706, 40.788432, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'sBywKfaau5Eh/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 27, tzinfo=datetime.timezone.utc), 2, 1.06, -73.977733, 40.755143, -73.990993, 40.751015, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Av8Imj+eGY1AJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 39, tzinfo=datetime.timezone.utc), 5, 1.99, -73.948677, 40.782373, -73.966858, 40.757328, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'pwpj8EVQrZUR5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.74, -73.98801, 40.779527, -73.966648, 40.788942, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ZR/DOBgYyZSfgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 3, tzinfo=datetime.timezone.utc), 1, 0.12, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '28qjfjAPcJzgMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 23, tzinfo=datetime.timezone.utc), 1, 2.05, -73.954038, 40.774478, -73.975582, 40.755458, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '+EnYiRxic/Cq8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 34, tzinfo=datetime.timezone.utc), 1, 1.51, -73.98574, 40.72707, -73.995567, 40.740795, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'v/G8qGroCIrY0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 1, 30, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 39, 25, tzinfo=datetime.timezone.utc), 2, 1.8, -73.971954, 40.762859, -73.985433, 40.742904, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'fugJULiLX2OYKQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 44, tzinfo=datetime.timezone.utc), 3, 2.04, -73.986943, 40.729677, -73.993147, 40.749662, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Nk3qlf7GcOhn+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 6, tzinfo=datetime.timezone.utc), 1, 1.92, -73.98029, 40.785598, -73.96847, 40.769713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'z4zV65yWRzmO3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 23, tzinfo=datetime.timezone.utc), 2, 1.97, -73.964775, 40.764577, -73.953822, 40.787665, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'aOZTD2eFYrHZqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 20, tzinfo=datetime.timezone.utc), 1, 1.72, -74.001038, 40.741875, -73.981572, 40.755645, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'LDoxmt+6S7cTgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 24, tzinfo=datetime.timezone.utc), 3, 1.38, -73.991522, 40.716787, -74.004603, 40.728513, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'baHonvm5fP+FWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 40, tzinfo=datetime.timezone.utc), 1, 1.65, -73.982082, 40.77056, -73.97198, 40.783762, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'EvyEcfARgQm31Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 49, tzinfo=datetime.timezone.utc), 5, 2.03, -73.962635, 40.7993, -73.945322, 40.817633, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'kOqXeqEN/cX4Ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 8, tzinfo=datetime.timezone.utc), 5, 1.79, -74.002792, 40.726892, -73.9859, 40.736363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'KnEFiorGi/ib1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 32, tzinfo=datetime.timezone.utc), 2, 1.99, -73.98868, 40.748515, -73.96387, 40.754645, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'j5TAgkw0guBslg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 7, tzinfo=datetime.timezone.utc), 1, 2.03, -73.945898, 40.781713, -73.938702, 40.805278, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'M3Lr7voj670TiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 48, tzinfo=datetime.timezone.utc), 1, 1.57, -74.001248, 40.729258, -73.979042, 40.72389, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '5/Z8dGCC0P5UMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 41, tzinfo=datetime.timezone.utc), 1, 1.14, -73.981508, 40.771475, -73.971625, 40.763703, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'KW6F2DkLDTX2qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 7, tzinfo=datetime.timezone.utc), 2, 1.35, -73.977765, 40.756155, -73.956242, 40.76488, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'pTTSxm5Z6V78TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 51, tzinfo=datetime.timezone.utc), 1, 1.63, -73.979967, 40.776173, -73.97678, 40.759545, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'WsHZ1kZlp9DC4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 6, tzinfo=datetime.timezone.utc), 5, 1.73, -73.979205, 40.785585, -73.96532, 40.807792, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'wHroyrbNEYtCkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 15, tzinfo=datetime.timezone.utc), 1, 1.48, -73.99128, 40.750272, -73.972867, 40.746525, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'VuvwGsYkKNc3Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 55, tzinfo=datetime.timezone.utc), 1, 1.92, -74.001323, 40.72283, -73.996792, 40.744637, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'y/LC9INC2NGaww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 59, tzinfo=datetime.timezone.utc), 1, 1.12, -73.993613, 40.75212, -73.976508, 40.750278, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'xWiAkxIYsCcR/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 39, tzinfo=datetime.timezone.utc), 1, 1.55, -73.99085, 40.73282, -73.978487, 40.75148, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'HoncHYktTpN6PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 47, tzinfo=datetime.timezone.utc), 1, 1.69, -74.004768, 40.653835, -73.986078, 40.67336, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '/KEhjo+xiJtfOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 24, tzinfo=datetime.timezone.utc), 2, 1.65, -73.991518, 40.750245, -73.975102, 40.759287, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'F5AfcvbsIpigSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 41, tzinfo=datetime.timezone.utc), 2, 1.02, -73.992208, 40.764342, -73.996643, 40.752717, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Cq4aXyKGI550cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 31, tzinfo=datetime.timezone.utc), 1, 1.38, -73.949878, 40.785615, -73.97108, 40.795447, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'rWQrka4rxnkZfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 11, tzinfo=datetime.timezone.utc), 1, 1.03, -73.97467, 40.750682, -74.043583, 40.736368, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '4rJpex/HOGAmPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 40, tzinfo=datetime.timezone.utc), 3, 1.26, -73.989583, 40.752403, -74.002875, 40.760393, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'JaX64SJi3qnvwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 7, tzinfo=datetime.timezone.utc), 1, 1.84, -73.968832, 40.7612, -73.986308, 40.741658, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '3htUetrxp/k3jA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 57, tzinfo=datetime.timezone.utc), 5, 1.28, -73.966615, 40.804305, -73.948552, 40.795117, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'TnmEo89aO7Jw/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 37, tzinfo=datetime.timezone.utc), 5, 1.3, -73.998982, 40.754468, -73.979647, 40.749983, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'w1iYiFxG3dtmhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 9, tzinfo=datetime.timezone.utc), 5, 1.55, -73.987585, 40.731768, -73.987238, 40.714492, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'sgA/hQEHcd00DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 39, tzinfo=datetime.timezone.utc), 1, 1.74, -73.970877, 40.796092, -73.98242, 40.772785, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'fVFDfe0yJT35Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 46, tzinfo=datetime.timezone.utc), 1, 2.22, -73.996685, 40.737508, -73.975443, 40.762713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'lojP192fZebXDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 7, tzinfo=datetime.timezone.utc), 4, 1.53, -74.016363, 40.704675, -73.997072, 40.714373, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'rINw9pHajfB46w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 39, tzinfo=datetime.timezone.utc), 1, 1.51, -73.996183, 40.732952, -73.976643, 40.722423, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'eEV4Y6vj72gvFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 42, tzinfo=datetime.timezone.utc), 1, 1.57, -73.952053, 40.77317, -73.970683, 40.767372, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'T0/D85BpF+C5zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.23, -73.961332, 40.769325, -73.974758, 40.76097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'nJy/izL1Sftp+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 49, tzinfo=datetime.timezone.utc), 5, 1.79, -73.986597, 40.73997, -73.971315, 40.761785, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'HyDJ0XKp0e7wRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 3, tzinfo=datetime.timezone.utc), 1, 1.24, -74.024592, 40.71077, -74.016985, 40.716148, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'dicegfrymAHWFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 35, tzinfo=datetime.timezone.utc), 1, 1.76, -73.972305, 40.762212, -73.99048, 40.751335, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'NXUNUvgv8NfDQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 36, tzinfo=datetime.timezone.utc), 1, 2.08, -73.949175, 40.772593, -73.972222, 40.757503, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'zvL0BF8hOq3iVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 0, tzinfo=datetime.timezone.utc), 1, 2.02, -73.95152, 40.7697, -73.9707, 40.758478, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'UTH5xPtxN2oBCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 39, tzinfo=datetime.timezone.utc), 1, 1.84, -73.988747, 40.778047, -73.977512, 40.76057, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '0RJl7gIP/Rx7zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 24, tzinfo=datetime.timezone.utc), 1, 1.21, -73.964453, 40.775822, -73.97546, 40.760552, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'cCGjDhqWla1pIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 41, tzinfo=datetime.timezone.utc), 1, 1.77, -73.982387, 40.76754, -73.966097, 40.789698, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'w8H3aGumgDwkRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 3, tzinfo=datetime.timezone.utc), 1, 2.03, -74.013367, 40.70775, -74.001787, 40.735097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ZguO1E5UV43ltg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 50, tzinfo=datetime.timezone.utc), 1, 1.13, -73.971585, 40.763548, -73.980143, 40.752418, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'wc6fweySSGkRZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 49, tzinfo=datetime.timezone.utc), 1, 1.4, -73.996047, 40.74423, -74.001935, 40.747612, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'HwfY6tc8pEjEzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 36, tzinfo=datetime.timezone.utc), 3, 1.47, -73.977008, 40.755275, -73.993028, 40.767913, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'S+Hj5T75EWSJMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 44, tzinfo=datetime.timezone.utc), 5, 1.93, -73.98635, 40.758132, -73.976205, 40.780632, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '8c+f6odxj0Btdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 20, tzinfo=datetime.timezone.utc), 1, 1.38, -73.979932, 40.75352, -73.977082, 40.748472, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'HuCneBGLq3BfAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 55, tzinfo=datetime.timezone.utc), 1, 1.81, -73.98829, 40.72329, -73.971717, 40.746052, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'pKd1L5HlJC5hyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 43, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99292, 40.742637, -73.980255, 40.745913, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'yAIEv/vhlvn5FA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 53, tzinfo=datetime.timezone.utc), 5, 1.1, -73.997067, 40.76201, -73.981703, 40.753067, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'RBOeOiE6Jg5brQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 47, tzinfo=datetime.timezone.utc), 1, 1.38, -73.951975, 40.766317, -73.964017, 40.755517, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '3Ym8c2FQpheIZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 19, tzinfo=datetime.timezone.utc), 1, 1.29, -73.994028, 40.751265, -73.981888, 40.763208, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Dh44xvkAFiSwRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 1, tzinfo=datetime.timezone.utc), 1, 1.82, -73.986938, 40.740458, -73.987987, 40.748852, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Kh43RNNpm0eMyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 24, tzinfo=datetime.timezone.utc), 2, 1.41, -73.97648, 40.751403, -73.972267, 40.764275, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'd/6KHBfuajex/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 41, tzinfo=datetime.timezone.utc), 1, 1.23, -73.972202, 40.756268, -73.988348, 40.760012, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'r/mdTVTa6c3lPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.1, -74.007052, 40.70767, -74.001967, 40.715687, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '96CCPzSXcujPWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 45, tzinfo=datetime.timezone.utc), 5, 1.45, -74.007865, 40.707193, -73.999273, 40.723253, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'mppvIoN77EXNfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 14, tzinfo=datetime.timezone.utc), 1, 1.31, -74.005723, 40.71758, -74.011755, 40.704363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'vGDZ0gBVwPAEFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 37, tzinfo=datetime.timezone.utc), 1, 1.27, -74.00628, 40.73358, -73.990952, 40.739433, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'c3iGsFEbZq7tIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.27, -73.99819, 40.719598, -73.986105, 40.73112, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'fSu4e2yG66PUcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 45, tzinfo=datetime.timezone.utc), 1, 1.27, -73.982097, 40.775412, -73.979185, 40.759743, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ZpXqlI9xiHBWzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 46, tzinfo=datetime.timezone.utc), 1, 1.54, -73.96447, 40.756395, -73.966465, 40.772253, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'ZOT3X8bL50sEiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 30, tzinfo=datetime.timezone.utc), 2, 1.35, -73.97785, 40.761567, -73.984657, 40.748628, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'B73PtFaCXl182g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 17, tzinfo=datetime.timezone.utc), 1, 1.53, -73.997848, 40.72418, -73.980265, 40.717135, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'Sv4Y7NoocLfqEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 8, tzinfo=datetime.timezone.utc), 1, 1.38, -73.959207, 40.777527, -73.965727, 40.761177, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'FRmkamude2Hszg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 52, tzinfo=datetime.timezone.utc), 1, 1.71, -73.964085, 40.767762, -73.981095, 40.74929, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'xc9df9AlXI0YBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 10, tzinfo=datetime.timezone.utc), 1, 1.5, -73.995862, 40.726018, -73.993013, 40.742508, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'l6euv92Cec9ZFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 33, tzinfo=datetime.timezone.utc), 3, 1.84, -73.986482, 40.756883, -73.992958, 40.73568, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'UH9Pser20Bjugg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 55, tzinfo=datetime.timezone.utc), 1, 1.33, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'AZpM09aQt9kBgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 56, tzinfo=datetime.timezone.utc), 2, 1.66, -73.91751, 40.743325, -73.918157, 40.75998, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'WJRU1w2l+wUIaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 58, tzinfo=datetime.timezone.utc), 1, 1.92, -74.00526, 40.719702, -74.008107, 40.74521, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'rExd+jCGt+kMmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 10, tzinfo=datetime.timezone.utc), 1, 1.5, -74.010538, 40.711525, -73.995533, 40.724837, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'RsUsw/86Jwtp9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 34, tzinfo=datetime.timezone.utc), 1, 1.64, -73.964352, 40.760432, -73.982392, 40.747978, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'VAX80vE1wR0edw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 48, tzinfo=datetime.timezone.utc), 1, 0.8, -73.982047, 40.761997, -73.973475, 40.756093, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'vzIOm80FICwpRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 35, tzinfo=datetime.timezone.utc), 1, 1.7, -73.97561, 40.719075, -73.997903, 40.712565, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', 'jwdDcYIAPnSLHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 8, 16, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 26, 39, tzinfo=datetime.timezone.utc), 1, 1.4, -73.991431, 40.750045, -73.978197, 40.754073, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685115.6930006', '4lLuJ7Ij0emSDg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 37, tzinfo=datetime.timezone.utc), 1, 1.81, -73.972953, 40.79524, -73.954977, 40.780232, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '2r6sGm9lf2ThsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 1, 2.15, -73.951682, 40.777795, -73.942595, 40.80236, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '4k/2Th+NmT74Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 54, tzinfo=datetime.timezone.utc), 2, 2.52, -73.994255, 40.761353, -73.970962, 40.793313, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Sb1zV+fqfToHgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 44, tzinfo=datetime.timezone.utc), 1, 1.4, -73.983637, 40.725947, -73.994157, 40.726547, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'GRjEIiY74MAg8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 24, tzinfo=datetime.timezone.utc), 6, 1.93, -73.992648, 40.737257, -73.98638, 40.751728, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'WhneIE/N8i5Frg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 45, tzinfo=datetime.timezone.utc), 1, 1.74, -73.982238, 40.768237, -73.976192, 40.788707, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '1KaRZkXo2FElMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 5, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 5, 11, tzinfo=datetime.timezone.utc), 1, 1.59, -74.006408, 40.733143, -73.98533, 40.731953, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'MwViL4PL9YV7gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 34, tzinfo=datetime.timezone.utc), 2, 1.87, -73.992063, 40.744658, -74.007113, 40.732998, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'kt51DCDrF4ub9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 2, 40, tzinfo=datetime.timezone.utc), 2, 1.99, -73.970343, 40.757027, -73.946773, 40.772183, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'SaIbRGKgW1D81w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 2, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 2, 48, tzinfo=datetime.timezone.utc), 1, 1.5, -74.006062, 40.743642, -74.000883, 40.730182, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'REm7Tev9ZDXa1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 1, tzinfo=datetime.timezone.utc), 2, 1.78, -73.974663, 40.787545, -73.950452, 40.784037, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'C0f66F3NQEhi2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 24, tzinfo=datetime.timezone.utc), 2, 1.92, -74.004207, 40.719743, -73.993082, 40.73899, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '8zO39OjnkexetQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 37, tzinfo=datetime.timezone.utc), 1, 0.68, -73.996598, 40.72356, -73.989867, 40.73258, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'PobXqQxzXyOc5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.58, -73.967287, 40.788073, -73.983473, 40.77109, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'yZWkNwyrX+Tdmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 3, 20, tzinfo=datetime.timezone.utc), 1, 2.17, -73.989022, 40.75597, -73.982495, 40.735398, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'BED96uGvx8sa2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 31, tzinfo=datetime.timezone.utc), 1, 1.79, -73.973278, 40.785525, -73.949407, 40.781225, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'c8WcDjnrpCBzlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 29, tzinfo=datetime.timezone.utc), 1, 2.24, -74.007552, 40.725712, -74.004947, 40.75209, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'TRH1uB/y/cGceQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 52, tzinfo=datetime.timezone.utc), 3, 1.36, -73.98442, 40.739813, -73.999088, 40.729155, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'bE1mgIYaChSCcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 32, tzinfo=datetime.timezone.utc), 5, 1.28, -73.88392, 40.755135, -73.881982, 40.752168, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'BhW4IpGr0peNcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 35, tzinfo=datetime.timezone.utc), 1, 1.49, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '9TGFnq0Zi+fr4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 4, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 4, 14, tzinfo=datetime.timezone.utc), 5, 1.86, -73.990365, 40.724923, -73.999598, 40.741127, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'AsXH9WKsfLCL1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 37, tzinfo=datetime.timezone.utc), 1, 1.38, -73.95903, 40.763623, -73.97802, 40.762952, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'jZRyVX652JpcJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 29, tzinfo=datetime.timezone.utc), 5, 1.79, -73.986857, 40.750963, -74.005557, 40.740098, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Tbsrf5617tVprA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.96, -73.989502, 40.758055, -73.984643, 40.780548, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 's0iSxY6v6cV4xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 11, tzinfo=datetime.timezone.utc), 1, 1.82, -74.005637, 40.725895, -73.983693, 40.73195, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'NAU4D8Jhw7XR2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 35, tzinfo=datetime.timezone.utc), 1, 2.03, -73.966838, 40.756673, -73.974148, 40.731252, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'hQWsmpRPcOvD1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 27, tzinfo=datetime.timezone.utc), 1, 1.72, -73.986125, 40.734555, -74.002325, 40.718795, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'mz9JX9I5OZ8iQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 28, tzinfo=datetime.timezone.utc), 1, 1.66, -73.984387, 40.732148, -74.000927, 40.746368, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'm7qbjYBXP4F4kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 19, tzinfo=datetime.timezone.utc), 3, 2.22, -73.97167, 40.754302, -73.950207, 40.779858, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'PJr5ngHgBv4bQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 3, tzinfo=datetime.timezone.utc), 1, 1.98, -73.961832, 40.79627, -73.960237, 40.818162, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '+MHSRtCwdBUzUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 3, tzinfo=datetime.timezone.utc), 5, 2.29, -73.977897, 40.745667, -73.955063, 40.768678, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '4RrRrcxPSzsSug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 32, tzinfo=datetime.timezone.utc), 1, 1.72, -73.987353, 40.757587, -73.982683, 40.779648, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '16dOSJ9nkFrrzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 12, tzinfo=datetime.timezone.utc), 5, 1.79, -73.966928, 40.788682, -73.94796, 40.77884, 'Credit', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'RUEcnlX9qJD3ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 1, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 1, 43, tzinfo=datetime.timezone.utc), 1, 2.24, -73.950877, 40.770802, -73.979373, 40.765412, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '3VsaMeYA3eifgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 1, 21, tzinfo=datetime.timezone.utc), 1, 2.32, -73.974993, 40.761537, -73.995812, 40.733287, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'FPsR4EnWkrJ+uQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 22, tzinfo=datetime.timezone.utc), 1, 2.48, -73.98362, 40.766932, -73.983968, 40.74051, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '+yAt5DFEurjSbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 18, tzinfo=datetime.timezone.utc), 1, 2.18, -73.965337, 40.790705, -73.95836, 40.768742, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'nFSVIoD9yQPOeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 48, tzinfo=datetime.timezone.utc), 5, 2.05, -73.98572, 40.719247, -73.979753, 40.7423, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'WDRM2V8KGsQWTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 3, tzinfo=datetime.timezone.utc), 5, 1.87, -73.984543, 40.74852, -74.00611, 40.739908, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'ZnCWX4nyC9T/iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 1, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 39, tzinfo=datetime.timezone.utc), 1, 1.65, -73.99713, 40.720643, -73.977125, 40.72619, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'eDekIbYiMIpE5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 52, tzinfo=datetime.timezone.utc), 1, 1.39, -73.999948, 40.744143, -73.98369, 40.738005, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '1clSYhVdN47+0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 40, tzinfo=datetime.timezone.utc), 1, 2.2, -74.004423, 40.742222, -73.986015, 40.758848, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'yoMSlV8aBb558A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 19, tzinfo=datetime.timezone.utc), 1, 1.91, -73.981927, 40.773275, -73.956748, 40.774945, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'ZI7qcJww0Tz8Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), 2, 1.56, -73.975817, 40.747053, -73.982725, 40.762393, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '/T59Uh1UiyjTpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 12, tzinfo=datetime.timezone.utc), 3, 1.59, -73.990632, 40.75057, -73.97508, 40.756287, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Q2BWwzyzyS5RWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 3, tzinfo=datetime.timezone.utc), 1, 1.67, -74.150528, 40.8933, -74.16543, 40.866005, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Vt0AwzDevzT7Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 5, tzinfo=datetime.timezone.utc), 1, 1.72, -73.997572, 40.72133, -74.001325, 40.737027, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'U1B0YFnsGCidlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 33, tzinfo=datetime.timezone.utc), 1, 2.31, -73.949985, 40.775915, -73.974952, 40.758965, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'UyXLS23DrA3hsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 11, tzinfo=datetime.timezone.utc), 5, 0.65, -73.980558, 40.735155, -73.988642, 40.739362, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'pA7BRfkgloC25A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 12, tzinfo=datetime.timezone.utc), 1, 1.82, -73.98942, 40.726255, -74.007188, 40.705827, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'C8B1qZjCWyAbFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 3, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 7, tzinfo=datetime.timezone.utc), 1, 2.1, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'XhcBiJPZdR8rsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 10, tzinfo=datetime.timezone.utc), 2, 1.71, -73.9809, 40.743518, -74.005623, 40.72617, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'jlyI3N68K5ph4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 38, tzinfo=datetime.timezone.utc), 1, 1.5, -74.00192, 40.799892, -74.01106, 40.819458, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'HUhjJlqlMRfvuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 29, tzinfo=datetime.timezone.utc), 1, 1.77, -73.974095, 40.752972, -73.983247, 40.759238, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'mQI4t1SM3PCCUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 17, tzinfo=datetime.timezone.utc), 5, 2.12, -73.993157, 40.752257, -73.983183, 40.764718, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '18oB6tV7l3F82w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 21, tzinfo=datetime.timezone.utc), 5, 1.58, -73.982425, 40.757062, -73.991683, 40.741195, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'DBtfVk1OkisDUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 54, tzinfo=datetime.timezone.utc), 3, 1.96, -74.013738, 40.70778, -73.98581, 40.714475, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '7Go3FjeEFgpABw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 53, tzinfo=datetime.timezone.utc), 5, 1.97, -73.985273, 40.778418, -73.959085, 40.775035, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '77dyaOnEAMoU/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 46, tzinfo=datetime.timezone.utc), 1, 2.08, -73.978427, 40.777205, -73.953867, 40.784598, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'DsO4+9gpvsegfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 38, tzinfo=datetime.timezone.utc), 1, 1.78, -73.971733, 40.76614, -73.985015, 40.781203, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'gEebOsGFdvA0Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 55, tzinfo=datetime.timezone.utc), 1, 1.88, -73.954218, 40.77468, -73.979247, 40.776802, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '21iY/27JLTpykw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 18, tzinfo=datetime.timezone.utc), 1, 1.94, -73.967862, 40.765318, -73.975625, 40.780385, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'z7hlWDyXnVAmnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 50, tzinfo=datetime.timezone.utc), 1, 2.0, -73.971988, 40.791665, -73.949493, 40.77699, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '6cUhkrlmSdfAwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 34, tzinfo=datetime.timezone.utc), 5, 1.93, -73.995855, 40.743038, -73.996603, 40.724372, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '8cvYgmTqvj8rjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 55, tzinfo=datetime.timezone.utc), 1, 2.1, -73.980485, 40.760088, -73.971818, 40.783765, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'tyiVmZeYt2zTeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 37, tzinfo=datetime.timezone.utc), 2, 1.87, -73.959603, 40.741342, -73.964737, 40.735388, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'jmq7uXevpBVJ6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 48, tzinfo=datetime.timezone.utc), 1, 1.58, -74.003763, 40.756397, -74.023103, 40.748362, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'KqvuQb3ZxMSf5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 0, tzinfo=datetime.timezone.utc), 1, 1.64, -73.973712, 40.794297, -73.956262, 40.803895, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'X2MJ1CWgYAogmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 45, tzinfo=datetime.timezone.utc), 2, 1.42, -73.988478, 40.731337, -74.007437, 40.740097, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'vKmtT+d7T0EG8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.97, -73.969918, 40.797372, -73.98227, 40.771805, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'TWKHISp4xgRHJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 59, tzinfo=datetime.timezone.utc), 5, 1.17, -73.9889, 40.742287, -73.987295, 40.730008, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'ooOdOCdmYRcLgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 30, tzinfo=datetime.timezone.utc), 2, 1.14, -73.88231, 40.747943, -73.904058, 40.745627, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'uS2L/0CxWA067w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 26, tzinfo=datetime.timezone.utc), 1, 2.05, -73.995305, 40.7273, -74.017163, 40.705375, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '5fK785Hg1QNJRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 52, tzinfo=datetime.timezone.utc), 1, 1.2, -73.994732, 40.724823, -73.997845, 40.735883, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'WNEWQ5cjh/Xu0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 21, 49, tzinfo=datetime.timezone.utc), 1, 1.99, -73.974787, 40.790615, -73.956013, 40.773538, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'rKkeJ+AVITme+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 43, tzinfo=datetime.timezone.utc), 1, 2.06, -73.966687, 40.761483, -73.98, 40.780495, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'qrsx/mIqk6YHZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 1, tzinfo=datetime.timezone.utc), 2, 1.73, -73.982898, 40.771778, -73.963232, 40.757583, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Iligvq1gFff+kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 4, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 4, 18, tzinfo=datetime.timezone.utc), 3, 2.02, -73.980582, 40.756143, -73.983667, 40.738372, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'IobHSx9RYmkgsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 52, tzinfo=datetime.timezone.utc), 1, 1.55, -73.98047, 40.730138, -74.005578, 40.732905, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'eQpNggNsMZ4Epg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 25, tzinfo=datetime.timezone.utc), 2, 1.99, -73.988523, 40.7371, -73.984492, 40.759243, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '12qzcW1jH1U9lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.51, -73.989343, 40.740122, -73.99112, 40.755503, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '+FHr/3wtWn2o+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 25, tzinfo=datetime.timezone.utc), 1, 1.63, -73.966658, 40.764217, -73.985727, 40.756908, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'xSo++JEvQvViCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 1, tzinfo=datetime.timezone.utc), 1, 1.58, -73.994362, 40.716942, -74.010078, 40.729065, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'TnPmFIHeADRPEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 33, tzinfo=datetime.timezone.utc), 3, 1.4, -73.990827, 40.760858, -74.001645, 40.751335, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'ru3FfkFoCWTaYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 0, tzinfo=datetime.timezone.utc), 1, 1.68, -73.997192, 40.742118, -73.997192, 40.742118, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'zo9MPsJhsXHmRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 47, tzinfo=datetime.timezone.utc), 1, 1.86, -73.986792, 40.76421, -74.00459, 40.752098, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'zE5KdJFdFy2bPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 42, tzinfo=datetime.timezone.utc), 1, 1.86, -74.004438, 40.74229, -73.986482, 40.747675, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '6iQHM8+EYvm5zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 16, tzinfo=datetime.timezone.utc), 1, 1.9, -73.977277, 40.753908, -73.997705, 40.744752, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'A3lhD3JUnBiR7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 48, tzinfo=datetime.timezone.utc), 2, 1.83, -73.980345, 40.745288, -73.988303, 40.727683, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'XhElTPaI/gKOfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 39, tzinfo=datetime.timezone.utc), 2, 1.72, -73.965198, 40.806445, -73.97253, 40.78595, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'GNBDLLTv+NM9yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 37, tzinfo=datetime.timezone.utc), 3, 1.99, -73.987785, 40.751323, -73.97689, 40.777272, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'hm4jWigIrI7YcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 4, tzinfo=datetime.timezone.utc), 1, 2.32, -73.95103, 40.777622, -73.972367, 40.755597, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'yOJ2iGL4zdjNAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 45, tzinfo=datetime.timezone.utc), 5, 2.03, -74.005295, 40.71971, -74.004003, 40.742037, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'vaaILWyQ7NTlZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 45, tzinfo=datetime.timezone.utc), 1, 1.24, -73.995713, 40.726743, -73.978927, 40.724862, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'j1eTCydJNsQHPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 31, tzinfo=datetime.timezone.utc), 1, 1.75, -73.978937, 40.746073, -73.99131, 40.73563, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '2AAfkeo4dk7TrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 23, tzinfo=datetime.timezone.utc), 1, 1.58, -74.008382, 40.72588, -73.988018, 40.719985, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '8CdqFY/CfX3ifQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 51, tzinfo=datetime.timezone.utc), 2, 1.86, -73.939283, 40.841737, -73.940878, 40.825998, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'fJOZWr7CUYRXfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 23, tzinfo=datetime.timezone.utc), 2, 1.8, -73.986017, 40.743278, -73.983235, 40.755135, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'Ia5gTURuZIOnZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 42, tzinfo=datetime.timezone.utc), 1, 1.79, -73.990737, 40.718335, -74.002313, 40.733587, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'rheDCEs+ipk3XA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 57, tzinfo=datetime.timezone.utc), 4, 1.74, -73.967687, 40.76159, -73.986928, 40.75616, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'DSJCr9yEVYHcEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 14, tzinfo=datetime.timezone.utc), 1, 1.22, -73.992813, 40.724293, -74.008338, 40.725752, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', 'TpJwkxGTsoUUDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 46, tzinfo=datetime.timezone.utc), 1, 1.85, -73.91678, 40.748292, -73.921487, 40.743612, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '94YVZ7WKTDpOgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 10, tzinfo=datetime.timezone.utc), 2, 1.34, -73.979772, 40.760625, -73.966198, 40.761777, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685115.6930006', '3mpucx3D4a85KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 20, tzinfo=datetime.timezone.utc), 1, 1.57, -73.972577, 40.780972, -73.982648, 40.761542, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'bhD/HA5ZyvGixw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 4, tzinfo=datetime.timezone.utc), 5, 2.36, -73.980628, 40.742395, -74.006158, 40.723432, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Z/7GsXRnMKI7Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 44, tzinfo=datetime.timezone.utc), 1, 2.25, -73.98215, 40.772317, -73.958777, 40.777978, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'RviUlr/Bmile3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 37, tzinfo=datetime.timezone.utc), 1, 2.17, -73.976853, 40.743533, -74.005308, 40.740188, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'E0Q9ydvQ3yLVtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 49, tzinfo=datetime.timezone.utc), 1, 2.16, -73.943935, 40.791337, -73.955265, 40.812323, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'gvGKHdqlilEW1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 18, tzinfo=datetime.timezone.utc), 2, 1.95, -73.98474, 40.768558, -73.959725, 40.773875, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'eZ+SpE86XCOKDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 2, tzinfo=datetime.timezone.utc), 1, 1.58, -73.984192, 40.764838, -73.975767, 40.755223, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '/wEKe1YQ6BQGdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 59, tzinfo=datetime.timezone.utc), 2, 0.97, -73.990833, 40.756048, -73.994403, 40.750922, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'olUUscH/kM3wXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 31, tzinfo=datetime.timezone.utc), 1, 2.0, -73.958812, 40.772215, -73.964928, 40.791157, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'AiBEBuIYMka29A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 15, tzinfo=datetime.timezone.utc), 2, 2.25, -73.991935, 40.744168, -73.980002, 40.7707, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '4ET7tOqt2IBlsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 7, tzinfo=datetime.timezone.utc), 1, 1.87, -73.970968, 40.766995, -73.991513, 40.750173, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OhnsP+SRzVpFww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 58, tzinfo=datetime.timezone.utc), 1, 1.79, -74.00277, 40.760508, -73.974745, 40.750923, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'bTioUsmMh4PBeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 26, 14, 46, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 58, tzinfo=datetime.timezone.utc), 1, 1.8, -73.976037, 40.759659, -73.956077, 40.772896, 'Cash', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OpJyZUhYGtnZEg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 3, tzinfo=datetime.timezone.utc), 5, 2.56, -73.995443, 40.739463, -73.97216, 40.764235, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ap2KeaDEj7iN9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 15, tzinfo=datetime.timezone.utc), 5, 1.89, -73.966353, 40.762528, -73.945312, 40.778763, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'h25xka9Jr++piQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 39, tzinfo=datetime.timezone.utc), 1, 1.95, -73.964755, 40.76731, -73.977112, 40.785967, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'DvIGEU8ny4MLwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 17, tzinfo=datetime.timezone.utc), 1, 2.0, -73.970888, 40.795898, -73.984, 40.775447, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'vzZOQKFyzsQC2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 42, tzinfo=datetime.timezone.utc), 1, 2.08, -73.974603, 40.763818, -74.002458, 40.760697, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '9UIkUtvgY1QmJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 48, tzinfo=datetime.timezone.utc), 1, 2.03, -73.962807, 40.778168, -73.98529, 40.768238, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'lQU7rcgSBjaL9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 58, tzinfo=datetime.timezone.utc), 3, 1.59, -73.981172, 40.764203, -73.988128, 40.756938, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'lqCHJ1Xs5lAdyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 26, tzinfo=datetime.timezone.utc), 1, 1.98, -73.968528, 40.798668, -73.955185, 40.78094, 'Credit', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'yK7WXEAYd6YAzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 22, tzinfo=datetime.timezone.utc), 1, 2.07, -73.990843, 40.755998, -73.964845, 40.763607, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'q7JMoXTHsZg+MQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 58, tzinfo=datetime.timezone.utc), 1, 1.65, -73.973138, 40.748747, -73.965245, 40.766273, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'J7j4OPHfhOmk9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 34, tzinfo=datetime.timezone.utc), 5, 2.64, -73.953657, 40.822282, -73.939005, 40.848665, 'Credit', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'THwxUmL7rGo4dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 27, tzinfo=datetime.timezone.utc), 1, 1.59, -73.97835, 40.753402, -74.000825, 40.75793, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'r65FNDcWEaCjLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 55, tzinfo=datetime.timezone.utc), 1, 1.88, -73.98238, 40.774727, -73.968535, 40.758702, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'FvqX6BIZkVlJRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 7, tzinfo=datetime.timezone.utc), 5, 2.2, -73.991582, 40.751422, -74.000187, 40.724305, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'utRfMwIrQlnp2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 17, tzinfo=datetime.timezone.utc), 1, 1.11, -73.977085, 40.738673, -73.987327, 40.748683, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'AtGTQlS9G5t+Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 27, tzinfo=datetime.timezone.utc), 1, 1.44, -73.986382, 40.774017, -73.983933, 40.760418, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'wiXJsojcpbbS4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.62, -74.001358, 40.683672, -73.979502, 40.684838, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'oMSA8d0RG9L+/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 53, tzinfo=datetime.timezone.utc), 4, 1.78, -73.964747, 40.791555, -73.959512, 40.774065, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'tn3sv+GPtMqs5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 48, tzinfo=datetime.timezone.utc), 2, 1.77, -74.001087, 40.72549, -74.010633, 40.709132, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'SeSlneWAe0MuWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 9, 14, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 26, 5, tzinfo=datetime.timezone.utc), 1, 0.7, -73.980837, 40.767621, -73.96971, 40.765003, 'Cash', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Me62jKMM77w/gQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 7, tzinfo=datetime.timezone.utc), 5, 1.84, -73.99475, 40.760585, -73.969693, 40.761192, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'xQDO9mD5EQVb2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 38, tzinfo=datetime.timezone.utc), 1, 2.18, -73.987163, 40.776278, -73.989998, 40.752585, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'VqzRUYlodhKT4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 55, tzinfo=datetime.timezone.utc), 1, 2.06, -73.978282, 40.752675, -73.992463, 40.728668, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '1H43Qb/cC/E2pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 7, tzinfo=datetime.timezone.utc), 1, 1.76, -73.998647, 40.722808, -74.007945, 40.70392, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'x2fOFZO7jf5r0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 28, tzinfo=datetime.timezone.utc), 1, 1.75, -73.973438, 40.757742, -73.961495, 40.779283, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'oBkLt8MW1yGIkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 38, tzinfo=datetime.timezone.utc), 5, 2.21, -73.997213, 40.722377, -73.979025, 40.750517, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'pM3bkz4bmjFYoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 35, tzinfo=datetime.timezone.utc), 1, 2.3, -73.99862, 40.735545, -74.014247, 40.713088, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'FmZWNWQCaYaw3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 16, tzinfo=datetime.timezone.utc), 5, 1.03, -73.987783, 40.76463, -73.971482, 40.76059, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '1gXCLn5oKCkX8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 34, tzinfo=datetime.timezone.utc), 1, 2.08, -74.003718, 40.739397, -73.988127, 40.76333, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'aeNKZNhwz8x1og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 30, tzinfo=datetime.timezone.utc), 2, 2.01, -73.997203, 40.730302, -73.975085, 40.741722, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'I7ZyxFQI2HzTEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 9, tzinfo=datetime.timezone.utc), 1, 0.98, -74.001568, 40.72, -73.988042, 40.718777, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'n17cyHb4ePmzVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 11, 42, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 53, 57, tzinfo=datetime.timezone.utc), 1, 1.8, -73.980582, 40.772286, -73.952688, 40.766398, 'Cash', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'cW/68Df3IH/dEA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 33, tzinfo=datetime.timezone.utc), 1, 2.33, -73.97596, 40.744905, -73.981215, 40.768098, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'u3WVMgJSUldyng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 46, tzinfo=datetime.timezone.utc), 1, 1.73, -73.97238, 40.756985, -73.987677, 40.77026, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'XHv+1th8IqgScQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 54, tzinfo=datetime.timezone.utc), 1, 1.24, -73.954012, 40.787215, -73.943657, 40.777883, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'XrPjZypgtkZIRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 33, tzinfo=datetime.timezone.utc), 5, 2.32, -73.975537, 40.782018, -73.985395, 40.754628, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '+5pZta2knHM5xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 51, tzinfo=datetime.timezone.utc), 5, 1.58, -73.986582, 40.767932, -73.994678, 40.75045, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'y8jXNYNcLB9B9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 12, tzinfo=datetime.timezone.utc), 2, 2.58, -73.985095, 40.778935, -74.00211, 40.748623, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'R6Sv1E6k43B2Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 2, tzinfo=datetime.timezone.utc), 5, 1.43, -73.944408, 40.775695, -73.962575, 40.769908, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'w3FTf1T+HxFKAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 15, tzinfo=datetime.timezone.utc), 1, 2.41, -73.980897, 40.741998, -73.955582, 40.76753, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'pEK64c7tzw2OmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 12, 39, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 49, 8, tzinfo=datetime.timezone.utc), 1, 2.3, -73.979388, 40.77145, -73.966602, 40.797522, 'Cash', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'n0FSlS7aRm2a/A', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 44, tzinfo=datetime.timezone.utc), 5, 2.21, -73.997103, 40.72566, -73.976077, 40.748557, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'CQp/sTtVoTmDOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 51, tzinfo=datetime.timezone.utc), 1, 2.4, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '3D42gs4E8f2Niw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 9, tzinfo=datetime.timezone.utc), 1, 1.35, -73.953127, 40.765265, -73.969667, 40.762187, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '6iFZDk+8Y4gouw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.85, -73.994578, 40.7502, -73.9833, 40.749047, 'Credit', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'qVuAujYEKVLLIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 32, tzinfo=datetime.timezone.utc), 2, 2.3, -73.954743, 40.750032, -73.928868, 40.724255, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'csKe+OYnPqm9fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 26, tzinfo=datetime.timezone.utc), 1, 2.35, -73.981167, 40.74695, -73.961118, 40.774772, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '6buYRfjXXIztrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.75, -73.987598, 40.770475, -73.989725, 40.752402, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'XMQhmD5mdqDwIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 18, tzinfo=datetime.timezone.utc), 3, 1.86, -73.932293, 40.765497, -73.90933, 40.765473, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'J2wE2vhWTtkLWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 53, tzinfo=datetime.timezone.utc), 2, 1.88, -73.987928, 40.732203, -73.991765, 40.749288, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'MTOaBfanIpejBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 10, tzinfo=datetime.timezone.utc), 1, 1.69, -73.97626, 40.763797, -73.958555, 40.7726, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ZIKY2eHYvJrYmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 4, tzinfo=datetime.timezone.utc), 1, 1.94, -74.007295, 40.715867, -73.989608, 40.729407, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OsNG7dezT2+RXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 36, tzinfo=datetime.timezone.utc), 5, 1.75, -73.978095, 40.748862, -73.996785, 40.733313, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Ksl7shCwMEhNxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 39, tzinfo=datetime.timezone.utc), 1, 1.88, -74.000767, 40.757927, -73.979507, 40.77215, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'BTfxh5p1dN1xMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 32, tzinfo=datetime.timezone.utc), 6, 2.65, -73.982415, 40.731503, -73.959098, 40.764482, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'rMycFpgedPMtQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 43, tzinfo=datetime.timezone.utc), 2, 2.01, -73.952868, 40.768122, -73.982242, 40.774617, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'cRvFlMAOhWRBNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 56, tzinfo=datetime.timezone.utc), 1, 1.94, -73.952745, 40.78324, -73.98045, 40.789823, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'nT417h52T8CYfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 41, tzinfo=datetime.timezone.utc), 4, 2.09, -73.984378, 40.774882, -73.966948, 40.801465, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'cctLjNHimJaotQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 57, tzinfo=datetime.timezone.utc), 5, 1.7, -73.959555, 40.773525, -73.975017, 40.752738, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OcHEpqealX6VVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 5, tzinfo=datetime.timezone.utc), 1, 2.16, -73.987727, 40.770378, -73.96948, 40.797003, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'glXyi0kfndJzdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 2, tzinfo=datetime.timezone.utc), 5, 2.23, -73.965317, 40.759515, -73.988033, 40.7379, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'jB7sBv38Pu2eKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 2, tzinfo=datetime.timezone.utc), 1, 1.23, -73.965405, 40.771982, -73.973465, 40.758113, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'hIkuSeoTjbLy4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 46, tzinfo=datetime.timezone.utc), 1, 1.93, -73.995142, 40.765523, -73.99294, 40.766792, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OC3SQjbmJDO3nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 43, tzinfo=datetime.timezone.utc), 5, 1.53, -73.998595, 40.764008, -73.978375, 40.752597, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'RwphmtGRvrxOhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 11, tzinfo=datetime.timezone.utc), 1, 2.16, -73.995573, 40.725087, -73.987818, 40.749623, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ky9XE4h2Hcf+Hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 25, tzinfo=datetime.timezone.utc), 5, 1.56, -73.977525, 40.789497, -73.956047, 40.781725, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'E/CXs8nc+OpyvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 17, tzinfo=datetime.timezone.utc), 1, 1.55, -73.994272, 40.751425, -73.976965, 40.759825, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'lgIlnPTQdn+umQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 7, tzinfo=datetime.timezone.utc), 1, 1.92, -73.981783, 40.779572, -73.993335, 40.757565, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'm/VhlPIYZHYiUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 13, tzinfo=datetime.timezone.utc), 2, 1.55, -73.98759, 40.76529, -73.990328, 40.749295, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'v6sfv9DdGbxNjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 18, tzinfo=datetime.timezone.utc), 1, 2.02, -73.973308, 40.758593, -73.9613, 40.779047, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ic98ETpkulFpRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 6, tzinfo=datetime.timezone.utc), 1, 2.3, -73.948125, 40.774618, -73.970712, 40.753235, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ByDE83eryjAG4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 59, tzinfo=datetime.timezone.utc), 5, 1.3, -73.971667, 40.750893, -73.988667, 40.74843, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'EsFTHW86qQ7Xjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 27, tzinfo=datetime.timezone.utc), 1, 1.91, -73.960322, 40.77889, -73.981675, 40.774515, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'NfUuxWI4WD1fyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 6, tzinfo=datetime.timezone.utc), 2, 2.36, -73.998803, 40.732233, -73.980412, 40.76054, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'SFSdASMWa79Q8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 50, tzinfo=datetime.timezone.utc), 1, 0.97, -73.976523, 40.759847, -73.98938, 40.756075, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'TQjFdvKj8mpU2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 55, tzinfo=datetime.timezone.utc), 2, 2.32, -73.941055, 40.792455, -73.970623, 40.788668, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Adm4BypwTm72XA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 53, tzinfo=datetime.timezone.utc), 1, 2.33, -73.989288, 40.736318, -73.991025, 40.757938, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'HTv3uMwxfJLI0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 14, tzinfo=datetime.timezone.utc), 1, 2.06, -73.969518, 40.757713, -73.979238, 40.735822, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'K3xtsVUVvDr7tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 39, tzinfo=datetime.timezone.utc), 2, 2.24, -73.881417, 40.884555, -73.872628, 40.881688, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Ev07CeeB12V0tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 14, tzinfo=datetime.timezone.utc), 5, 1.61, -73.95443, 40.77342, -73.973257, 40.76486, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'J9yp03gh3PFe9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 14, tzinfo=datetime.timezone.utc), 1, 2.15, -73.954713, 40.789413, -73.980822, 40.782157, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ukfoJbuBvmB6tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 51, tzinfo=datetime.timezone.utc), 1, 1.67, -73.987428, 40.729293, -73.98678, 40.747162, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'iPRfp5CUjxchZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 22, tzinfo=datetime.timezone.utc), 1, 2.24, -73.982042, 40.763525, -73.97476, 40.741923, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '2+8grnnrjcMJZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 30, tzinfo=datetime.timezone.utc), 2, 1.79, -73.982278, 40.77688, -73.98427, 40.75458, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '111Snhf1Bjb2pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 58, tzinfo=datetime.timezone.utc), 2, 2.04, -74.003813, 40.753145, -73.981845, 40.755313, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'jOemeXWq5UXZvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 4, tzinfo=datetime.timezone.utc), 2, 1.99, -73.954598, 40.769757, -73.953615, 40.790718, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'KKoIxEpYb+/Aww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 53, tzinfo=datetime.timezone.utc), 1, 2.1, -73.971683, 40.749002, -73.952963, 40.766597, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'KNU9N9H1E1okFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 0, tzinfo=datetime.timezone.utc), 1, 2.29, -73.963773, 40.761472, -73.98491, 40.732542, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'LiJEca7AlXL+5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 10, tzinfo=datetime.timezone.utc), 4, 2.81, -73.951005, 40.794377, -73.982045, 40.774927, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'nh9GarPIAv5k4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 58, tzinfo=datetime.timezone.utc), 1, 1.31, -73.968225, 40.768035, -73.98202, 40.758147, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'W6K29ZPB4JVFqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 33, tzinfo=datetime.timezone.utc), 3, 1.14, -73.955727, 40.764082, -73.969528, 40.757218, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'bNnloBDWyTGXXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 4, tzinfo=datetime.timezone.utc), 1, 1.49, -74.007185, 40.743618, -73.983438, 40.734448, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'lQVUcNbzIQ7gOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 43, tzinfo=datetime.timezone.utc), 1, 2.05, -73.97646, 40.788215, -73.96596, 40.768415, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'bgvL1CU6tMGzZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 10, tzinfo=datetime.timezone.utc), 1, 0.73, -73.961637, 40.764332, -73.96787, 40.759582, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Kfab0hfuYO1Nlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 50, tzinfo=datetime.timezone.utc), 5, 1.94, -73.962033, 40.767778, -73.978227, 40.783495, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'OthX8Y8cLSTtDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 8, tzinfo=datetime.timezone.utc), 1, 2.55, -73.94883, 40.773622, -73.971772, 40.750297, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Y5YF87X4FLGk1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 55, tzinfo=datetime.timezone.utc), 2, 1.29, -73.972428, 40.756212, -73.988648, 40.748652, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'gYCCOxlscLP8/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 25, tzinfo=datetime.timezone.utc), 2, 1.92, -73.9476, 40.775157, -73.971328, 40.757762, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'wDEEtd3ZsCdVHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 7, tzinfo=datetime.timezone.utc), 1, 1.19, -73.964858, 40.763972, -73.980625, 40.760922, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '1OTCPN1hJVQFUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 39, tzinfo=datetime.timezone.utc), 1, 1.48, -73.994853, 40.743763, -73.991613, 40.731188, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '7Vpb4jBLxpTNZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 7, tzinfo=datetime.timezone.utc), 2, 2.27, -73.973595, 40.74818, -73.993533, 40.730242, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'Y4BuyvsFgNJpXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 22, tzinfo=datetime.timezone.utc), 2, 1.5, -73.987977, 40.750443, -73.988867, 40.736812, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'yuyMaaVC7OvAGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 22, tzinfo=datetime.timezone.utc), 1, 1.7, -73.968385, 40.755362, -73.983287, 40.734438, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', '8YjmIqiI8sK4uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 19, tzinfo=datetime.timezone.utc), 1, 1.25, -73.948643, 40.773933, -73.961743, 40.76118, 'CASH', 8.1, 0.0, 0.0, 0.0, 8.1, '1705685115.6930006', 'ZMAanqBGgJsbcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 8, tzinfo=datetime.timezone.utc), 2, 2.24, -73.977773, 40.76175, -73.951465, 40.774043, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'mehmVsKM5PAmJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 38, tzinfo=datetime.timezone.utc), 1, 1.78, -73.999847, 40.738427, -73.98917, 40.722935, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'rPs6sBRBEcqCQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 42, tzinfo=datetime.timezone.utc), 5, 1.95, -73.970477, 40.796687, -73.957523, 40.780255, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'XTcP9bQsD3dVqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 25, tzinfo=datetime.timezone.utc), 2, 1.87, -74.00779, 40.74207, -73.979765, 40.73553, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'akDItYF/gkifFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 56, tzinfo=datetime.timezone.utc), 1, 2.01, -73.960178, 40.766448, -73.974753, 40.777805, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'fIzfEpHGbsOqXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 15, tzinfo=datetime.timezone.utc), 5, 2.33, -73.957543, 40.768392, -73.982345, 40.756457, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'tT0xzE/vanvBQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 22, tzinfo=datetime.timezone.utc), 3, 1.85, -73.95948, 40.718015, -73.984855, 40.736695, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'sFlnch5s4JOQMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 1, tzinfo=datetime.timezone.utc), 5, 1.94, -73.97887, 40.777237, -73.9953, 40.754613, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'k1oJKSgSs8cZrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 1, tzinfo=datetime.timezone.utc), 5, 2.43, -73.990253, 40.765743, -73.99142, 40.732003, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '0WxNBfv27pyX4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 30, tzinfo=datetime.timezone.utc), 1, 2.39, -73.978702, 40.743648, -73.956273, 40.769092, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'PXRhzLvDC999pQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 59, tzinfo=datetime.timezone.utc), 3, 1.31, -73.987857, 40.73275, -74.005453, 40.740037, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'cZ1wd/nNU6UVFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 3, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 28, tzinfo=datetime.timezone.utc), 1, 2.17, -74.003003, 40.725632, -73.984783, 40.745832, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'bP/mkLB+PUb6hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 46, tzinfo=datetime.timezone.utc), 1, 1.77, -73.98576, 40.756255, -73.966325, 40.756382, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'HR85p5W2GtT/yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 47, tzinfo=datetime.timezone.utc), 2, 2.18, -73.982748, 40.76181, -73.992875, 40.736885, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '74uAItGAG0QMKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 36, tzinfo=datetime.timezone.utc), 1, 2.44, -73.998722, 40.734615, -73.996577, 40.761155, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'j3+LlhcfjJ14MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 9, tzinfo=datetime.timezone.utc), 1, 1.58, -73.98283, 40.735235, -74.005865, 40.740282, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'ZVNl2a9BFfkCfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 58, tzinfo=datetime.timezone.utc), 2, 2.27, -73.97304, 40.75791, -73.976038, 40.779613, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'p+d0sR/YzcjGPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 11, tzinfo=datetime.timezone.utc), 1, 1.59, -73.977725, 40.746215, -73.981712, 40.763755, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'TGm5F5eiCxHQNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 58, tzinfo=datetime.timezone.utc), 1, 1.94, -73.994972, 40.72307, -73.977253, 40.747782, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 't3oAPLCT8l3EXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 13, tzinfo=datetime.timezone.utc), 1, 2.59, -73.972987, 40.75679, -74.001193, 40.736647, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'XFn+/CsFDAgUCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 37, tzinfo=datetime.timezone.utc), 1, 2.16, -73.982905, 40.742033, -73.971822, 40.764978, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'lz4SgHYqRKLaQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 19, tzinfo=datetime.timezone.utc), 1, 2.42, -73.98753, 40.757193, -73.980613, 40.782107, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'GB38dfW+fwmdTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 15, tzinfo=datetime.timezone.utc), 2, 2.17, -73.979585, 40.759485, -73.998487, 40.74448, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'tjpcW7dgMgR8sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 39, tzinfo=datetime.timezone.utc), 1, 2.34, -73.969987, 40.689562, -73.987108, 40.668773, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'KxSM3YwCR9FE8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 9, tzinfo=datetime.timezone.utc), 1, 1.75, -73.993248, 40.727842, -74.00258, 40.745308, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'cpuN8mdwwE62Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 19, tzinfo=datetime.timezone.utc), 4, 1.45, -73.990368, 40.751048, -73.982718, 40.761702, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'LTqWRY2e8DgU2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 2, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 2, 49, tzinfo=datetime.timezone.utc), 1, 2.4, -73.990955, 40.714647, -73.95377, 40.706827, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'TpgY7tFVA2mpfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 54, tzinfo=datetime.timezone.utc), 1, 1.75, -73.997828, 40.744942, -73.994465, 40.725843, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'czzDo1stulhVnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 1, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 1, 40, tzinfo=datetime.timezone.utc), 1, 2.25, -73.987198, 40.744772, -73.986093, 40.764657, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'QSZOTyXk8bCiZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 19, tzinfo=datetime.timezone.utc), 1, 2.27, -73.982562, 40.757598, -73.978653, 40.783253, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'onhvFOh9TTgp3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 21, tzinfo=datetime.timezone.utc), 2, 2.07, -73.989295, 40.758905, -73.963398, 40.76492, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'ZQ9rd5W3b3+Qdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 2, tzinfo=datetime.timezone.utc), 1, 2.07, -73.99612, 40.725095, -73.989102, 40.747588, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'mhLKdjPCzr2uHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 16, tzinfo=datetime.timezone.utc), 1, 1.9, -73.979057, 40.784822, -73.953667, 40.786945, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'NGtZjCUd2lAkAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 28, tzinfo=datetime.timezone.utc), 5, 2.27, -73.983648, 40.742453, -74.005475, 40.715533, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'd+W4X/PW65q2Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 5, tzinfo=datetime.timezone.utc), 5, 1.84, -73.97709, 40.764362, -73.991307, 40.749675, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'R+OHtozaG6gA5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 56, tzinfo=datetime.timezone.utc), 3, 2.3, -73.977992, 40.752252, -73.952155, 40.769785, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'xdEjmJjmfkqyHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 2, tzinfo=datetime.timezone.utc), 1, 1.81, -73.988253, 40.719878, -73.981455, 40.740912, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'LLVROfMl8SowMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 59, tzinfo=datetime.timezone.utc), 2, 2.25, -73.995918, 40.726603, -73.988223, 40.745803, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'ouovOkIQDWy3/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 57, tzinfo=datetime.timezone.utc), 5, 1.83, -73.982763, 40.771722, -73.989535, 40.762843, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'ppPT7WdQ3qwxWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 6, tzinfo=datetime.timezone.utc), 1, 1.85, -73.972, 40.789713, -73.94901, 40.77746, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'gh5WTT/e/g1+/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 44, tzinfo=datetime.timezone.utc), 1, 2.52, -74.00652, 40.744765, -73.982477, 40.768447, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '6sqLxkg9k2p7Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 5, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 5, 22, tzinfo=datetime.timezone.utc), 1, 2.09, -73.937067, 40.759363, -73.909827, 40.763672, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'xTxRxdMgrbCAhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 12, tzinfo=datetime.timezone.utc), 3, 2.29, -73.9717, 40.7512, -73.989308, 40.723095, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '128Uo2gMHBtaLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 41, tzinfo=datetime.timezone.utc), 5, 2.27, -73.972655, 40.75425, -73.991583, 40.727117, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '6y004FaCzgVjzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 18, tzinfo=datetime.timezone.utc), 3, 2.39, -73.999877, 40.734718, -73.97551, 40.74991, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'RcIs2AnpzR0D8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 44, tzinfo=datetime.timezone.utc), 1, 1.95, -73.979707, 40.77618, -73.95446, 40.772182, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'nE6+/TUx/7RLKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 25, tzinfo=datetime.timezone.utc), 5, 2.6, -74.006735, 40.715885, -73.985842, 40.742722, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'aB46+ZaUegpHdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 58, tzinfo=datetime.timezone.utc), 1, 2.23, -73.99957, 40.738648, -73.973353, 40.743755, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'bdy+vzpHf2bXUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 2, tzinfo=datetime.timezone.utc), 1, 2.03, -73.990745, 40.755815, -73.997093, 40.73669, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'cnnMgtURmmZpGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 17, tzinfo=datetime.timezone.utc), 1, 2.24, -73.989422, 40.739912, -73.991505, 40.759663, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'zC10ULm7Gx93kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 20, tzinfo=datetime.timezone.utc), 5, 1.96, -73.99851, 40.71992, -73.984878, 40.744725, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'UjDvuwMeLTJFow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 18, tzinfo=datetime.timezone.utc), 1, 2.66, -73.979813, 40.735042, -73.957443, 40.768372, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'x/ccXXPeXBXvMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 2, tzinfo=datetime.timezone.utc), 5, 1.75, -73.974428, 40.751672, -73.979772, 40.73501, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '1Z7Iptvv6vKJjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 52, tzinfo=datetime.timezone.utc), 1, 2.33, -73.99852, 40.764082, -73.983643, 40.745147, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'qGVVWU5eXeZIwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 57, tzinfo=datetime.timezone.utc), 2, 2.56, -73.973755, 40.751937, -73.948882, 40.781495, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'RhWY+mW1j2Rq7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 26, tzinfo=datetime.timezone.utc), 1, 1.32, -73.996072, 40.754918, -73.998848, 40.741032, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'Sx9TRlpMqytQaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 33, tzinfo=datetime.timezone.utc), 1, 2.55, -73.976288, 40.744735, -73.951492, 40.77398, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'PE61ULIefxRpeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 57, tzinfo=datetime.timezone.utc), 5, 2.33, -74.002115, 40.719235, -73.996403, 40.696315, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'y3hRlIOFhr7RnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 0, tzinfo=datetime.timezone.utc), 1, 2.12, -74.025697, 40.636588, -74.005245, 40.621817, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'QEsOTkJa5b+E6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 3, tzinfo=datetime.timezone.utc), 2, 2.44, -74.002108, 40.730008, -73.977887, 40.754567, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '05NMpplKl+j7+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 51, tzinfo=datetime.timezone.utc), 4, 2.87, -73.97788, 40.746468, -73.950943, 40.782445, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '5D37MWmxYdbidQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 2, 45, tzinfo=datetime.timezone.utc), 1, 1.88, -73.977942, 40.725398, -74.004268, 40.730297, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'nSXZ0vK1bPhZYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 3, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 3, 34, tzinfo=datetime.timezone.utc), 2, 2.39, -73.985122, 40.729917, -74.011917, 40.711833, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'd4J+Mhzu/wDD+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 3, tzinfo=datetime.timezone.utc), 5, 2.01, -73.991047, 40.751053, -73.983232, 40.732533, 'Credit', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '7+Ua94P6meJhvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 10, tzinfo=datetime.timezone.utc), 5, 1.84, -73.984033, 40.725288, -74.004722, 40.740743, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'o0R1QubR3nA8/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 50, tzinfo=datetime.timezone.utc), 5, 1.4, -73.976962, 40.751455, -73.989218, 40.761348, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'Fhj0PqeD4CAttA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 24, tzinfo=datetime.timezone.utc), 5, 2.05, -74.003383, 40.743368, -73.97857, 40.752705, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'hN6sBOkBNC4N8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 18, tzinfo=datetime.timezone.utc), 5, 1.99, -73.98567, 40.755682, -73.964995, 40.762282, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'RJxLi0ICoPvAWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 7, tzinfo=datetime.timezone.utc), 2, 2.21, -73.977627, 40.778812, -73.950962, 40.784138, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'fHWD0lsjfgwKRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 16, tzinfo=datetime.timezone.utc), 5, 2.29, -74.005227, 40.740268, -73.976245, 40.74477, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '0c67mPq8F+3u4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 52, tzinfo=datetime.timezone.utc), 1, 2.18, -73.981735, 40.778112, -73.956, 40.765955, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'cwgzPvOkOXjRsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 49, tzinfo=datetime.timezone.utc), 5, 2.65, -73.994773, 40.731552, -73.966505, 40.753097, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'rmNttN02GK8aYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 51, tzinfo=datetime.timezone.utc), 2, 1.83, -73.974598, 40.761475, -73.98735, 40.73939, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'p5I7USIHqbg1rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 2, tzinfo=datetime.timezone.utc), 1, 2.27, 0.001023, 0.002848, 0.005538, 0.01067, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'drbgDVKzECyipA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 2, tzinfo=datetime.timezone.utc), 1, 1.58, -73.984185, 40.749243, -73.989423, 40.731708, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'D9aGS5bfSgCq8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 23, 51, tzinfo=datetime.timezone.utc), 1, 2.11, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'az+yqkE6uVlxww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 39, tzinfo=datetime.timezone.utc), 5, 2.27, -73.97217, 40.758615, -73.95084, 40.785717, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'OL5ptejW8Zp6hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 53, tzinfo=datetime.timezone.utc), 3, 1.79, -73.98433, 40.762335, -73.989033, 40.74302, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '7DYs53W1bfdcVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 40, tzinfo=datetime.timezone.utc), 1, 2.48, -73.980532, 40.760375, -73.956997, 40.77906, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'LsKTAnn5t6ZsTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 46, tzinfo=datetime.timezone.utc), 4, 1.71, -74.002813, 40.72526, -74.006502, 40.744213, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'bpPWPWI122+oJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 22, tzinfo=datetime.timezone.utc), 1, 2.41, -74.003443, 40.732615, -73.985303, 40.75777, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'm9VqczAbZjr26Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 30, tzinfo=datetime.timezone.utc), 2, 2.43, -73.970423, 40.689545, -73.995555, 40.678762, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '4D/Pv3k40jr1kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 49, tzinfo=datetime.timezone.utc), 1, 1.7, -74.00528, 40.71948, -73.98236, 40.721578, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '/oXBQOC3Kq3KeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 36, tzinfo=datetime.timezone.utc), 3, 2.28, -73.976092, 40.757147, -73.990475, 40.73697, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', '6s+quzxipwUqEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 1, tzinfo=datetime.timezone.utc), 5, 2.57, -73.964417, 40.767338, -73.973738, 40.791853, 'CASH', 8.1, 0.5, 0.0, 0.0, 8.6, '1705685115.6930006', 'oiZYvNLYkNmquQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 0, tzinfo=datetime.timezone.utc), 1, 2.08, -73.972953, 40.750017, -73.992972, 40.733292, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'lsNDt7cvjajQJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 39, tzinfo=datetime.timezone.utc), 1, 2.53, -74.005555, 40.74833, -73.976713, 40.763943, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '6FLn/yC4ykqbeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 50, tzinfo=datetime.timezone.utc), 1, 2.28, -73.973767, 40.756385, -73.953018, 40.781787, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'RNl7FyTb2UJ5Zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 12, tzinfo=datetime.timezone.utc), 2, 1.55, -73.991567, 40.749987, -73.980788, 40.763508, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'TV8x9J5ezX3kLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 42, tzinfo=datetime.timezone.utc), 3, 1.72, -73.968175, 40.762053, -73.982517, 40.774765, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'fGh8QvJHGRttJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 27, tzinfo=datetime.timezone.utc), 1, 1.08, -73.993538, 40.74969, -73.983302, 40.756343, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'qrZ4pejgvRheBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 14, tzinfo=datetime.timezone.utc), 1, 2.04, -73.956845, 40.770962, -73.970402, 40.789563, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'DoNe9a5o6nZLXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 6, tzinfo=datetime.timezone.utc), 1, 1.9, -73.991345, 40.74994, -73.975182, 40.733107, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'w7hYuj1lTo9LNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 57, tzinfo=datetime.timezone.utc), 4, 2.55, -73.999098, 40.726393, -73.982562, 40.755328, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'Sh0ESVy9t7csEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 46, tzinfo=datetime.timezone.utc), 1, 1.94, -73.997137, 40.725447, -73.984615, 40.74754, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'bCcrAHuFukvTYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 44, tzinfo=datetime.timezone.utc), 1, 2.15, -73.988982, 40.729952, -73.97454, 40.756485, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'U3aEWTrYSSnGIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 27, tzinfo=datetime.timezone.utc), 1, 1.29, -74.004295, 40.724013, -73.990427, 40.719482, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '9mB1GqKO61rWVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 27, tzinfo=datetime.timezone.utc), 1, 2.32, -74.007678, 40.742977, -73.978173, 40.748663, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '3x0yIRUwOzWRxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 36, tzinfo=datetime.timezone.utc), 4, 2.21, -73.983838, 40.776583, -73.954718, 40.78143, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'cxuFeOaJw3SUXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 28, tzinfo=datetime.timezone.utc), 1, 2.22, -74.005748, 40.745687, -73.9815, 40.763552, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'VSonnrFW7VMv5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 3, tzinfo=datetime.timezone.utc), 1, 1.11, -73.974135, 40.75069, -73.971888, 40.762377, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'KI8VMtD9T1h5CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 43, tzinfo=datetime.timezone.utc), 2, 2.37, -73.980037, 40.765947, -73.971312, 40.791982, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'gF3fIx/xBgWwFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 27, tzinfo=datetime.timezone.utc), 5, 2.14, -73.967608, 40.763023, -73.946082, 40.77729, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'ghxVhj7v1ardWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 50, tzinfo=datetime.timezone.utc), 1, 1.36, -73.941357, 40.751242, -73.940117, 40.751015, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '+CyfknUCFf+OPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.91, -73.987885, 40.755812, -73.977028, 40.776703, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'iPyhF/CKfceQVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 52, tzinfo=datetime.timezone.utc), 5, 2.28, -73.99146, 40.749905, -73.99288, 40.770002, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '7vYbxNcmf5aPkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 22, tzinfo=datetime.timezone.utc), 1, 2.17, -74.005543, 40.750925, -73.979647, 40.752322, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '9xCZAXl0oadXjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 43, tzinfo=datetime.timezone.utc), 1, 1.77, -73.982407, 40.774798, -73.960538, 40.770403, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'oieLyKBN8Jzqjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 53, tzinfo=datetime.timezone.utc), 1, 1.72, -73.958447, 40.775617, -73.980343, 40.777148, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'SDReuFPG/QQjFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 35, tzinfo=datetime.timezone.utc), 1, 0.72, -73.981473, 40.74988, -73.983792, 40.757118, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'udJ5UKety0d1AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 5, tzinfo=datetime.timezone.utc), 1, 2.29, -73.99249, 40.694152, -74.00349, 40.715687, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'S86EY3C1m6VLvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 51, tzinfo=datetime.timezone.utc), 1, 1.92, -73.977197, 40.759075, -74.011385, 40.736645, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'CbsZsE8vzLLSNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 3, tzinfo=datetime.timezone.utc), 1, 1.62, -73.855805, 40.796535, -73.852957, 40.790327, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'vF44dwAUbDP2Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 38, tzinfo=datetime.timezone.utc), 2, 1.7, -73.984443, 40.745683, -74.00584, 40.740132, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '94ekcWvQfkLv5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 31, tzinfo=datetime.timezone.utc), 3, 2.43, -73.980607, 40.783633, -73.960022, 40.81314, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'xnRBuqu3tGWSTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 21, tzinfo=datetime.timezone.utc), 1, 1.79, -73.987028, 40.762627, -73.964638, 40.770262, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'NC1agRO7YLsGDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 21, tzinfo=datetime.timezone.utc), 2, 1.34, -73.983723, 40.761103, -73.967043, 40.766532, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'zeQ9Hk1zPdFVZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 31, tzinfo=datetime.timezone.utc), 5, 1.7, -73.975628, 40.755137, -73.974678, 40.735375, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'gSqLEqWvf2P4GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 28, tzinfo=datetime.timezone.utc), 1, 1.78, -73.982207, 40.767402, -73.974058, 40.791292, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '9/6w2QOIh1afkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 39, tzinfo=datetime.timezone.utc), 1, 1.7, -73.982053, 40.76253, -73.985458, 40.74443, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '4sXRnW5OulODyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 33, tzinfo=datetime.timezone.utc), 5, 2.0, -73.974485, 40.78313, -73.992043, 40.757975, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '0iZO5ityEGcCrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 34, tzinfo=datetime.timezone.utc), 1, 2.3, -73.980433, 40.742483, -73.959382, 40.77141, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '5USQZJIEIUMqyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 26, tzinfo=datetime.timezone.utc), 1, 1.67, -73.981015, 40.75934, -73.965372, 40.774385, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'e1LHFWYwlQzZOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 32, tzinfo=datetime.timezone.utc), 1, 0.94, -73.96203, 40.770588, -73.969977, 40.759228, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'w3tnSXXmcSQWBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 41, tzinfo=datetime.timezone.utc), 1, 1.01, -73.992138, 40.748915, -73.98752, 40.756163, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'I+BCTka53IU8rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 56, tzinfo=datetime.timezone.utc), 1, 0.89, -73.992067, 40.747817, -73.990997, 40.757715, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '6LCU7ShbIexcSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 48, tzinfo=datetime.timezone.utc), 5, 1.1, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'iXkRClIuDEe/0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 25, tzinfo=datetime.timezone.utc), 1, 1.36, -73.96811, 40.762038, -73.972012, 40.74686, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'p+FiRJnwspJKjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 52, tzinfo=datetime.timezone.utc), 1, 1.47, -73.97812, 40.741538, -74.000808, 40.746307, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'BB55aomBqtcJCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 40, tzinfo=datetime.timezone.utc), 5, 1.86, -73.981942, 40.767295, -73.959847, 40.775355, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'WRNBl21QNDQYrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 13, tzinfo=datetime.timezone.utc), 1, 1.88, -73.978307, 40.753263, -74.00008, 40.743315, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', '5jEaKq/Z83G8fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 58, tzinfo=datetime.timezone.utc), 1, 2.01, -74.008005, 40.74029, -73.996937, 40.718318, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'p4rhm/WuWIFF/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 50, tzinfo=datetime.timezone.utc), 5, 1.98, -73.983485, 40.738473, -74.005615, 40.725683, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'Lovi4G++p5uf6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 57, tzinfo=datetime.timezone.utc), 5, 1.82, -73.976658, 40.775343, -73.978395, 40.757493, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'jbb5q+RwR0hVlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 18, tzinfo=datetime.timezone.utc), 1, 1.71, -73.958823, 40.775742, -73.981143, 40.78687, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'R24le39Z6XuXPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 7, tzinfo=datetime.timezone.utc), 1, 1.43, -73.971083, 40.787835, -73.953127, 40.779802, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'umUkmovLmZqz4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 27, tzinfo=datetime.timezone.utc), 2, 1.13, -73.982235, 40.769538, -73.977217, 40.758473, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'N0pL2WNoT6qopQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 43, tzinfo=datetime.timezone.utc), 2, 1.82, -73.977132, 40.76372, -73.968798, 40.786033, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'ynGco9hd8WVCng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 47, tzinfo=datetime.timezone.utc), 4, 0.88, -73.96408, 40.767155, -73.975855, 40.764068, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'ntn2gdrf0LA2qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 8, tzinfo=datetime.timezone.utc), 3, 2.04, -73.989387, 40.757632, -73.9691, 40.774232, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'U2NmBLTfbbYNPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 52, tzinfo=datetime.timezone.utc), 1, 2.7, -73.956172, 40.81894, -73.973375, 40.79498, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'REa6R2C0vocORg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 6, tzinfo=datetime.timezone.utc), 1, 1.68, -73.994642, 40.74027, -73.99178, 40.758935, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'T7w+uax083VaYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 8, tzinfo=datetime.timezone.utc), 1, 1.63, -73.945918, 40.753422, -73.9458, 40.747282, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'g9XpGlIGEU0pqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 58, tzinfo=datetime.timezone.utc), 1, 2.36, -73.988955, 40.75863, -73.98716, 40.736507, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'zK26iSUhaLdMUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 39, tzinfo=datetime.timezone.utc), 3, 1.91, -74.000218, 40.742888, -73.976457, 40.752543, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'BWPai9rFJrxFMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 14, tzinfo=datetime.timezone.utc), 2, 1.91, -73.947637, 40.790398, -73.968003, 40.799938, 'CASH', 8.1, 1.0, 0.0, 0.0, 9.1, '1705685115.6930006', 'reuupMfBdp0DkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 31, tzinfo=datetime.timezone.utc), 2, 2.16, -73.969535, 40.7641, -73.950163, 40.784372, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'ALWUci9cD+Zknw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 0, tzinfo=datetime.timezone.utc), 1, 2.15, -73.978802, 40.757115, -73.953957, 40.76464, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '/sW8QZjMJj9gAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 29, tzinfo=datetime.timezone.utc), 1, 2.61, -73.973393, 40.79439, -73.976302, 40.761845, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'uUh7NtejRq/5aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 57, tzinfo=datetime.timezone.utc), 1, 3.1, -73.978183, 40.737302, -73.961652, 40.760415, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '3i8UozCLd/Ui1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 0, tzinfo=datetime.timezone.utc), 5, 2.25, -73.98584, 40.758707, -73.979893, 40.739213, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '90hLT1rgh1wmMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 18, tzinfo=datetime.timezone.utc), 1, 2.54, -73.954962, 40.769195, -73.967237, 40.793527, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'rnGQrX67IPfEkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 15, tzinfo=datetime.timezone.utc), 1, 2.73, -73.9888, 40.75562, -74.001385, 40.721717, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'lmzh9ihdItomCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 16, tzinfo=datetime.timezone.utc), 1, 2.33, -73.95145, 40.769833, -73.976947, 40.758975, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'z5gtvBVTjSKeOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 32, 14, tzinfo=datetime.timezone.utc), 1, 2.8, -73.962068, 40.805389, -73.955168, 40.775986, 'Cash', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '1TbCrwRB2ftqPQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 39, tzinfo=datetime.timezone.utc), 1, 2.82, -74.00333, 40.713683, -74.004578, 40.74707, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'S7jqr6SHyC0TRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 2, tzinfo=datetime.timezone.utc), 1, 2.19, -73.985643, 40.735437, -73.99073, 40.757165, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'HseQZrWLhLfNUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 45, tzinfo=datetime.timezone.utc), 1, 3.11, -73.989623, 40.741288, -74.011113, 40.709843, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '0Xr/sfbvN4aIVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 30, tzinfo=datetime.timezone.utc), 1, 3.11, -74.004413, 40.72217, -73.981155, 40.75971, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'Tu31brx0O4utvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 18, tzinfo=datetime.timezone.utc), 1, 1.08, -73.969823, 40.758533, -73.978458, 40.750693, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'h9BC4PYMo03eNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 4, tzinfo=datetime.timezone.utc), 1, 2.74, -74.000998, 40.729137, -73.972917, 40.753082, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'LSya7Ntv0PDqIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 6, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 7, 10, tzinfo=datetime.timezone.utc), 1, 3.37, -73.971227, 40.792633, -73.997273, 40.752872, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '3a9T745fGFF6Dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 10, tzinfo=datetime.timezone.utc), 1, 2.39, -74.002938, 40.739232, -73.972428, 40.746093, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'lLapwm+kg0LATQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 6, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 6, 20, tzinfo=datetime.timezone.utc), 5, 3.34, -73.990865, 40.755798, -73.950243, 40.772178, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'C3VNUfst8dyQIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 40, tzinfo=datetime.timezone.utc), 1, 1.46, -73.999322, 40.757237, -73.978385, 40.752282, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '7TNfOaE9hjQBzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 0, tzinfo=datetime.timezone.utc), 1, 2.5, -73.95825, 40.781455, -73.985752, 40.780718, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'yckVx6C/32Q8mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 52, tzinfo=datetime.timezone.utc), 5, 2.37, -73.978418, 40.760742, -73.979028, 40.789255, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '3jDbkCdxMcIG8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 16, tzinfo=datetime.timezone.utc), 1, 2.05, -73.953423, 40.786753, -73.971893, 40.765673, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'ryiTkvq/Xavyvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 24, tzinfo=datetime.timezone.utc), 5, 2.49, -73.98691, 40.739383, -73.9605, 40.763945, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'KqNbgvHGTLPeMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 31, tzinfo=datetime.timezone.utc), 1, 1.85, -73.974263, 40.736968, -73.978708, 40.75623, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'iKfEO9fXJ+VefA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 7, tzinfo=datetime.timezone.utc), 2, 3.32, -74.01139, 40.709805, -73.985532, 40.752775, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '56tN2CeDxibefg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 41, tzinfo=datetime.timezone.utc), 1, 2.41, -73.993333, 40.757442, -74.006282, 40.723443, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'Bc3ddZpkfHPS0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 19, tzinfo=datetime.timezone.utc), 2, 2.72, -73.973245, 40.754268, -73.955072, 40.777085, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'U37bV6/Vkk8bGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 5, tzinfo=datetime.timezone.utc), 1, 1.45, -73.972578, 40.758365, -73.98854, 40.74878, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'mOP3nc1Kxq7Zmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 56, tzinfo=datetime.timezone.utc), 5, 2.73, -74.002652, 40.72391, -73.985212, 40.755785, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'o5mWlmAzNiRGYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 55, tzinfo=datetime.timezone.utc), 5, 1.23, -73.998568, 40.717032, -73.989648, 40.736912, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'zBxKy0Qaav4PgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 11, tzinfo=datetime.timezone.utc), 1, 2.25, -73.991235, 40.750257, -73.997842, 40.724553, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '9Nq59A9Hulr4cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 58, tzinfo=datetime.timezone.utc), 1, 1.75, -73.978568, 40.744867, -73.982157, 40.76244, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'shTPUDFkc4iHhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 50, tzinfo=datetime.timezone.utc), 1, 2.3, -74.006192, 40.751088, -73.995117, 40.727648, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'mxi94iMQGNQidw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 0, tzinfo=datetime.timezone.utc), 3, 2.28, -73.96487, 40.759837, -73.990615, 40.746007, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'OJrbdoWm/mo0Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 27, tzinfo=datetime.timezone.utc), 1, 1.89, -73.993467, 40.74973, -73.972642, 40.758493, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'pDDYct5RURtibQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 26, tzinfo=datetime.timezone.utc), 2, 0.67, -73.989717, 40.752195, -73.977962, 40.747388, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'NAnFb/iFMSPofg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 52, tzinfo=datetime.timezone.utc), 1, 3.14, -74.01217, 40.709347, -73.985435, 40.74691, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '0USqbYznQEBkPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 10, tzinfo=datetime.timezone.utc), 1, 3.05, -73.984, 40.761393, -73.984772, 40.728982, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'kkm0kvJSlitaMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 55, tzinfo=datetime.timezone.utc), 1, 2.87, -73.992127, 40.750198, -74.003673, 40.713272, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'YJbCVIu9PCGmOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 15, tzinfo=datetime.timezone.utc), 1, 2.62, -73.977803, 40.764738, -73.98453, 40.734655, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'KzahnqgRmxLsRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 7, tzinfo=datetime.timezone.utc), 1, 2.73, -73.996628, 40.74821, -73.966423, 40.768758, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'Dio8L6ln/xmFCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 10, 21, tzinfo=datetime.timezone.utc), 1, 2.46, -73.999607, 40.743618, -73.983558, 40.767377, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'f/rZAjl6Xz/jFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 43, tzinfo=datetime.timezone.utc), 1, 3.36, -73.991277, 40.750395, -73.958442, 40.77875, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'EcsoTM5D08jfdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 44, tzinfo=datetime.timezone.utc), 1, 1.97, -73.954105, 40.766782, -73.969382, 40.785457, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'J5+CDdTOvujmSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 46, tzinfo=datetime.timezone.utc), 1, 2.67, -73.97912, 40.761815, -73.95128, 40.785908, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'iik5A7derUMw6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 46, tzinfo=datetime.timezone.utc), 1, 3.74, -73.980543, 40.734062, -73.945433, 40.778297, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'cBmz8cyXhI4mEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 5, tzinfo=datetime.timezone.utc), 1, 2.63, -73.977803, 40.749122, -74.006837, 40.728665, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'CDKpAuQ4oxdjNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 23, tzinfo=datetime.timezone.utc), 1, 1.9, -73.968938, 40.756688, -73.962383, 40.77958, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'P2NS+PgM7TzaSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 34, tzinfo=datetime.timezone.utc), 1, 2.13, -73.97858, 40.749842, -73.982218, 40.768375, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'CKizO5rVU6/+Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), 6, 1.79, -73.975542, 40.765363, -73.98447, 40.747548, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'yOEXO4xnci6YBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 43, tzinfo=datetime.timezone.utc), 5, 2.83, -73.994197, 40.766152, -74.006653, 40.735517, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '9lVKpuLUy7tqfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 4, tzinfo=datetime.timezone.utc), 1, 2.62, -73.959223, 40.780332, -73.971552, 40.750712, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '8n0lBLpQ6wybkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 33, tzinfo=datetime.timezone.utc), 1, 3.05, -73.975655, 40.74485, -73.993482, 40.724577, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'KF1TBGF+7KEipg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 10, tzinfo=datetime.timezone.utc), 1, 3.21, -73.956058, 40.771865, -73.97714, 40.73674, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'rAhlg6AsCoawXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 3, tzinfo=datetime.timezone.utc), 1, 3.15, -74.016083, 40.70654, -74.000443, 40.742115, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'hElTSYbPwMWE2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 5, tzinfo=datetime.timezone.utc), 3, 3.27, -73.993722, 40.732157, -73.960755, 40.762335, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '7xVqIXfor+MpGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 14, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 32, 41, tzinfo=datetime.timezone.utc), 1, 2.5, -73.965068, 40.775096, -73.989128, 40.744498, 'Cash', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'HZyseXJhYZTXqA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 41, tzinfo=datetime.timezone.utc), 2, 2.7, -74.00617, 40.75002, -73.974673, 40.762535, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '88FD5ft+MxNelg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 18, tzinfo=datetime.timezone.utc), 1, 2.38, -73.955487, 40.779747, -73.9845, 40.76978, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'KWlNbdsx5QtEqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 26, tzinfo=datetime.timezone.utc), 1, 2.06, -73.976523, 40.788463, -73.974847, 40.762815, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'DjOXC3en8gV48Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 37, tzinfo=datetime.timezone.utc), 1, 3.37, -73.960858, 40.71113, -73.979538, 40.73722, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'DvKg59Y644reVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 52, tzinfo=datetime.timezone.utc), 1, 3.09, -74.00682, 40.732857, -74.008123, 40.703453, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'BqbOE6xpQvWZLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 15, tzinfo=datetime.timezone.utc), 2, 1.71, -73.98234, 40.77705, -73.960305, 40.775972, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '/L9KFhu26ukgBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 30, tzinfo=datetime.timezone.utc), 1, 2.53, -73.98465, 40.724512, -73.991495, 40.748893, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'cSDhG40jTLwH0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 13, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 35, 10, tzinfo=datetime.timezone.utc), 1, 2.3, -73.975635, 40.763636, -73.997073, 40.74653, 'Cash', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'hLZKTJIXWCmnkQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 4, tzinfo=datetime.timezone.utc), 1, 1.64, -73.994635, 40.718947, -74.012442, 40.707742, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '6ID5HHtwP3kNuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 17, tzinfo=datetime.timezone.utc), 3, 2.6, -73.985012, 40.760212, -73.993357, 40.736152, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'z6JM0+LNy1uCPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 56, tzinfo=datetime.timezone.utc), 1, 2.63, -73.980138, 40.770495, -73.947417, 40.775922, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '9Re+ipXEgpBsEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 30, tzinfo=datetime.timezone.utc), 1, 1.93, -73.988028, 40.749573, -73.985382, 40.763715, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'uSJr1lyBFP1peg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 54, tzinfo=datetime.timezone.utc), 1, 2.11, -73.972425, 40.781192, -73.973385, 40.756252, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'b6vXZ2uuGVPEiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 59, tzinfo=datetime.timezone.utc), 1, 3.06, -73.962168, 40.805463, -73.987245, 40.770263, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '/npSEtdkXhmWWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 10, tzinfo=datetime.timezone.utc), 1, 2.99, -73.975422, 40.782553, -73.9797, 40.749688, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'OrJobmHS3lhRlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 14, tzinfo=datetime.timezone.utc), 2, 3.07, -73.97379, 40.755267, -73.997665, 40.726052, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'DpZhXE/MdrxHBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 21, tzinfo=datetime.timezone.utc), 1, 2.4, -73.970507, 40.796625, -73.939232, 40.790548, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'm23JPi3P0kCbhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 21, tzinfo=datetime.timezone.utc), 1, 1.98, -73.974023, 40.76325, -73.99261, 40.747982, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'ADYGcmVY4eeh/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 33, tzinfo=datetime.timezone.utc), 2, 1.27, -73.983947, 40.765398, -73.997898, 40.761588, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'C/9hXttrc3VVLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 54, tzinfo=datetime.timezone.utc), 1, 2.93, -74.009178, 40.716468, -73.979207, 40.736103, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'p3jOH0epJPQJyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 47, tzinfo=datetime.timezone.utc), 1, 2.68, -73.97736, 40.758555, -74.005735, 40.738853, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'bTM+dHH4tqZXwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 14, tzinfo=datetime.timezone.utc), 1, 2.28, -73.974505, 40.762863, -73.946372, 40.772892, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'DAVQaKRR5sIOzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 59, tzinfo=datetime.timezone.utc), 5, 0.08, 0.0, 0.0, -74.002908, 40.749257, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'KKXOj9GUndcOXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 14, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 32, 28, tzinfo=datetime.timezone.utc), 1, 2.2, -73.992368, 40.743716, -73.991589, 40.723738, 'Cash', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'ZWm++QMmb98rJg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 39, tzinfo=datetime.timezone.utc), 1, 2.47, -73.97606, 40.750335, -73.950768, 40.77572, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'mP62T9DKPf80ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.15, -73.985502, 40.758887, -74.000403, 40.758135, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '2JoDZntGypvvyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 6, tzinfo=datetime.timezone.utc), 1, 1.17, -73.985145, 40.759798, -73.994537, 40.743677, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '5bgjeVih4Wufjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 54, tzinfo=datetime.timezone.utc), 5, 1.92, -73.970997, 40.763295, -73.958655, 40.78339, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'oFSI7C3uCH2Ihw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 53, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989968, 40.752053, -73.978202, 40.754102, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '4hUTcXYnHglgJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 36, tzinfo=datetime.timezone.utc), 1, 1.72, -73.959765, 40.77378, -73.977788, 40.757917, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'aSICSXwopfmW1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 43, tzinfo=datetime.timezone.utc), 1, 2.95, -73.976242, 40.763843, -73.964622, 40.778723, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'e0ohMmfWMrlTQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 15, tzinfo=datetime.timezone.utc), 1, 2.72, -74.005015, 40.719063, -73.981532, 40.746652, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'mEL96S6Gy+MTSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 58, tzinfo=datetime.timezone.utc), 1, 2.83, -73.959467, 40.779283, -73.96058, 40.807542, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '83DNhXS7xWztkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 3, tzinfo=datetime.timezone.utc), 3, 1.75, -73.958618, 40.772675, -73.973603, 40.751558, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '3tYJok51ugDIKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 44, tzinfo=datetime.timezone.utc), 1, 2.46, -73.985968, 40.73928, -73.969235, 40.766763, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', '6VLszjXX+9b8XA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 22, tzinfo=datetime.timezone.utc), 5, 2.68, -73.991742, 40.7503, -73.962803, 40.772275, 'CASH', 10.1, 0.0, 0.0, 0.0, 10.1, '1705685115.6930006', 'l04nLWAeQ7qn6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 18, tzinfo=datetime.timezone.utc), 1, 2.83, -73.964637, 40.76032, -73.998107, 40.745173, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'jMi9hPQx028ZXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 48, tzinfo=datetime.timezone.utc), 3, 2.94, -73.96388, 40.757182, -73.993762, 40.720868, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '8BEtgHP++RaTvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 20, tzinfo=datetime.timezone.utc), 5, 3.18, -73.996868, 40.720553, -73.98889, 40.75506, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'mBOvxt2R9wA8vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 19, tzinfo=datetime.timezone.utc), 3, 3.07, -73.98504, 40.764268, -73.956822, 40.802383, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'cDgtKI/Oo3xn7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 20, tzinfo=datetime.timezone.utc), 5, 3.48, -73.973995, 40.752835, -73.92624, 40.74194, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'oTw+h2rtJxoXbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 5, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 5, 12, tzinfo=datetime.timezone.utc), 1, 2.63, -73.946002, 40.745728, -73.9068, 40.764557, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'AsGHZTPHsDMuBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 35, tzinfo=datetime.timezone.utc), 1, 2.98, -73.954323, 40.764088, -73.967293, 40.792837, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'QqJRwBgJ3PgLBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 6, tzinfo=datetime.timezone.utc), 1, 2.96, -73.98212, 40.746087, -73.977948, 40.777892, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'VaRE9NBXuZNazg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 55, tzinfo=datetime.timezone.utc), 1, 2.88, -73.986365, 40.736942, -73.960895, 40.764887, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '0bIWmRB+qZf16Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 51, tzinfo=datetime.timezone.utc), 2, 3.5, -74.004613, 40.742143, -73.976137, 40.782155, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '03knWyWIgPuYNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 24, tzinfo=datetime.timezone.utc), 1, 2.9, -73.989512, 40.729927, -73.957427, 40.711665, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'l5dzbz7+C8qdrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 37, tzinfo=datetime.timezone.utc), 4, 2.5, -74.000417, 40.721243, -73.98229, 40.749408, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'mRpWCe2C2zhn6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 40, tzinfo=datetime.timezone.utc), 5, 2.64, -73.982067, 40.750745, -73.98343, 40.777365, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'RrYHrdtOikBQkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 21, tzinfo=datetime.timezone.utc), 2, 2.95, -73.987187, 40.718403, -73.981778, 40.751865, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'skIV20Zhvdmp/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 39, tzinfo=datetime.timezone.utc), 1, 2.88, -73.979197, 40.785082, -73.961043, 40.75774, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'wfUR3JP3fmHaTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 25, tzinfo=datetime.timezone.utc), 1, 2.92, -74.008913, 40.711438, -73.985673, 40.738993, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '6G0iBHMy21PNNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 12, tzinfo=datetime.timezone.utc), 1, 3.31, -73.97081, 40.793355, -73.97798, 40.759737, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'Tpe9s5CdLWuuZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 45, tzinfo=datetime.timezone.utc), 1, 2.94, -73.95284, 40.776352, -73.988853, 40.763573, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'NN7k29k7S2uvUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 58, tzinfo=datetime.timezone.utc), 5, 2.72, -73.999485, 40.731388, -74.007392, 40.748298, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '/rBWfvVuoh6bQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 56, tzinfo=datetime.timezone.utc), 3, 3.17, -73.988338, 40.738457, -73.961927, 40.772137, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'LJKT4J2+COVkLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 13, tzinfo=datetime.timezone.utc), 1, 2.96, -73.981152, 40.744275, -74.008732, 40.71996, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'OJ8IbMCCncUk1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 5, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 5, 52, tzinfo=datetime.timezone.utc), 3, 3.81, -73.953717, 40.785128, -73.99404, 40.750112, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'yPSW33cpLQscvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 14, tzinfo=datetime.timezone.utc), 1, 3.27, -73.986245, 40.744037, -73.952627, 40.772468, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'DJuHEFkM5DfEbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 22, tzinfo=datetime.timezone.utc), 5, 3.19, -73.952787, 40.776583, -73.93547, 40.752242, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'yYhualmNa1B4iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 48, tzinfo=datetime.timezone.utc), 2, 2.71, -73.994992, 40.731883, -73.972367, 40.758993, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 's7FDRMCottNqRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 51, tzinfo=datetime.timezone.utc), 1, 2.81, -73.980083, 40.726898, -73.97603, 40.757898, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'HoaSV2GFk0tFBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 15, tzinfo=datetime.timezone.utc), 1, 2.87, -74.003893, 40.751548, -73.98355, 40.726152, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '3L2AkbMQfpxG2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 9, tzinfo=datetime.timezone.utc), 1, 3.41, -73.988145, 40.737792, -73.989163, 40.77431, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'Rm8eJPU1MimSpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 9, tzinfo=datetime.timezone.utc), 2, 2.73, -73.982788, 40.762978, -73.977498, 40.792172, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'Dsut3MeK+R2+RQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 36, tzinfo=datetime.timezone.utc), 1, 2.83, -73.994675, 40.750597, -74.004262, 40.721823, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '5CBaW9yAK8g2Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 30, tzinfo=datetime.timezone.utc), 1, 3.44, -73.992022, 40.714935, -73.961432, 40.693922, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'fAvJKAcDISERug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 37, tzinfo=datetime.timezone.utc), 1, 2.74, -73.990467, 40.771775, -73.95466, 40.769842, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'IgcL0/nJde229Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 0, tzinfo=datetime.timezone.utc), 4, 2.68, -73.999048, 40.744405, -73.967883, 40.761277, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'CcirCOwOJQaNJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 46, tzinfo=datetime.timezone.utc), 3, 2.99, -73.989923, 40.73925, -73.989193, 40.74464, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'QD+2DnchaptR5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 19, tzinfo=datetime.timezone.utc), 1, 2.56, -73.932322, 40.753635, -73.9253, 40.752515, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'qm1QfGIKJa1VTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 52, tzinfo=datetime.timezone.utc), 2, 2.65, -73.967815, 40.76271, -73.989785, 40.730232, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'JjXxEdoO3Xw+xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 26, tzinfo=datetime.timezone.utc), 5, 3.48, -73.951843, 40.769423, -73.984655, 40.74257, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 's78r1XHN2PZ3tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 26, tzinfo=datetime.timezone.utc), 1, 2.87, -73.964907, 40.764205, -73.97535, 40.733017, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'QQud33lZqfOjBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 17, tzinfo=datetime.timezone.utc), 2, 3.22, -73.958792, 40.714883, -74.004145, 40.721822, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'o90cwke8AUxqug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 3, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 3, 27, tzinfo=datetime.timezone.utc), 1, 3.49, -73.987322, 40.724845, -73.98991, 40.76128, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'yp2BCS5v8w/8Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 59, tzinfo=datetime.timezone.utc), 2, 3.26, -73.991578, 40.749988, -73.954877, 40.773375, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'mSmO1Lsr1ZW1pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 23, tzinfo=datetime.timezone.utc), 5, 3.05, -73.974898, 40.761605, -74.007187, 40.730235, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '/mWdemwvzvG6Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 48, tzinfo=datetime.timezone.utc), 4, 1.75, -74.006283, 40.739737, -74.002968, 40.724223, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'qVh1gH4HpzKfTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 46, tzinfo=datetime.timezone.utc), 1, 2.97, -73.9752, 40.756575, -73.995362, 40.723265, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'v/FtIwbbOK3Zug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 52, tzinfo=datetime.timezone.utc), 1, 2.34, -73.978092, 40.745917, -74.004432, 40.732103, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'sEQNzur2yfmS/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 5, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 5, 13, tzinfo=datetime.timezone.utc), 1, 3.55, -73.947978, 40.783142, -73.988088, 40.764528, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'sFs0m+frcGtWHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 40, tzinfo=datetime.timezone.utc), 1, 2.51, -73.966593, 40.764848, -73.975585, 40.781862, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'dy3BmO+o2hWrMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 23, 8, tzinfo=datetime.timezone.utc), 2, 3.05, -73.899117, 40.734465, -73.90558, 40.744287, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '8rdyvIWGctzHlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 20, tzinfo=datetime.timezone.utc), 1, 2.03, -73.982453, 40.727672, -74.006098, 40.743827, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'XlcLpBPEAwHX8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 47, tzinfo=datetime.timezone.utc), 1, 3.11, -73.977853, 40.768098, -73.998473, 40.745815, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'hE1PPkLvIBXDbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 46, tzinfo=datetime.timezone.utc), 1, 3.2, -73.982448, 40.772533, -73.966683, 40.80742, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '3/ll6RvrvI07PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 22, tzinfo=datetime.timezone.utc), 5, 2.67, -74.002187, 40.745433, -73.972082, 40.749668, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'RpTSdgk31mmTng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 3, tzinfo=datetime.timezone.utc), 1, 2.55, -73.844172, 40.721852, -73.882758, 40.73687, 'Credit', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'QGt5lxAVHf0fPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 7, tzinfo=datetime.timezone.utc), 3, 3.4, -73.962265, 40.804992, -73.987958, 40.763038, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '/78qvdYTy52xGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 7, tzinfo=datetime.timezone.utc), 1, 3.19, -73.99748, 40.721013, -73.974227, 40.761403, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'ekVgkS27aERWpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 11, tzinfo=datetime.timezone.utc), 1, 3.53, -73.874438, 40.774063, -73.920115, 40.76174, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', '/cj56ZSoD60YXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 4, tzinfo=datetime.timezone.utc), 3, 3.59, -73.993025, 40.74057, -73.956215, 40.774585, 'CASH', 10.1, 0.5, 0.0, 0.0, 10.6, '1705685115.6930006', 'M1JtuzlzLcKYTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 39, tzinfo=datetime.timezone.utc), 2, 3.3, -73.954365, 40.766048, -73.987648, 40.737528, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'L9kzwdGsIPCnRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 23, tzinfo=datetime.timezone.utc), 5, 2.4, -73.971268, 40.800288, -73.982842, 40.773353, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '2KPxUQqLKnIH1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.47, -73.963177, 40.774265, -73.978837, 40.763553, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'KYPSbrO/p1melA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 2, tzinfo=datetime.timezone.utc), 2, 2.95, -74.015318, 40.714303, -73.985315, 40.713033, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'P2+z66dm15C4JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 51, tzinfo=datetime.timezone.utc), 5, 2.05, -73.98237, 40.756845, -73.977017, 40.779207, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '7hhSinRRkGzcRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 23, tzinfo=datetime.timezone.utc), 1, 1.28, -73.96924, 40.763688, -73.979323, 40.751217, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'hGnAp2h8ER3WiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 15, tzinfo=datetime.timezone.utc), 1, 2.85, -73.988042, 40.750735, -73.990155, 40.723292, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'AVwXzcurkw6c4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 3, tzinfo=datetime.timezone.utc), 1, 1.83, -73.984323, 40.743123, -73.973302, 40.764968, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'JVxqGxlq/xCwUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 33, tzinfo=datetime.timezone.utc), 1, 0.13, -73.971537, 40.783665, -73.97379, 40.784597, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'O1SM3OR54HOjVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 11, tzinfo=datetime.timezone.utc), 1, 2.63, -73.979545, 40.786605, -73.973763, 40.76025, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '4kSTwP2HtUZAlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 45, tzinfo=datetime.timezone.utc), 1, 2.19, -73.978792, 40.748227, -74.005175, 40.740692, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '5DzJqQn5SShWrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 52, tzinfo=datetime.timezone.utc), 1, 0.95, -73.989465, 40.756782, -73.979315, 40.762802, 'CASH', 8.1, 0.5, 0.0, 2.5, 11.1, '1705685115.6930006', 'dHGvwjDT2Vbekw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 7, tzinfo=datetime.timezone.utc), 5, 2.82, -73.964393, 40.76482, -73.9671, 40.791838, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'yDeyCcL6aA7JtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 32, tzinfo=datetime.timezone.utc), 1, 2.35, -74.005495, 40.750977, -73.978488, 40.76657, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'O4ApBwkZHmdgrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 50, tzinfo=datetime.timezone.utc), 1, 2.68, -73.981, 40.759458, -73.951512, 40.77949, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'Pik+orFzhMFc/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 24, tzinfo=datetime.timezone.utc), 1, 2.09, -73.978313, 40.766558, -73.984608, 40.742472, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'moytUI5gL2cuAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 36, tzinfo=datetime.timezone.utc), 1, 2.86, -73.954562, 40.76403, -73.938698, 40.7942, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'iteIecZIRkNlug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 58, tzinfo=datetime.timezone.utc), 1, 2.5, -73.955685, 40.768462, -73.982442, 40.774208, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'Wuaw4fBs0mm+Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 59, tzinfo=datetime.timezone.utc), 1, 2.26, -73.986238, 40.76816, -73.993622, 40.7424, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'dZ5cS0a066zxYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 45, tzinfo=datetime.timezone.utc), 1, 2.42, -73.992817, 40.753752, -73.977372, 40.784382, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'XYMV0DpZKF7xLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 9, tzinfo=datetime.timezone.utc), 1, 2.17, -73.987467, 40.719862, -73.992915, 40.742643, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'bgfubMaDFOHf7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 26, tzinfo=datetime.timezone.utc), 1, 2.09, -73.976467, 40.76393, -73.973428, 40.74362, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'Vyp2Rkf+cRuXhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 33, tzinfo=datetime.timezone.utc), 1, 2.37, -74.007262, 40.742695, -73.978352, 40.752405, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'foCxDVWdFYHpyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 6, tzinfo=datetime.timezone.utc), 1, 2.26, -73.987598, 40.744832, -73.988288, 40.720165, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'P52GMrGs746tWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 26, tzinfo=datetime.timezone.utc), 5, 2.75, -74.000498, 40.746885, -73.982928, 40.771922, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'fpTjLCmx5/mY2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 0, tzinfo=datetime.timezone.utc), 1, 3.58, -73.953023, 40.808373, -73.972267, 40.76545, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'w53fuaiwi/eqTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 59, tzinfo=datetime.timezone.utc), 1, 2.4, -73.978137, 40.75047, -74.004747, 40.730105, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'oqy6FcWp1ZDsXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 48, tzinfo=datetime.timezone.utc), 2, 3.16, -73.967522, 40.771905, -73.934053, 40.79776, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'Fwfp0mLsh6+4HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 57, tzinfo=datetime.timezone.utc), 1, 2.87, -73.983015, 40.74783, -73.959178, 40.783287, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'mqUri/R+xPwBWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 54, tzinfo=datetime.timezone.utc), 1, 1.89, -73.985945, 40.740615, -73.973333, 40.76284, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'Uu8YZ9c+e7P+xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 31, tzinfo=datetime.timezone.utc), 3, 0.82, -73.975128, 40.750367, -73.980508, 40.75906, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'bR9Y4QmJIkHSyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 58, tzinfo=datetime.timezone.utc), 3, 2.51, -73.998427, 40.760782, -74.003322, 40.731757, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '7+dTi7tE6dCo0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 6, tzinfo=datetime.timezone.utc), 1, 3.01, -73.97502, 40.741715, -73.950933, 40.777035, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', 'MhaLpgszDJlmIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 19, tzinfo=datetime.timezone.utc), 5, 2.62, -73.980033, 40.760612, -73.97245, 40.793635, 'CASH', 10.1, 1.0, 0.0, 0.0, 11.1, '1705685115.6930006', '9sQ4zmlWsy0XYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 18, tzinfo=datetime.timezone.utc), 1, 3.3, -73.985023, 40.746387, -73.952852, 40.772355, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'r7gvLe4O4Xw95Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 15, tzinfo=datetime.timezone.utc), 2, 3.77, -73.957322, 40.770232, -73.989865, 40.723202, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'bZxfJv8gjKRntw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 32, tzinfo=datetime.timezone.utc), 2, 4.15, -73.954392, 40.76383, -73.980058, 40.714052, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'QVf/fX4ADoSBLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 51, tzinfo=datetime.timezone.utc), 1, 2.87, -73.952145, 40.772848, -73.986633, 40.771168, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'pPuuxKNLtfJI/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 0, tzinfo=datetime.timezone.utc), 1, 2.63, -73.990835, 40.750805, -73.966705, 40.767015, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'PrSciyz6k7dmVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 10, tzinfo=datetime.timezone.utc), 1, 2.44, -74.012142, 40.702427, -74.002215, 40.722522, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', '3qm+0mY6L/UtAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 18, tzinfo=datetime.timezone.utc), 5, 2.45, -73.963172, 40.766038, -73.987375, 40.751475, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'EuLlpMLo5EdbKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 19, tzinfo=datetime.timezone.utc), 1, 2.92, -73.969802, 40.756973, -73.980878, 40.78424, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'zTmRxDJUYjDntQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 20, tzinfo=datetime.timezone.utc), 1, 2.61, -73.991937, 40.749815, -73.999688, 40.720525, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'X3N4HI7SNaVe7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 0, tzinfo=datetime.timezone.utc), 1, 2.8, -74.005747, 40.740618, -73.98441, 40.763157, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'aJLR78pAfXvHjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 58, tzinfo=datetime.timezone.utc), 3, 2.64, -73.934513, 40.801558, -73.965247, 40.798465, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'p2Mn4clRjtT2iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 13, tzinfo=datetime.timezone.utc), 1, 4.2, -73.952818, 40.776402, -74.002805, 40.760453, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'hK/LJBwPrnheoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 4, tzinfo=datetime.timezone.utc), 1, 3.37, -73.947168, 40.784142, -73.972065, 40.750037, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'mLmCFZgWDFILUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 48, tzinfo=datetime.timezone.utc), 1, 1.34, -73.965067, 40.772433, -73.976717, 40.759612, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', '7e9C9Z3i20ACiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 5, tzinfo=datetime.timezone.utc), 1, 2.84, -73.992053, 40.746695, -73.964005, 40.769585, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'lS+DITIHjAeYcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 6, tzinfo=datetime.timezone.utc), 5, 2.99, -73.991272, 40.721263, -73.994478, 40.724512, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'HhOz2uweSGlqjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 35, tzinfo=datetime.timezone.utc), 1, 1.1, -73.976718, 40.758857, -73.986387, 40.752788, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', '7gvRK39XZJ8tKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 0, tzinfo=datetime.timezone.utc), 1, 3.3, -74.011445, 40.708183, -73.987085, 40.722357, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'Ta8VTUfvPOSq5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 30, tzinfo=datetime.timezone.utc), 4, 4.18, -73.978097, 40.736807, -74.012168, 40.701445, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'gUijcEU96zZPrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 16, tzinfo=datetime.timezone.utc), 1, 2.88, -73.944768, 40.779425, -73.975528, 40.756185, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'CAoSdLFnF1VQRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 10, tzinfo=datetime.timezone.utc), 1, 3.68, -73.9918, 40.749958, -73.954133, 40.778527, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'SasiBNTPhkmgbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 39, tzinfo=datetime.timezone.utc), 1, 2.64, -73.979867, 40.770928, -73.951735, 40.778612, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'qmehz0pG3N4PiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 54, tzinfo=datetime.timezone.utc), 1, 2.33, -73.954322, 40.778348, -73.978138, 40.754882, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'CXi/l6RMM9YiXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 43, tzinfo=datetime.timezone.utc), 1, 3.35, -73.978923, 40.75641, -74.005413, 40.714833, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'zG3J/fS53m7mKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 43, tzinfo=datetime.timezone.utc), 1, 2.35, -73.963907, 40.758165, -74.000125, 40.761317, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'Dt7pMw7O1GAWGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 44, tzinfo=datetime.timezone.utc), 1, 1.97, -73.975567, 40.631683, -73.982505, 40.638342, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'vR1nK1BrrJcfGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 48, tzinfo=datetime.timezone.utc), 1, 1.48, -73.965522, 40.771742, -73.98187, 40.762608, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'VlAZ+E2AenYHGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 18, tzinfo=datetime.timezone.utc), 1, 4.42, -73.973895, 40.791922, -73.94448, 40.83767, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'BlcwvNEruvp8YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 6, tzinfo=datetime.timezone.utc), 1, 3.04, -73.974497, 40.793308, -73.933568, 40.7952, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'VNOYWHVLqMhjew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 58, tzinfo=datetime.timezone.utc), 2, 3.49, -73.964255, 40.79246, -73.986182, 40.76243, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', 'AnSjFfasDymZBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 3, tzinfo=datetime.timezone.utc), 1, 3.58, -73.969845, 40.799745, -73.963627, 40.762815, 'CASH', 12.1, 0.0, 0.0, 0.0, 12.1, '1705685115.6930006', '2Pl5q6K3wKw5dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 25, tzinfo=datetime.timezone.utc), 1, 3.57, -73.99872, 40.739722, -74.013152, 40.702307, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', '4cGxXrExDeFW6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 56, tzinfo=datetime.timezone.utc), 1, 3.98, -73.989852, 40.720458, -73.964492, 40.679475, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', '6eUddW42A6I9fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 5, tzinfo=datetime.timezone.utc), 1, 2.8, -73.993522, 40.720293, -73.994777, 40.750337, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'jYGKkygZHlRkQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 5, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 5, 45, tzinfo=datetime.timezone.utc), 2, 4.02, -73.985023, 40.759723, -74.008517, 40.710538, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'efFk3nVgLjSzLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 21, tzinfo=datetime.timezone.utc), 5, 4.28, -74.005668, 40.725742, -73.940565, 40.720937, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', '10xAu7UHetSD5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 55, tzinfo=datetime.timezone.utc), 1, 3.36, -73.988352, 40.737798, -73.95584, 40.77245, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'Ii7qCkEaXb0ttg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 19, tzinfo=datetime.timezone.utc), 1, 4.22, -73.997483, 40.71678, -73.960127, 40.762113, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'C498R9U75fPBWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 56, tzinfo=datetime.timezone.utc), 1, 4.1, -73.995112, 40.72309, -73.956925, 40.767895, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'uC82SJWXgFs25w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 22, tzinfo=datetime.timezone.utc), 5, 4.58, -73.979022, 40.72378, -74.015978, 40.717395, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'dLljIZG5qen+Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 40, tzinfo=datetime.timezone.utc), 1, 3.71, -73.98261, 40.731272, -73.98535, 40.769405, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'OZMkUV+BWR4Y1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 50, tzinfo=datetime.timezone.utc), 1, 4.15, -73.999215, 40.72, -73.960237, 40.674867, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'm4ET8J+rY9XYXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 35, tzinfo=datetime.timezone.utc), 1, 4.02, -73.991102, 40.685855, -74.000317, 40.735322, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'oBwTafkILZNb3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 53, tzinfo=datetime.timezone.utc), 1, 3.84, -73.988363, 40.723028, -73.980212, 40.67685, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'GGdUrsKB1C6Zgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 4, tzinfo=datetime.timezone.utc), 1, 3.71, -73.999637, 40.743625, -74.01742, 40.706578, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'cqkMv404GWkZMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 25, tzinfo=datetime.timezone.utc), 1, 3.81, -73.956947, 40.710287, -74.001172, 40.707398, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'bmLufQFYHHrGTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 40, tzinfo=datetime.timezone.utc), 2, 3.78, -73.99882, 40.718452, -73.98202, 40.762577, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'EbKnd81aHLKJTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 33, tzinfo=datetime.timezone.utc), 5, 2.94, -73.946635, 40.78506, -73.977333, 40.780125, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', '8tnALH8+lW0nhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 58, tzinfo=datetime.timezone.utc), 1, 2.54, -73.966417, 40.804343, -73.937373, 40.79326, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'i1QLpy9n8l40GQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 33, tzinfo=datetime.timezone.utc), 1, 3.65, -74.007353, 40.725805, -73.961413, 40.714307, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'TMbhFTKvmQKH7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 32, tzinfo=datetime.timezone.utc), 1, 3.73, -73.96136, 40.764537, -74.003613, 40.740195, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'LDQscHS8NkGy0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 4, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 5, 10, tzinfo=datetime.timezone.utc), 1, 2.17, -74.009178, 40.704317, -73.989833, 40.714187, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'InNR/CdkM8yB6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 46, tzinfo=datetime.timezone.utc), 4, 3.36, -73.960533, 40.78506, -74.005807, 40.739698, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'nwD9Q+nb3VrDIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 15, tzinfo=datetime.timezone.utc), 1, 3.58, -73.990927, 40.760837, -73.948847, 40.77507, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', '8VNxTQ4izSLhgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 47, tzinfo=datetime.timezone.utc), 1, 4.01, -73.978905, 40.72408, -73.948875, 40.773098, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'xACdzlD5/YebAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 5, tzinfo=datetime.timezone.utc), 3, 4.56, -73.985913, 40.722667, -73.950135, 40.777047, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'r8tsAvOoSoAzGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 13, tzinfo=datetime.timezone.utc), 3, 4.14, -73.979248, 40.686703, -73.96375, 40.716422, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'KErJDEHf49nWdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 21, tzinfo=datetime.timezone.utc), 1, 3.43, -73.995878, 40.723127, -73.977555, 40.764357, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'LTE2uV3OvK8nEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 24, tzinfo=datetime.timezone.utc), 1, 3.11, -73.988308, 40.729678, -73.981732, 40.763952, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'qkgiEA5z0pAdfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 5, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 5, 19, tzinfo=datetime.timezone.utc), 1, 3.96, -73.970023, 40.758128, -73.908162, 40.745165, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'E5FYT3T7tp9wpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 0, tzinfo=datetime.timezone.utc), 1, 3.78, -74.004988, 40.72151, -73.966008, 40.684042, 'CASH', 12.1, 0.5, 0.0, 0.0, 12.6, '1705685115.6930006', 'fBlPkJ2qvIY/fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 26, tzinfo=datetime.timezone.utc), 1, 3.16, -73.995912, 40.744232, -73.961618, 40.770282, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'c3zxV7JXwgZq2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 29, tzinfo=datetime.timezone.utc), 1, 3.93, -74.008555, 40.71142, -73.985678, 40.730087, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'zRKIpnKY5Ag2fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 1, tzinfo=datetime.timezone.utc), 1, 3.82, -73.988818, 40.693193, -74.004797, 40.737703, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'oXVGZ3EQ3l8QVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 9, tzinfo=datetime.timezone.utc), 1, 3.21, -73.984703, 40.76844, -73.99686, 40.731547, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'H8agQFCFkCLEgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 58, tzinfo=datetime.timezone.utc), 1, 2.85, -73.975203, 40.783477, -73.97528, 40.752688, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'Kj3OssoY16LCDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 43, tzinfo=datetime.timezone.utc), 2, 2.82, -73.997605, 40.720952, -73.974932, 40.755778, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'c31eVy3exAmoFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 51, tzinfo=datetime.timezone.utc), 1, 2.89, -73.979765, 40.765363, -73.946483, 40.77243, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'F+ftvKj2KcosRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 9, tzinfo=datetime.timezone.utc), 1, 3.8, -73.985092, 40.736032, -74.005045, 40.706983, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'lt+qL5LD3SC2lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 20, tzinfo=datetime.timezone.utc), 1, 2.98, -73.97222, 40.676942, -73.990053, 40.66595, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'EScuXh/8HRmJWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 21, tzinfo=datetime.timezone.utc), 1, 4.71, -73.9705, 40.764857, -73.973625, 40.782892, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'drIWfi3+vInoTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 13, tzinfo=datetime.timezone.utc), 1, 3.78, -73.955922, 40.804603, -73.955922, 40.804603, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'k7lwe3AgA+dzXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 6, tzinfo=datetime.timezone.utc), 2, 2.65, -73.941467, 40.787612, -73.95087, 40.810073, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', '4kUXrzXN67mNgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 31, tzinfo=datetime.timezone.utc), 1, 2.78, -73.998445, 40.71978, -73.977805, 40.75479, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', 'IugLrejrYFfgNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 53, tzinfo=datetime.timezone.utc), 2, 1.29, -73.997507, 40.723947, -74.011318, 40.713397, 'CASH', 12.1, 1.0, 0.0, 0.0, 13.1, '1705685115.6930006', '2HaiNxeWlgSY7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 46, tzinfo=datetime.timezone.utc), 1, 4.42, -73.964312, 40.773025, -74.00215, 40.719023, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'GGw73Pl0PD30Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 14, tzinfo=datetime.timezone.utc), 1, 3.96, -74.006, 40.70672, -73.962708, 40.687935, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'bwP3PC735+5DoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 52, tzinfo=datetime.timezone.utc), 5, 4.28, -73.990888, 40.739773, -73.992237, 40.691093, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'aA/Imrei7mvo3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 33, tzinfo=datetime.timezone.utc), 1, 2.85, -73.988683, 40.736767, -73.99123, 40.750147, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', '9xIPYBZWJHE1Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 14, tzinfo=datetime.timezone.utc), 1, 4.08, -73.966717, 40.80438, -73.989895, 40.752272, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'wvmOt7PSSIwhow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 55, tzinfo=datetime.timezone.utc), 3, 3.84, -73.966207, 40.789695, -73.979933, 40.746582, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'Q6McwroVhnAz0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 51, tzinfo=datetime.timezone.utc), 1, 3.98, -74.013165, 40.707472, -73.978417, 40.749063, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'laKNpTdN+banHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 47, tzinfo=datetime.timezone.utc), 1, 3.71, -73.970467, 40.796418, -73.96945, 40.758448, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'APq73G1/hSGhvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 46, tzinfo=datetime.timezone.utc), 1, 3.53, -73.971337, 40.782625, -73.98963, 40.741597, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'cedeusFobtrYhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 40, tzinfo=datetime.timezone.utc), 1, 4.09, -74.003825, 40.749168, -73.964435, 40.773197, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'RWGD0dq09JC1uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 29, tzinfo=datetime.timezone.utc), 2, 3.6, -73.981837, 40.755888, -73.996392, 40.711332, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'vmfBbgcZ54ph0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 3, tzinfo=datetime.timezone.utc), 1, 4.86, -73.958447, 40.768433, -73.989118, 40.720483, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'D1lj4KzdL/JhwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 13, tzinfo=datetime.timezone.utc), 2, 3.31, -73.976442, 40.790375, -73.997787, 40.751458, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'Jg8G2+0yjiZh+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 8, tzinfo=datetime.timezone.utc), 5, 2.74, -73.962315, 40.772307, -73.990388, 40.74883, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'SvVDqd6VuiLoyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 23, tzinfo=datetime.timezone.utc), 2, 2.29, -73.958875, 40.778288, -73.982197, 40.757642, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'RuhfDorzK2qgAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 9, 16, tzinfo=datetime.timezone.utc), 1, 4.7, -74.006095, 40.726117, -73.966085, 40.67903, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'FdYgZrJGqmOcMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 51, tzinfo=datetime.timezone.utc), 1, 3.43, -73.99645, 40.686025, -74.002055, 40.719262, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'k4AnUp+1YZlikQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 50, tzinfo=datetime.timezone.utc), 1, 5.13, -73.984413, 40.764407, -74.015143, 40.710052, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', '4DrERKzQXfBNPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 18, tzinfo=datetime.timezone.utc), 1, 4.18, -74.01015, 40.720553, -73.980402, 40.760057, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'AkYcOGot1xjYlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 45, tzinfo=datetime.timezone.utc), 2, 4.99, -73.994433, 40.690297, -73.962368, 40.709935, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'e95RQdf1Ag+N8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 46, tzinfo=datetime.timezone.utc), 1, 3.19, -73.960765, 40.775163, -73.95271, 40.810928, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'EU/R96lr0+GMOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 8, tzinfo=datetime.timezone.utc), 2, 3.88, -73.93741, 40.754055, -73.991333, 40.750935, 'CASH', 14.1, 0.0, 0.0, 0.0, 14.1, '1705685115.6930006', 'VYHgGvDo+Cy8gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 37, tzinfo=datetime.timezone.utc), 2, 4.73, -73.98139, 40.741185, -73.947417, 40.764333, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'GvwYPu0Hlg/xTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 4, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 5, 11, tzinfo=datetime.timezone.utc), 5, 5.16, -73.976693, 40.76446, -73.945187, 40.828555, 'Credit', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', '9d/QbeCRLDmAfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 28, tzinfo=datetime.timezone.utc), 1, 4.68, -74.005997, 40.735928, -73.951582, 40.765957, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'i8M2aO2yEfuHPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 51, tzinfo=datetime.timezone.utc), 2, 1.87, -73.982588, 40.771685, -73.988612, 40.750352, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'k6PzOdI+B00i5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 12, tzinfo=datetime.timezone.utc), 2, 4.39, -73.975588, 40.753055, -73.969788, 40.7945, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'dzWhziW8Y9oCAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 13, tzinfo=datetime.timezone.utc), 1, 3.74, -73.978078, 40.752445, -74.009948, 40.711857, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'H67BsNmcyQ2RMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 11, tzinfo=datetime.timezone.utc), 2, 4.35, -73.994453, 40.750173, -73.98828, 40.720008, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'CV/OA97m89v/cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 53, tzinfo=datetime.timezone.utc), 2, 4.24, -74.002823, 40.7237, -73.9897, 40.769652, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'QQZUbD88eALgMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 46, tzinfo=datetime.timezone.utc), 5, 5.06, -74.007807, 40.708823, -73.991215, 40.663688, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'nGzi0YGaB1E4Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 22, tzinfo=datetime.timezone.utc), 2, 5.0, -73.986355, 40.756068, -73.966205, 40.75981, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'BozB5rGRxxHxfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 7, tzinfo=datetime.timezone.utc), 2, 3.49, -73.983218, 40.762452, -73.995283, 40.72136, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'eQiTRErV+kvmDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 52, tzinfo=datetime.timezone.utc), 1, 4.82, -74.00078, 40.75741, -73.974873, 40.759698, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'U7oP9xQ/Ks2a2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 22, tzinfo=datetime.timezone.utc), 5, 4.79, -73.989607, 40.767687, -74.017323, 40.711035, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'w66ogN9ch3eYFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 29, tzinfo=datetime.timezone.utc), 1, 4.68, -73.991498, 40.755715, -73.992153, 40.713905, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'ci8dXAYu3HOE9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 39, tzinfo=datetime.timezone.utc), 1, 4.84, -73.979568, 40.722982, -73.938728, 40.752012, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'BZFzcGbnEDCbdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 3, 6, tzinfo=datetime.timezone.utc), 1, 4.81, -73.984855, 40.731987, -73.953745, 40.730763, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'Ig4xs4rGY47xGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 39, tzinfo=datetime.timezone.utc), 1, 5.4, -73.968485, 40.754922, -74.012385, 40.70355, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'SOU4dm41mJROKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 16, tzinfo=datetime.timezone.utc), 1, 4.88, -73.99097, 40.734822, -73.951318, 40.694352, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'Ug9mpGaCgqrbVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 36, tzinfo=datetime.timezone.utc), 1, 3.93, -73.97151, 40.757125, -73.90904, 40.742932, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'PXTWstkUIqXfvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 1, 1, tzinfo=datetime.timezone.utc), 5, 4.35, -73.989055, 40.723, -73.976945, 40.672513, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'ybdEvDK718sr6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 52, tzinfo=datetime.timezone.utc), 1, 4.97, -73.988488, 40.731337, -73.980917, 40.786128, 'CASH', 14.1, 0.5, 0.0, 0.0, 14.6, '1705685115.6930006', 'm68OOhyFnyroHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 1, tzinfo=datetime.timezone.utc), 5, 4.47, -74.007122, 40.728258, -73.962795, 40.766763, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', 'M2ffdiB0z2G3+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 18, tzinfo=datetime.timezone.utc), 1, 4.58, -74.005557, 40.7144, -74.017597, 40.764235, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', 'D8D1VS/zhceCqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 9, tzinfo=datetime.timezone.utc), 1, 4.03, -73.99703, 40.722517, -73.960883, 40.769873, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', '7SFxtPMZZx8GKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 1, tzinfo=datetime.timezone.utc), 6, 2.99, -73.9457, 40.763187, -73.951942, 40.725407, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', '86EPW0iwgyOEFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 23, tzinfo=datetime.timezone.utc), 1, 3.85, -73.997407, 40.736723, -73.963323, 40.777383, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', '4hshsXYAPA1efA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 34, tzinfo=datetime.timezone.utc), 1, 3.81, -73.991665, 40.727218, -73.951448, 40.723543, 'CASH', 14.1, 1.0, 0.0, 0.0, 15.1, '1705685115.6930006', 'tuyuAyALdZNMvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 48, tzinfo=datetime.timezone.utc), 1, 6.21, -73.981112, 40.767777, -73.916538, 40.773077, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'cLql3mnj4GvRvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 58, tzinfo=datetime.timezone.utc), 1, 4.84, -74.003783, 40.736655, -73.9572, 40.77733, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'BeXJq/TDh1rBwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 1, tzinfo=datetime.timezone.utc), 5, 5.12, -73.988733, 40.758715, -73.9449, 40.824078, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'XujJT0GPTr29Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 38, tzinfo=datetime.timezone.utc), 2, 4.43, -73.981053, 40.782372, -74.000255, 40.730415, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', '7Q2xds8TnmyY4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 3, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 3, 40, tzinfo=datetime.timezone.utc), 1, 5.79, -73.957623, 40.719665, -73.993387, 40.751112, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'fboFzc+z6tqOMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 26, tzinfo=datetime.timezone.utc), 2, 6.38, -74.006617, 40.74404, -73.927798, 40.76635, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'CbYQaJi5IZ7IfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 57, tzinfo=datetime.timezone.utc), 1, 4.34, -73.977707, 40.763538, -73.905115, 40.741338, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'Xi1sFiTbm3ap1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 29, tzinfo=datetime.timezone.utc), 1, 5.33, -73.951627, 40.769763, -74.002803, 40.73981, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'KQLx2thEeZ8U7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 33, tzinfo=datetime.timezone.utc), 1, 5.07, -73.991467, 40.749778, -73.956692, 40.74468, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'HWZddWoR8KBgow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 27, tzinfo=datetime.timezone.utc), 5, 5.9, -73.885492, 40.520097, -73.867572, 40.52461, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', '1uEg/lMWR4DoNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 53, tzinfo=datetime.timezone.utc), 1, 5.72, -73.960302, 40.711258, -73.890817, 40.750928, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'wqXngcywyNwilA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 53, tzinfo=datetime.timezone.utc), 4, 5.05, -74.004473, 40.733945, -73.963567, 40.682443, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'lGSJQtc80C+GhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 36, tzinfo=datetime.timezone.utc), 1, 6.32, -74.007253, 40.7047, -73.955122, 40.768887, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', 'NyP0QOkJbotB9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 0, tzinfo=datetime.timezone.utc), 1, 4.9, -73.986838, 40.761552, -74.017178, 40.711047, 'CASH', 15.7, 0.5, 0.0, 0.0, 16.2, '1705685115.6930006', '8q8Qn/EFlOF3bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 36, tzinfo=datetime.timezone.utc), 1, 6.5, -73.969778, 40.797667, -73.911275, 40.84444, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'ETH8+i3sw95p0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 6, tzinfo=datetime.timezone.utc), 1, 6.36, -73.982537, 40.74829, -73.88386, 40.757512, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'hvPDw9aL8TH7Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 1, 9, tzinfo=datetime.timezone.utc), 1, 7.25, -73.981862, 40.76847, -73.940695, 40.844718, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'qZygqQN1Xv88+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 3, tzinfo=datetime.timezone.utc), 1, 4.14, -73.963772, 40.682882, -73.94241, 40.711758, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'LjFzMnkvhqM/GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 30, tzinfo=datetime.timezone.utc), 5, 6.2, -74.002022, 40.750742, -73.940188, 40.793687, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', '6SmtPCNtum9mfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 59, tzinfo=datetime.timezone.utc), 5, 6.3, -73.978395, 40.729243, -73.91868, 40.76751, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'v1Sf/2/HY9bWvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 5, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 22, tzinfo=datetime.timezone.utc), 3, 5.93, -73.996603, 40.7534, -73.938358, 40.764847, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'D0RG5ixQypuHMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 5, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 5, 41, tzinfo=datetime.timezone.utc), 1, 6.71, -73.978168, 40.788395, -74.011093, 40.708468, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'cBAme8brSrYwiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 29, tzinfo=datetime.timezone.utc), 4, 7.1, -73.781862, 40.644758, -73.872507, 40.678635, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'kYfurhvpUH+rPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 56, tzinfo=datetime.timezone.utc), 3, 5.64, -73.992972, 40.741938, -73.948422, 40.780583, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 's/wKcjKNgvUCNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 36, tzinfo=datetime.timezone.utc), 1, 6.83, -73.971413, 40.782787, -73.917743, 40.782148, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', '4hw6B1MJrpiYTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 33, tzinfo=datetime.timezone.utc), 2, 5.16, -73.990648, 40.771292, -73.928768, 40.772208, 'Credit', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', '9QIYtTrEt+kpdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 57, tzinfo=datetime.timezone.utc), 5, 6.16, -73.974278, 40.79159, -73.928807, 40.763065, 'CASH', 17.7, 0.5, 0.0, 0.0, 18.2, '1705685115.6930006', 'qXh+EK31yXirmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 42, tzinfo=datetime.timezone.utc), 5, 7.9, -73.992625, 40.729947, -73.889153, 40.728495, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', '9yL6ZbZJm9u+cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 48, tzinfo=datetime.timezone.utc), 5, 4.88, -73.968148, 40.800057, -73.979338, 40.76164, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'jPSYLuI3LBl/Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 5, tzinfo=datetime.timezone.utc), 1, 7.08, -73.967453, 40.762822, -73.949048, 40.713893, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'M1mCsonLZiiboQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 39, tzinfo=datetime.timezone.utc), 2, 6.98, -73.9725, 40.781115, -73.878947, 40.756758, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', '6adD3kAuFx3PJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 44, tzinfo=datetime.timezone.utc), 1, 7.44, -73.985248, 40.763875, -73.938823, 40.849357, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'qTr6JCuMLDbTHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 0, tzinfo=datetime.timezone.utc), 2, 7.74, -73.988815, 40.749348, -73.986608, 40.750967, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'sTxVzjxqAaXa5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 32, tzinfo=datetime.timezone.utc), 2, 7.41, -73.98734, 40.762595, -73.908023, 40.768352, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'wXUYUQw+IeB9rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 34, tzinfo=datetime.timezone.utc), 5, 7.23, -73.988443, 40.721488, -73.967253, 40.801867, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'ByW3Nu2iCJv9QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 32, tzinfo=datetime.timezone.utc), 1, 7.0, -73.989108, 40.748312, -73.90396, 40.774768, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'mwT5kJypEXmiow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 6, tzinfo=datetime.timezone.utc), 1, 6.7, -73.990115, 40.761895, -73.940032, 40.836705, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'sLxIBrCI3UiA2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 55, tzinfo=datetime.timezone.utc), 5, 5.91, -73.978628, 40.763968, -73.882425, 40.7558, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'kH9b2ses3swzAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 3, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 3, 29, tzinfo=datetime.timezone.utc), 1, 7.39, -74.00031, 40.73258, -73.941085, 40.823908, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'F5eWpGdyzuPkLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 38, tzinfo=datetime.timezone.utc), 5, 7.17, -73.92774, 40.744438, -73.951647, 40.813628, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'rqIuK+5wetROXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 5, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 5, 53, tzinfo=datetime.timezone.utc), 5, 7.99, -73.976953, 40.784975, -73.913082, 40.872993, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'ShPVtbt+VAv5Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 45, tzinfo=datetime.timezone.utc), 1, 6.66, -73.985052, 40.761518, -73.903087, 40.770685, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'I4KRCad/qX+BOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 7, tzinfo=datetime.timezone.utc), 5, 7.39, -74.009188, 40.71768, -73.939783, 40.792022, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'a/OnjYpPW6jObA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 44, tzinfo=datetime.timezone.utc), 1, 8.07, -74.015663, 40.711118, -73.950703, 40.777918, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'lkuevF55kktJKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 30, tzinfo=datetime.timezone.utc), 2, 6.99, -73.973918, 40.754082, -73.973602, 40.672662, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 'kj3GymtBP6nrXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 44, tzinfo=datetime.timezone.utc), 2, 7.01, -73.981635, 40.755047, -73.989828, 40.690308, 'CASH', 19.7, 0.5, 0.0, 0.0, 20.2, '1705685115.6930006', 's8qlNDaYw+SD/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 12, tzinfo=datetime.timezone.utc), 1, 8.14, -73.870727, 40.77364, -73.951543, 40.726958, 'CASH', 21.7, 0.5, 0.0, 0.0, 22.2, '1705685115.6930006', 'Mli6zWrAs+7ACA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 34, tzinfo=datetime.timezone.utc), 5, 7.21, -73.978613, 40.777498, -73.96002, 40.713517, 'CASH', 21.7, 0.5, 0.0, 0.0, 22.2, '1705685115.6930006', '79rSsSrNSfeS5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 32, tzinfo=datetime.timezone.utc), 2, 8.39, -73.955718, 40.772342, -73.98092, 40.667727, 'CASH', 21.7, 0.5, 0.0, 0.0, 22.2, '1705685115.6930006', 'yNree7CZ1jsciA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 29, tzinfo=datetime.timezone.utc), 4, 9.28, -73.981315, 40.748633, -73.932888, 40.852685, 'CASH', 21.7, 0.5, 0.0, 0.0, 22.2, '1705685115.6930006', 'v7CNAWukC4jpLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 45, tzinfo=datetime.timezone.utc), 2, 8.32, -73.991135, 40.76102, -73.931167, 40.855037, 'CASH', 21.7, 0.5, 0.0, 0.0, 22.2, '1705685115.6930006', '8C+Tra8shlWWYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 48, tzinfo=datetime.timezone.utc), 3, 9.07, -73.980713, 40.730102, -73.948813, 40.808302, 'CASH', 23.7, 0.5, 0.0, 0.0, 24.2, '1705685115.6930006', 'LpksgYYgA5K1lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 31, tzinfo=datetime.timezone.utc), 3, 9.36, -73.989752, 40.730205, -73.955265, 40.82008, 'Credit', 23.7, 0.5, 0.0, 0.0, 24.2, '1705685115.6930006', 'TmxCbvQjnPiZbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 24, tzinfo=datetime.timezone.utc), 1, 9.16, -73.95628, 40.771775, -73.857263, 40.72565, 'CASH', 23.7, 0.5, 0.0, 0.0, 24.2, '1705685115.6930006', 'qwgkw/ZYA1AeGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 51, tzinfo=datetime.timezone.utc), 2, 10.95, -73.862757, 40.768987, -73.74799, 40.709098, 'CASH', 25.7, 0.5, 0.0, 0.0, 26.2, '1705685115.6930006', '0WzOJW2ZNta39Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 25, tzinfo=datetime.timezone.utc), 1, 5.73, -74.001843, 40.733917, -73.94466, 40.773165, 'CASH', 25.7, 0.5, 0.0, 0.0, 26.2, '1705685115.6930006', 'iIsooNL4pgTS2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 41, tzinfo=datetime.timezone.utc), 1, 10.59, -73.992678, 40.76354, -73.912332, 40.855747, 'CASH', 25.7, 0.5, 0.0, 0.0, 26.2, '1705685115.6930006', 'ULIPSFNiq5wrPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 43, tzinfo=datetime.timezone.utc), 5, 11.39, -73.776723, 40.645265, -73.860398, 40.73388, 'CASH', 27.7, 0.5, 0.0, 0.0, 28.2, '1705685115.6930006', 'Eh7DcS8gK/PWUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 51, tzinfo=datetime.timezone.utc), 1, 11.17, -73.910333, 40.784773, -73.996702, 40.904902, 'CASH', 29.7, 0.5, 0.0, 0.0, 30.2, '1705685115.6930006', '3wFhkDWmop7bmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 37, tzinfo=datetime.timezone.utc), 1, 9.33, -73.870902, 40.773607, -73.985983, 40.759075, 'CASH', 28.5, 0.0, 0.0, 4.15, 32.65, '1705685115.6930006', '548HMBFXEa2STg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 50, tzinfo=datetime.timezone.utc), 1, 10.1, -73.885663, 40.773127, -73.976838, 40.76086, 'CASH', 28.5, 0.0, 0.0, 4.15, 32.65, '1705685115.6930006', '/NwPUPrA8SOCpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 12, tzinfo=datetime.timezone.utc), 2, 10.06, -73.874457, 40.774035, -73.964543, 40.75601, 'CASH', 30.5, 0.0, 0.0, 4.15, 34.65, '1705685115.6930006', 'Pdeu9Jpwp/m3Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 36, tzinfo=datetime.timezone.utc), 1, 12.34, -73.862828, 40.769092, -73.985633, 40.75339, 'CASH', 32.5, 0.0, 0.0, 4.15, 36.65, '1705685115.6930006', 'KON2/NB5tiPc+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 4, tzinfo=datetime.timezone.utc), 1, 12.94, -73.996783, 40.767343, -73.865393, 40.770745, 'CASH', 36.5, 0.0, 0.0, 4.15, 40.65, '1705685115.6930006', 'O+JJ/vb/QA53yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 37, tzinfo=datetime.timezone.utc), 2, 29.6, -73.99903, 40.74434, -74.172337, 40.551348, 'CASH', 64.5, 0.5, 0.0, 8.3, 73.3, '1705685115.6930006', 'uDhmpN4UYipPXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 17, tzinfo=datetime.timezone.utc), 5, 8.75, -73.865633, 40.771092, -73.973683, 40.752265, 'CASH', 21.3, 0.0, 0.0, 4.15, 25.45, '1705685115.6930006', 'hvthRmfnzMd9+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 9, tzinfo=datetime.timezone.utc), 1, 9.17, -73.968965, 40.758548, -73.870887, 40.771968, 'CASH', 21.3, 1.0, 0.0, 4.15, 26.45, '1705685115.6930006', 'DGxryzSZw9+vQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 10, 32, tzinfo=datetime.timezone.utc), 3, 9.86, -73.870873, 40.773725, -73.968667, 40.764567, 'CASH', 23.3, 0.0, 0.0, 4.15, 27.45, '1705685115.6930006', 'SLjp98/K+aiG1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 29, tzinfo=datetime.timezone.utc), 1, 9.41, -73.982663, 40.757332, -73.872505, 40.77449, 'CASH', 23.3, 0.0, 0.0, 4.15, 27.45, '1705685115.6930006', 'RU8rSEpT8Wiukw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 49, tzinfo=datetime.timezone.utc), 2, 8.83, -73.87086, 40.77378, -73.984292, 40.756035, 'CASH', 23.3, 0.0, 0.0, 4.15, 27.45, '1705685115.6930006', 'sm1uFRDdvNJHRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 27, tzinfo=datetime.timezone.utc), 1, 9.3, -73.984008, 40.757035, -73.870942, 40.77411, 'CASH', 23.3, 1.0, 0.0, 4.15, 28.45, '1705685115.6930006', 'o5BUonWdli0dWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 42, tzinfo=datetime.timezone.utc), 1, 10.18, -73.970967, 40.760687, -73.870915, 40.774053, 'CASH', 23.3, 1.0, 0.0, 4.15, 28.45, '1705685115.6930006', 'UzaMiSBF7n/cCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 4, tzinfo=datetime.timezone.utc), 3, 10.49, -73.982925, 40.774325, -73.870707, 40.773975, 'CASH', 25.3, 0.0, 0.0, 4.15, 29.45, '1705685115.6930006', '+W2F2IyOa3a75g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 44, tzinfo=datetime.timezone.utc), 1, 9.45, -73.871882, 40.773857, -73.978452, 40.788215, 'CASH', 25.3, 0.0, 0.0, 4.15, 29.45, '1705685115.6930006', 'z3Q0uD4w695a3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 49, tzinfo=datetime.timezone.utc), 2, 11.84, -73.864208, 40.76972, -73.966687, 40.75244, 'CASH', 27.3, 0.0, 0.0, 4.15, 31.45, '1705685115.6930006', 'hleC/cnO+LDxaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 23, tzinfo=datetime.timezone.utc), 1, 10.98, -73.978127, 40.764102, -73.861322, 40.76804, 'CASH', 27.3, 0.0, 0.0, 4.15, 31.45, '1705685115.6930006', 'pd4UKu15seD6Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 8, tzinfo=datetime.timezone.utc), 2, 15.01, -74.017178, 40.705127, -73.861565, 40.768265, 'CASH', 34.9, 0.0, 0.0, 0.0, 34.9, '1705685115.6930006', '46CRQp5Uq/67XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 21, tzinfo=datetime.timezone.utc), 5, 0.0, -73.937768, 40.758243, -73.93776, 40.758257, 'CASH', 38.9, 0.0, 0.0, 0.0, 38.9, '1705685115.6930006', 'H7muAAkfQ1mSZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 17, tzinfo=datetime.timezone.utc), 1, 18.35, -73.78578, 40.640068, -73.988925, 40.606772, 'CASH', 40.9, 0.0, 0.0, 0.0, 40.9, '1705685115.6930006', 'EecWyNeguquW4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 15, tzinfo=datetime.timezone.utc), 2, 12.69, -73.870515, 40.773528, -73.965247, 40.795148, 'CASH', 30.5, 0.5, 0.0, 4.15, 35.15, '1705685115.6930006', '9KVi/f3REkRRRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 23, tzinfo=datetime.timezone.utc), 2, 17.4, -73.786898, 40.646228, -73.980448, 40.754867, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'nQsF4U1yN7M8Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 11, tzinfo=datetime.timezone.utc), 1, 16.96, -73.940253, 40.80454, -73.782368, 40.644158, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'oAp3ChWJYB2saQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 17, tzinfo=datetime.timezone.utc), 2, 40.21, -73.981282, 40.759852, -73.983852, 40.758035, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'fbNC0kLhkaTBNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 3, tzinfo=datetime.timezone.utc), 4, 16.07, -73.986758, 40.753533, -73.79027, 40.646907, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'MBXUG3QuUQ/GVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 21, tzinfo=datetime.timezone.utc), 5, 18.08, -73.776655, 40.64522, -73.96855, 40.763298, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'GItqc/ZLbyAgLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 30, tzinfo=datetime.timezone.utc), 1, 16.73, -73.789865, 40.647165, -73.986062, 40.75214, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'Dw1L4BpuY8dqqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 55, tzinfo=datetime.timezone.utc), 2, 17.32, -73.78588, 40.645623, -73.98171, 40.75503, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'RghbCeULPfztuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 53, tzinfo=datetime.timezone.utc), 1, 21.13, -73.973765, 40.755212, -73.78994, 40.64696, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '6Xogl+LXWFpNpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 37, tzinfo=datetime.timezone.utc), 5, 16.92, -73.96927, 40.75005, -73.776305, 40.645635, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'litmNlO76Rqy7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 58, tzinfo=datetime.timezone.utc), 1, 17.83, -73.783307, 40.648592, -73.987678, 40.760385, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'odpf0TXIr3opNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 44, tzinfo=datetime.timezone.utc), 1, 17.15, -73.782368, 40.644687, -73.979453, 40.749622, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'u7EVFJ6FhQmUBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 43, tzinfo=datetime.timezone.utc), 2, 21.71, -73.982675, 40.771652, -73.776437, 40.645135, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'pilckTf+LSw2yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 16, tzinfo=datetime.timezone.utc), 2, 15.98, -73.860777, 40.739082, -73.815518, 40.785215, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'XbBvWyLQiYHEWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 53, tzinfo=datetime.timezone.utc), 5, 17.54, -73.787323, 40.641025, -73.970198, 40.755087, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'gOW/UPO9gFgqBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 50, tzinfo=datetime.timezone.utc), 1, 17.81, -73.789333, 40.646447, -73.980793, 40.761058, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '3dPGO0+xIlAJBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 38, tzinfo=datetime.timezone.utc), 1, 20.33, -73.788528, 40.641322, -73.956593, 40.769002, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '6sJHfjzqPijgiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 18, tzinfo=datetime.timezone.utc), 2, 20.42, -73.781938, 40.644773, -73.976882, 40.792627, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'g/uj/L/RCAXQ4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 9, tzinfo=datetime.timezone.utc), 1, 18.83, -73.783517, 40.64866, -73.9829, 40.764377, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'pusa2PGO3Ne34A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 12, tzinfo=datetime.timezone.utc), 1, 21.17, -73.789118, 40.642423, -74.006257, 40.705733, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'GQYgaAdpjOGcTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 33, tzinfo=datetime.timezone.utc), 2, 17.62, -73.983682, 40.75725, -73.78999, 40.646923, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'cttjfLzpgKSkbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 9, tzinfo=datetime.timezone.utc), 1, 22.22, -73.780273, 40.645707, -73.981562, 40.76479, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'FmslN6Yo+BZGMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 25, tzinfo=datetime.timezone.utc), 3, 18.83, -73.789728, 40.643397, -74.001592, 40.73369, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'M5aSltsinP0dhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 42, tzinfo=datetime.timezone.utc), 1, 17.55, -73.973837, 40.763988, -73.786455, 40.639032, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '787OA9WcRu+yxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 28, tzinfo=datetime.timezone.utc), 5, 17.19, -73.978755, 40.762435, -73.788057, 40.641895, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'TMeqD1Zzon+bTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 6, 12, tzinfo=datetime.timezone.utc), 2, 16.24, -73.930568, 40.775045, -73.942192, 40.826732, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'ugEdFApYh4gNOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 54, tzinfo=datetime.timezone.utc), 5, 16.37, -73.976372, 40.746155, -73.776712, 40.644827, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'Q5C4UlpvMu9uSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 57, tzinfo=datetime.timezone.utc), 1, 18.39, -73.782048, 40.644638, -73.986607, 40.726615, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'dIFJ2z+TFeiNbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 54, tzinfo=datetime.timezone.utc), 5, 17.51, -73.987138, 40.760288, -73.78999, 40.646913, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'vpxxW7+Kh9257A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 51, tzinfo=datetime.timezone.utc), 1, 22.01, -73.7833, 40.64862, -73.975675, 40.770412, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'wfE40Xd4NKT1kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 45, tzinfo=datetime.timezone.utc), 2, 21.12, -73.786418, 40.64476, -73.969858, 40.762157, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'ONiWKFLmwCbiCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 58, tzinfo=datetime.timezone.utc), 1, 19.48, -74.000512, 40.739312, -73.992583, 40.739978, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '8R+FuK3gHXJXeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 58, tzinfo=datetime.timezone.utc), 2, 21.6, -73.790008, 40.643873, -73.98169, 40.77773, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '06aLzgrK14hMlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 56, tzinfo=datetime.timezone.utc), 2, 16.82, -73.977182, 40.755652, -73.786497, 40.639078, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'RyUsfTz+yg8UtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 8, tzinfo=datetime.timezone.utc), 5, 22.88, -73.782067, 40.644805, -74.015833, 40.71532, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'FISDsPVQyh0u2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 26, tzinfo=datetime.timezone.utc), 1, 21.66, -73.98317, 40.770668, -73.790135, 40.646915, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'E1dtYmB1I87Kyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 2, tzinfo=datetime.timezone.utc), 1, 18.7, -73.945492, 40.777618, -73.782565, 40.6488, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'OXefCAuDyVe+6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 9, tzinfo=datetime.timezone.utc), 2, 17.43, -73.985402, 40.768955, -73.7827, 40.644057, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'LmoO2YnCQvNJdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 41, tzinfo=datetime.timezone.utc), 4, 16.99, -73.785823, 40.639803, -73.976645, 40.751987, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'k7JDCP0gWgGd+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 4, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 5, 17, tzinfo=datetime.timezone.utc), 5, 21.44, -73.98217, 40.773925, -73.776277, 40.645637, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'YMdAO4RaUFMYvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 48, tzinfo=datetime.timezone.utc), 1, 19.08, -73.958383, 40.800347, -73.776518, 40.645022, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '7IkzXGRfQiLBHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 56, tzinfo=datetime.timezone.utc), 5, 18.64, -73.781208, 40.644963, -73.984545, 40.72861, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'e+04l0kMIQy+Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 54, tzinfo=datetime.timezone.utc), 1, 0.0, -73.991475, 40.750525, -73.991403, 40.750477, 'Credit', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '/R/45IoLzC2UGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 40, tzinfo=datetime.timezone.utc), 5, 0.0, -73.972113, 40.757032, -73.972292, 40.757055, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'hmt03ycIEgpNhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 5, tzinfo=datetime.timezone.utc), 3, 18.45, -73.778453, 40.646757, -73.995903, 40.734615, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'huL+HnJMM5BwEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 1, tzinfo=datetime.timezone.utc), 2, 19.58, -73.776887, 40.64578, -73.948043, 40.774552, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'aD2yw6q2NBECjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 36, tzinfo=datetime.timezone.utc), 1, 17.52, -73.781598, 40.646762, -73.986243, 40.744372, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'hOjGx4U+bbGhIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 50, tzinfo=datetime.timezone.utc), 2, 15.74, -73.971848, 40.758167, -73.790432, 40.644017, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'vTrBFc7gbvA1Sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 9, tzinfo=datetime.timezone.utc), 3, 17.43, -73.790347, 40.643015, -73.97394, 40.755355, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', '3iSv1WKgeB+AFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 51, tzinfo=datetime.timezone.utc), 1, 19.0, -73.783903, 40.648658, -73.953358, 40.782492, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'M1YdItaCO3fDpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 5, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 5, 36, tzinfo=datetime.timezone.utc), 1, 18.9, -73.950437, 40.818518, -73.776287, 40.645662, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'Y9lAYAPaNaVMzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 29, tzinfo=datetime.timezone.utc), 1, 18.75, -73.995948, 40.72432, -73.786433, 40.639268, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'wstYin34ObjCNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 2, tzinfo=datetime.timezone.utc), 1, 17.23, -73.981252, 40.73343, -73.776293, 40.645802, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'wKyqGpau1qf0Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 46, tzinfo=datetime.timezone.utc), 1, 16.4, -73.805618, 40.651433, -73.98557, 40.761998, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'UP8rOVHHvTQFuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 22, tzinfo=datetime.timezone.utc), 2, 17.41, -73.789968, 40.646945, -73.991283, 40.750027, 'CASH', 45.0, 0.0, 0.0, 4.15, 49.15, '1705685115.6930006', 'EdtVXTOO4AGCdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 30, tzinfo=datetime.timezone.utc), 1, 4.37, -73.98599, 40.74335, -73.967302, 40.793248, 'CASH', 15.7, 1.0, 0.0, 0.0, 16.7, '1705685115.6930006', 'vJYnveXyjd7LKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 46, tzinfo=datetime.timezone.utc), 1, 5.04, -73.973652, 40.743282, -73.960905, 40.79932, 'CASH', 15.7, 1.0, 0.0, 0.0, 16.7, '1705685115.6930006', '0sbNkJRvhMHbig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 22, tzinfo=datetime.timezone.utc), 1, 4.93, -74.013443, 40.704667, -73.993905, 40.758855, 'CASH', 15.7, 1.0, 0.0, 0.0, 16.7, '1705685115.6930006', '6NqtA8ASNku8OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 39, tzinfo=datetime.timezone.utc), 1, 4.47, -74.004633, 40.716445, -73.967317, 40.756597, 'CASH', 15.7, 1.0, 0.0, 0.0, 16.7, '1705685115.6930006', 'cZr7KLT0ZcJt+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 13, tzinfo=datetime.timezone.utc), 2, 3.97, -73.992215, 40.754502, -73.947755, 40.779597, 'CASH', 15.7, 1.0, 0.0, 0.0, 16.7, '1705685115.6930006', 'osNxXCe44YwTkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 47, tzinfo=datetime.timezone.utc), 5, 6.82, -73.995943, 40.753842, -73.944953, 40.828803, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', '8AveHmDmjji4Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 19, tzinfo=datetime.timezone.utc), 2, 4.33, -74.003877, 40.713232, -73.98159, 40.7639, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'mSkL2TLnLgrpVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 30, tzinfo=datetime.timezone.utc), 5, 1.72, -73.966253, 40.765472, -73.969558, 40.76135, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'gIf2s1+BG/MdPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 11, tzinfo=datetime.timezone.utc), 1, 6.39, -73.975423, 40.75515, -74.01717, 40.704143, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'JhcBSOm5l4GGxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 57, tzinfo=datetime.timezone.utc), 1, 5.3, -74.00199, 40.709163, -74.006637, 40.751352, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'H8oQIjm3O8yvsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 6, tzinfo=datetime.timezone.utc), 5, 7.05, -73.971295, 40.761762, -74.013278, 40.707887, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', '/4e99w43s0ss9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 25, tzinfo=datetime.timezone.utc), 5, 5.79, -73.984377, 40.780085, -74.012247, 40.707803, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'zo9EnfavvzTymQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 39, tzinfo=datetime.timezone.utc), 5, 5.43, -74.00723, 40.711737, -73.97461, 40.757915, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'gNXGO2C/aVk5rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 38, tzinfo=datetime.timezone.utc), 1, 0.65, -73.960542, 40.775837, -74.00074, 40.71064, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'Gl+xzMqVb5XcnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 19, tzinfo=datetime.timezone.utc), 5, 5.36, -73.991447, 40.749888, -74.012225, 40.705192, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'wvzYf+LknGpheA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 29, tzinfo=datetime.timezone.utc), 1, 5.8, -73.982277, 40.77576, -74.012602, 40.702675, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'pCeMmDeAdyVcVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 13, tzinfo=datetime.timezone.utc), 1, 6.46, -73.994273, 40.719572, -73.913615, 40.709805, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'jlz7sw0R5gT5VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 57, tzinfo=datetime.timezone.utc), 2, 6.76, -73.954422, 40.773957, -74.000378, 40.714335, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'E5q36i+0Sa/x6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 27, tzinfo=datetime.timezone.utc), 5, 6.11, -74.017147, 40.705325, -73.971227, 40.764275, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', '4VUYucI4FQgfHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 38, tzinfo=datetime.timezone.utc), 1, 6.59, -74.00195, 40.73049, -73.918792, 40.761942, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', '7bKmOSdyrWsfdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 12, tzinfo=datetime.timezone.utc), 5, 5.31, -73.984818, 40.769627, -74.01738, 40.7054, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', 'AcDMNGroz22jLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 43, tzinfo=datetime.timezone.utc), 1, 5.72, -73.97414, 40.755595, -74.011017, 40.702898, 'CASH', 17.7, 0.0, 0.0, 0.0, 17.7, '1705685115.6930006', '/INKJTmRvlbiHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 10, tzinfo=datetime.timezone.utc), 2, 5.62, -73.978267, 40.762543, -74.00997, 40.71001, 'CASH', 17.7, 1.0, 0.0, 0.0, 18.7, '1705685115.6930006', 'V0cX2umGY9Jlvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 42, tzinfo=datetime.timezone.utc), 1, 6.21, -73.985255, 40.758365, -73.952028, 40.718853, 'CASH', 17.7, 1.0, 0.0, 0.0, 18.7, '1705685115.6930006', 'maw0oQpp53k7TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 59, tzinfo=datetime.timezone.utc), 1, 6.83, -74.011375, 40.703933, -73.954212, 40.770212, 'CASH', 17.7, 1.0, 0.0, 0.0, 18.7, '1705685115.6930006', 'n2ehct7Rn+ZbZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 0, tzinfo=datetime.timezone.utc), 6, 7.46, -73.958172, 40.77868, -74.005563, 40.706685, 'CASH', 19.7, 0.0, 0.0, 0.0, 19.7, '1705685115.6930006', 'a4h2SnXL6u9jtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 29, tzinfo=datetime.timezone.utc), 5, 6.19, -74.00995, 40.720838, -73.959322, 40.777212, 'CASH', 19.7, 1.0, 0.0, 0.0, 20.7, '1705685115.6930006', 'MZ+vyJSW1CwvTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 0, tzinfo=datetime.timezone.utc), 1, 7.59, -73.981713, 40.758143, -73.942747, 40.841617, 'CASH', 19.7, 1.0, 0.0, 0.0, 20.7, '1705685115.6930006', 'BygEVGpcWhgdTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 20, tzinfo=datetime.timezone.utc), 2, 7.5, -73.961293, 40.811802, -73.98363, 40.735905, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'rbXsqKkfHnGSfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 47, tzinfo=datetime.timezone.utc), 1, 8.61, -73.986535, 40.740142, -73.92254, 40.82458, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'zHQDzgM8iy+JJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 50, tzinfo=datetime.timezone.utc), 2, 6.18, -73.992208, 40.74984, -73.93878, 40.704195, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'IIWdV5ZN5r58kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 29, tzinfo=datetime.timezone.utc), 1, 7.83, -73.885267, 40.77299, -73.974337, 40.75308, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'gjpfmKiH5eeoZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 59, tzinfo=datetime.timezone.utc), 1, 4.38, -73.97816, 40.752275, -73.995073, 40.714155, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'pQ4uaEZoClNLGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 14, tzinfo=datetime.timezone.utc), 1, 8.6, -73.976358, 40.739735, -73.92307, 40.835063, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'qruVRQeJWQxhmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 6, tzinfo=datetime.timezone.utc), 2, 8.58, -73.962475, 40.763583, -73.994022, 40.703277, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'Gi8AgKChTFV6qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 45, tzinfo=datetime.timezone.utc), 5, 7.15, -73.956732, 40.775018, -74.00445, 40.71397, 'CASH', 21.7, 0.0, 0.0, 0.0, 21.7, '1705685115.6930006', 'zHhCnPWRfQStCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 59, tzinfo=datetime.timezone.utc), 1, 7.91, -74.01184, 40.713082, -73.95627, 40.768007, 'CASH', 21.7, 1.0, 0.0, 0.0, 22.7, '1705685115.6930006', 'swhKQulLbUlcdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 14, tzinfo=datetime.timezone.utc), 5, 6.22, -73.971357, 40.76108, -73.998442, 40.686178, 'CASH', 21.7, 1.0, 0.0, 0.0, 22.7, '1705685115.6930006', 'EeyAkEjwLYqoNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 56, tzinfo=datetime.timezone.utc), 1, 7.1, -73.978197, 40.754053, -73.985793, 40.668905, 'CASH', 21.7, 1.0, 0.0, 0.0, 22.7, '1705685115.6930006', 'GtW9ABO2vliOjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 20, tzinfo=datetime.timezone.utc), 1, 4.74, -73.961965, 40.779417, -74.001697, 40.73159, 'CASH', 21.7, 1.0, 0.0, 0.0, 22.7, '1705685115.6930006', 'UuXM5Du0tP0dSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 46, tzinfo=datetime.timezone.utc), 1, 8.66, -74.013693, 40.717643, -73.950612, 40.821053, 'CASH', 23.7, 0.0, 0.0, 0.0, 23.7, '1705685115.6930006', 'DF2jWpsXEcC4Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 30, tzinfo=datetime.timezone.utc), 2, 10.27, -73.862583, 40.768978, -73.990208, 40.72327, 'CASH', 23.7, 1.0, 0.0, 0.0, 24.7, '1705685115.6930006', 'Mj8rd5GecuM5wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 58, tzinfo=datetime.timezone.utc), 1, 7.18, -73.96809, 40.756153, -73.993592, 40.69009, 'CASH', 25.7, 0.0, 0.0, 0.0, 25.7, '1705685115.6930006', 'XRoGNzDFuRetkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 44, tzinfo=datetime.timezone.utc), 5, 9.2, -73.97939, 40.74626, -73.86228, 40.768728, 'Credit', 21.7, 0.0, 0.0, 4.0, 25.7, '1705685115.6930006', 'fTFo8vetFC6xuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 15, tzinfo=datetime.timezone.utc), 1, 10.53, -73.862907, 40.769045, -73.869353, 40.687338, 'CASH', 25.7, 1.0, 0.0, 0.0, 26.7, '1705685115.6930006', '831Fb+v+xg05kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 22, tzinfo=datetime.timezone.utc), 1, 6.15, -74.003783, 40.738157, -73.984477, 40.671618, 'CASH', 29.7, 0.0, 0.0, 0.0, 29.7, '1705685115.6930006', 'IY//O8XtRNCucQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 2, tzinfo=datetime.timezone.utc), 5, 9.46, -73.870822, 40.773373, -73.992367, 40.754705, 'CASH', 29.7, 0.0, 0.0, 0.0, 29.7, '1705685115.6930006', 'l5DLMN+B+nAMcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 16, tzinfo=datetime.timezone.utc), 1, 12.88, -73.862533, 40.768977, -73.793942, 40.667242, 'CASH', 29.7, 0.0, 0.0, 0.0, 29.7, '1705685115.6930006', 'qW0geWeVqdqOtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 0, tzinfo=datetime.timezone.utc), 2, 13.66, -73.788632, 40.641488, -73.92049, 40.622435, 'CASH', 31.7, 0.0, 0.0, 0.0, 31.7, '1705685115.6930006', 'InNhJSePaO6z6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 52, tzinfo=datetime.timezone.utc), 5, 13.44, -73.789337, 40.646797, -73.914387, 40.759265, 'CASH', 31.7, 0.0, 0.0, 0.0, 31.7, '1705685115.6930006', 'Vs4Oe+LwqsHzew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 55, tzinfo=datetime.timezone.utc), 2, 13.15, -73.862643, 40.768928, -73.983637, 40.756358, 'CASH', 31.7, 0.0, 0.0, 0.0, 31.7, '1705685115.6930006', 'ET+pLx46leQ6sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 37, tzinfo=datetime.timezone.utc), 5, 13.67, -73.977682, 40.783952, -73.908793, 40.808615, 'CASH', 32.9, 0.5, 0.0, 0.0, 33.4, '1705685115.6930006', 'VxNIuM8c4JRlKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 51, tzinfo=datetime.timezone.utc), 1, 13.13, -73.989822, 40.734348, -73.846038, 40.842683, 'CASH', 32.9, 0.5, 0.0, 0.0, 33.4, '1705685115.6930006', 'vKziTMkoafYpFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 5, tzinfo=datetime.timezone.utc), 5, 14.6, -73.781998, 40.644728, -73.919098, 40.745988, 'CASH', 32.9, 0.5, 0.0, 0.0, 33.4, '1705685115.6930006', 'Vd/cyoupdOu3fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 20, tzinfo=datetime.timezone.utc), 1, 14.54, -73.964, 40.76565, -73.841752, 40.881237, 'CASH', 32.9, 0.5, 0.0, 0.0, 33.4, '1705685115.6930006', 'C41trb43womc+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 32, tzinfo=datetime.timezone.utc), 2, 14.83, -73.99487, 40.743818, -73.818822, 40.846197, 'CASH', 36.9, 0.5, 0.0, 0.0, 37.4, '1705685115.6930006', 'ymejAYJ2Y6EcIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 3, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 8, tzinfo=datetime.timezone.utc), 1, 15.88, -74.015475, 40.709688, -73.872502, 40.774165, 'CASH', 38.9, 0.5, 0.0, 0.0, 39.4, '1705685115.6930006', '2VVRvMzpJi1odA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 42, tzinfo=datetime.timezone.utc), 1, 4.05, -73.957753, 40.769875, -73.955392, 40.745967, 'CASH', 13.3, 0.5, 0.0, 4.15, 17.95, '1705685115.6930006', '1P1UghkZ0DFXzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 27, tzinfo=datetime.timezone.utc), 5, 5.8, -73.960148, 40.817663, -73.911158, 40.762128, 'CASH', 15.3, 0.5, 0.0, 4.15, 19.95, '1705685115.6930006', 'iS+fsX0CmQlNhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 27, tzinfo=datetime.timezone.utc), 5, 8.24, -73.97803, 40.745783, -73.84811, 40.72562, 'CASH', 19.3, 0.5, 0.0, 4.15, 23.95, '1705685115.6930006', 'HwwrcrB9DZMsNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 30, tzinfo=datetime.timezone.utc), 1, 8.97, -73.8708, 40.77362, -73.982735, 40.737777, 'CASH', 21.3, 0.5, 0.0, 4.15, 25.95, '1705685115.6930006', 'CJltPsrDDllXCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 54, tzinfo=datetime.timezone.utc), 3, 9.34, -73.862678, 40.768878, -73.972957, 40.754517, 'CASH', 23.3, 0.5, 0.0, 4.15, 27.95, '1705685115.6930006', 'QauXznzLIVJ0zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 16, tzinfo=datetime.timezone.utc), 4, 11.55, -73.862747, 40.769085, -73.97821, 40.764093, 'CASH', 27.3, 0.5, 0.0, 4.15, 31.95, '1705685115.6930006', '4yO3pVKYKxbrjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 11, tzinfo=datetime.timezone.utc), 1, 15.29, -73.790208, 40.646823, -73.959768, 40.636973, 'CASH', 34.9, 1.0, 0.0, 0.0, 35.9, '1705685115.6930006', 'u1NYBYu2ILMrvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 22, tzinfo=datetime.timezone.utc), 1, 12.17, -73.87462, 40.774025, -73.98317, 40.748763, 'CASH', 32.9, 0.0, 0.0, 5.0, 37.9, '1705685115.6930006', '+EXgs1tyFw6a/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 20, tzinfo=datetime.timezone.utc), 2, 27.01, -73.782088, 40.644812, -74.077433, 40.629403, 'CASH', 58.9, 1.0, 0.0, 0.0, 59.9, '1705685115.6930006', '61yxZ6bg430EkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 48, tzinfo=datetime.timezone.utc), 1, 12.01, -73.862748, 40.768887, -73.987115, 40.756032, 'CASH', 28.9, 1.0, 0.0, 4.15, 34.05, '1705685115.6930006', 'cPV7g6Qde4TF3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 46, tzinfo=datetime.timezone.utc), 1, 11.85, -73.862727, 40.768963, -73.981953, 40.755707, 'CASH', 30.9, 1.0, 0.0, 4.15, 36.05, '1705685115.6930006', 'Qf+rtd/hgEt3Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 1, tzinfo=datetime.timezone.utc), 3, 8.8, -73.971973, 40.757665, -73.97185, 40.757147, 'CASH', 20.5, 0.5, 0.0, 4.15, 25.15, '1705685115.6930006', 'MWOUAXAlIMcylQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 6, tzinfo=datetime.timezone.utc), 5, 7.93, -73.888158, 40.747255, -73.963198, 40.796268, 'CASH', 20.5, 0.5, 0.0, 4.15, 25.15, '1705685115.6930006', 'ez6SdmW/7yey9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 56, tzinfo=datetime.timezone.utc), 1, 11.19, -73.870787, 40.773713, -73.983828, 40.760732, 'CASH', 26.5, 0.5, 0.0, 4.15, 31.15, '1705685115.6930006', 'TIvwzbRp5GiXIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 13, tzinfo=datetime.timezone.utc), 2, 9.67, -73.874448, 40.773998, -73.976375, 40.762803, 'CASH', 27.3, 0.0, 0.0, 5.0, 32.3, '1705685115.6930006', 'vDuOlrrvZD+sWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 12, tzinfo=datetime.timezone.utc), 1, 13.64, -73.871925, 40.773823, -73.776442, 40.645073, 'CASH', 31.3, 1.0, 0.0, 0.0, 32.3, '1705685115.6930006', '3gcr8uSDudtV4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 33, tzinfo=datetime.timezone.utc), 2, 11.33, -73.97899, 40.762285, -73.872725, 40.77433, 'CASH', 31.3, 1.0, 0.0, 0.0, 32.3, '1705685115.6930006', 'RzuuvgxqkHwOaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 24, tzinfo=datetime.timezone.utc), 1, 12.73, -73.88548, 40.77315, -73.97226, 40.756865, 'CASH', 33.3, 0.0, 0.0, 5.0, 38.3, '1705685115.6930006', 'IfwGyzW7blW3iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 13, tzinfo=datetime.timezone.utc), 3, 0.56, -73.963607, 40.774642, -73.95915, 40.780862, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '+9wxrNNaQlYa8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 4, tzinfo=datetime.timezone.utc), 5, 0.39, -73.953947, 40.779007, -73.950397, 40.783555, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'GdcTL5LjpqFLIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 14, tzinfo=datetime.timezone.utc), 1, 0.32, -73.978548, 40.753127, -73.983313, 40.755535, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'CR+l/z8w0j7iVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 9, tzinfo=datetime.timezone.utc), 1, 0.4, -73.982667, 40.731207, -73.979587, 40.736535, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'e3xlk7FIpPvEAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 53, tzinfo=datetime.timezone.utc), 1, 0.42, -73.950393, 40.775528, -73.954298, 40.77857, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'oIaWn7HD2ZRMhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 36, tzinfo=datetime.timezone.utc), 5, 0.52, -73.96779, 40.76869, -73.961207, 40.769727, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'SuDDZi+ZRbAdkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 16, tzinfo=datetime.timezone.utc), 5, 0.47, -73.968983, 40.79086, -73.970067, 40.785555, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'mVew5LMeZKH41w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 46, tzinfo=datetime.timezone.utc), 1, 0.4, -73.99672, 40.738052, -73.993208, 40.743183, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '+kAcE6kby0MpLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 4, tzinfo=datetime.timezone.utc), 1, 0.02, -73.948647, 40.784877, -73.948803, 40.784888, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'fYetsY/EnciPOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 2, tzinfo=datetime.timezone.utc), 5, 0.3, -73.981083, 40.78125, -73.985155, 40.780512, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '4LCSL3ZeFivbVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 16, tzinfo=datetime.timezone.utc), 5, 0.28, -73.967008, 40.770653, -73.963812, 40.771382, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'j6Ci0PcE7EYa0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 58, tzinfo=datetime.timezone.utc), 1, 0.51, -73.982428, 40.77533, -73.983528, 40.781183, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'ZOCMXdObXeqTRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 18, tzinfo=datetime.timezone.utc), 1, 0.29, -73.993812, 40.7461, -73.992637, 40.74275, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'NpcOb29Pblkeaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 12, tzinfo=datetime.timezone.utc), 5, 0.27, -73.959947, 40.773625, -73.95928, 40.771583, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '/1Ma9/YmuybJeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.34, -73.980135, 40.760642, -73.977182, 40.764943, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'z7l0/hMOGDBEEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 25, tzinfo=datetime.timezone.utc), 3, 0.33, -73.977747, 40.755337, -73.97418, 40.759913, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'XkuAlIlh+3ktbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 51, tzinfo=datetime.timezone.utc), 1, 0.5, -73.996747, 40.725477, -74.004458, 40.728512, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'JAcN1rUXdQJWyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 29, tzinfo=datetime.timezone.utc), 5, 0.45, -73.985312, 40.742105, -73.989268, 40.736332, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'YX7JcaTR6cmdPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 36, tzinfo=datetime.timezone.utc), 1, 0.39, -73.959832, 40.801322, -73.966343, 40.803922, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'szNDrNPgj22trw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 31, tzinfo=datetime.timezone.utc), 5, 0.18, -73.957522, 40.779595, -73.959325, 40.7812, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'cJneuywCobknPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 6, tzinfo=datetime.timezone.utc), 1, 0.37, -73.98254, 40.761347, -73.97756, 40.758403, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'O/EbTKTZ/aOi3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 44, tzinfo=datetime.timezone.utc), 1, 0.42, -73.906888, 40.866982, -73.907017, 40.86804, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'U0foDw40+lmeEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 12, 14, 24, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 27, 30, tzinfo=datetime.timezone.utc), 1, 0.3, -73.982174, 40.778271, -73.986992, 40.778909, 'Cash', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'gC9rqb4qbLtX5Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 29, tzinfo=datetime.timezone.utc), 1, 0.47, -73.988575, 40.759087, -73.984177, 40.764822, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '1RY9JYL+4gLxMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 33, tzinfo=datetime.timezone.utc), 1, 0.38, -73.987682, 40.732865, -73.991115, 40.728723, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'MEd66HyOdR51MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 6, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 6, 47, tzinfo=datetime.timezone.utc), 1, 0.35, -73.968943, 40.755935, -73.964697, 40.759225, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'yYw7cMYq2CJDyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 32, tzinfo=datetime.timezone.utc), 1, 0.36, -73.955453, 40.76914, -73.951757, 40.77249, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'jujqMR50P3Sj/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 14, tzinfo=datetime.timezone.utc), 1, 0.44, -73.99916, 40.739253, -73.999105, 40.73398, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'Muv3pVWCLWgqjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 22, tzinfo=datetime.timezone.utc), 1, 0.34, -73.998037, 40.745915, -73.994978, 40.75014, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'KKCYUmmzUyD6VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 13, tzinfo=datetime.timezone.utc), 1, 0.36, -73.976473, 40.743693, -73.979905, 40.739173, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'z+Tgs7i0ptsAWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 14, tzinfo=datetime.timezone.utc), 2, 0.21, -73.975995, 40.740513, -73.975995, 40.740513, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'x7xezutp065reg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 11, tzinfo=datetime.timezone.utc), 5, 0.44, -73.999323, 40.744057, -73.995422, 40.749398, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'aq04LrQuKeftdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 20, tzinfo=datetime.timezone.utc), 3, 0.39, -73.953663, 40.785225, -73.957183, 40.780315, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'cuBU8K/Aros4YQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 19, tzinfo=datetime.timezone.utc), 2, 0.38, -73.982028, 40.76607, -73.988588, 40.768788, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '64Iety2mse/BvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 44, tzinfo=datetime.timezone.utc), 2, 0.46, -73.982657, 40.731163, -73.977872, 40.735643, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'Ipmf6J3HQ0dQrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 52, tzinfo=datetime.timezone.utc), 2, 0.03, -73.987505, 40.762895, -73.987057, 40.762682, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '7ygzN85kVTHTfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 3, tzinfo=datetime.timezone.utc), 1, 0.5, -73.983948, 40.754967, -73.981572, 40.759113, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'GnVQ8NTpuHyVVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 17, tzinfo=datetime.timezone.utc), 5, 0.3, -73.96782, 40.800497, -73.966473, 40.804528, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'ksCraMYgDoVq1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 32, tzinfo=datetime.timezone.utc), 5, 0.42, -73.957183, 40.777553, -73.955857, 40.782078, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'uq3XD8CYoJxxfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 5, tzinfo=datetime.timezone.utc), 1, 0.48, -73.994008, 40.741197, -73.986712, 40.739758, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'oZiSglv5nS1YpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 28, tzinfo=datetime.timezone.utc), 5, 0.37, -73.979953, 40.78117, -73.990388, 40.771755, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'MGOB63QcgoTADw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 35, tzinfo=datetime.timezone.utc), 1, 0.29, -73.979132, 40.762535, -73.979043, 40.765233, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'y6coXL5UiYROVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 0, tzinfo=datetime.timezone.utc), 3, 0.32, -73.98742, 40.728938, -73.990273, 40.724927, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '7+9kO/awJ0Jbuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 40, tzinfo=datetime.timezone.utc), 1, 0.5, -73.979942, 40.786032, -73.975463, 40.792375, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'Jcc95ecIQZmXvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 1, tzinfo=datetime.timezone.utc), 2, 0.32, -73.967253, 40.756275, -73.970093, 40.752137, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'dTMoW0c14/M5LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 4, tzinfo=datetime.timezone.utc), 2, 0.23, -73.994675, 40.750295, -73.998245, 40.751052, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'hCf8PxSfmy2Jug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 20, tzinfo=datetime.timezone.utc), 5, 0.38, -73.992182, 40.725158, -73.989615, 40.730183, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'DTnDX/uRkv3V0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 21, tzinfo=datetime.timezone.utc), 2, 0.27, -73.993535, 40.735985, -73.995877, 40.73291, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'J0XGee47LmJ87w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 52, tzinfo=datetime.timezone.utc), 1, 0.33, -73.970532, 40.751117, -73.975607, 40.75158, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'GbnyGNhTaO0FAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 8, 8, tzinfo=datetime.timezone.utc), 1, 0.46, -73.949008, 40.781848, -73.95397, 40.777938, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'uB4Nr8jYAiTjSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 42, tzinfo=datetime.timezone.utc), 1, 0.27, -73.956173, 40.779328, -73.959855, 40.77852, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '7fGF68blJxbR7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 36, tzinfo=datetime.timezone.utc), 5, 0.44, -73.962948, 40.81091, -73.965873, 40.805495, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'bRUXdxVskQFt8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 17, 51, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 53, 2, tzinfo=datetime.timezone.utc), 1, 0.5, -73.978753, 40.74093, -73.983581, 40.734376, 'Cash', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'sPYvFJiAQjJZVg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 56, tzinfo=datetime.timezone.utc), 1, 0.38, -73.968658, 40.759145, -73.96489, 40.763832, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', '4S185u8FFS567w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 24, tzinfo=datetime.timezone.utc), 1, 0.44, -73.93162, 40.807068, -73.92925, 40.806315, 'CASH', 3.3, 0.0, 0.0, 0.0, 3.3, '1705685115.6930006', 'DDuFcQ4cXmpndg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 4, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 4, 9, tzinfo=datetime.timezone.utc), 1, 0.46, -73.914422, 40.764653, -73.920125, 40.762755, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '/m5jOjsYi9nz1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 35, tzinfo=datetime.timezone.utc), 1, 0.42, -73.985868, 40.767667, -73.989793, 40.762508, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'CU9v3nIdvVLD/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 16, tzinfo=datetime.timezone.utc), 1, 0.34, -73.995282, 40.735777, -74.000398, 40.737553, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'cfYuHeNsKHNBnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 15, tzinfo=datetime.timezone.utc), 1, 0.0, -74.009423, 40.704445, -74.009297, 40.704483, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'SGHiTU/u+YfKKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 41, tzinfo=datetime.timezone.utc), 1, 0.47, -73.99409, 40.725768, -73.988892, 40.72753, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'e87lymCWOOsz0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 49, tzinfo=datetime.timezone.utc), 5, 0.46, -73.965665, 40.754808, -73.96139, 40.757575, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'tzReoYyaVmbbNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 38, tzinfo=datetime.timezone.utc), 1, 0.21, -73.985343, 40.739882, -73.98888, 40.741267, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '1OXHqDbgs+MONA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 16, tzinfo=datetime.timezone.utc), 1, 0.29, -73.989517, 40.72036, -73.992103, 40.717807, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '0Ufygosvksw4/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 52, tzinfo=datetime.timezone.utc), 2, 0.26, -73.979772, 40.752008, -73.978955, 40.74936, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'J0Sgo31ZGuHC8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 58, tzinfo=datetime.timezone.utc), 1, 0.32, -73.960535, 40.775505, -73.958082, 40.77965, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'c6aRdP6BlzNyIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 4, tzinfo=datetime.timezone.utc), 1, 0.41, -73.998602, 40.719932, -73.997745, 40.724142, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'w3R8eJZbd9rSEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 40, tzinfo=datetime.timezone.utc), 5, 0.42, -73.904233, 40.745395, -73.911057, 40.747883, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'YdRpy4NZ5fURTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 19, tzinfo=datetime.timezone.utc), 5, 0.38, -73.968172, 40.755768, -73.970483, 40.750647, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'jxys/cXQqaALaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 33, tzinfo=datetime.timezone.utc), 1, 0.13, -73.995858, 40.749508, -73.994562, 40.751088, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'duaB7kAcA3qb6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 0, tzinfo=datetime.timezone.utc), 1, 0.21, -73.993577, 40.721143, -73.991793, 40.722233, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'JKAWaGN+7dEZrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 28, tzinfo=datetime.timezone.utc), 4, 0.48, -73.992763, 40.742938, -73.988383, 40.748923, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'BY0wRnk1ERuGEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 23, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 36, tzinfo=datetime.timezone.utc), 2, 0.43, -73.970958, 40.795218, -73.967932, 40.800568, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'R35i6EnGixrPnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 1, tzinfo=datetime.timezone.utc), 1, 0.44, -73.996832, 40.744435, -73.998898, 40.739355, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'jBBqjvOFVX/35Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 6, tzinfo=datetime.timezone.utc), 4, 0.49, -73.963997, 40.807942, -73.957425, 40.809128, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 's5ztt7nc20dWKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 1, tzinfo=datetime.timezone.utc), 5, 0.58, -73.950195, 40.771682, -73.944513, 40.77815, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'iPPFiFKhxAOHng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 2, 0.18, -73.951343, 40.774065, -73.953032, 40.775852, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'roS4e7TFN7iuww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 54, tzinfo=datetime.timezone.utc), 5, 0.36, -73.986615, 40.746107, -73.986615, 40.746107, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'mqNRXSK7LJpAGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 2, tzinfo=datetime.timezone.utc), 1, 0.44, -73.980425, 40.767478, -73.973348, 40.764422, 'Credit', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'mm5cLsIX2WaCLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 52, tzinfo=datetime.timezone.utc), 5, 0.39, -73.98581, 40.738167, -73.985067, 40.74225, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'MJvSqgLg/V08qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 43, tzinfo=datetime.timezone.utc), 1, 0.47, -73.948495, 40.77439, -73.949535, 40.779622, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '01LKR+slodWNqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 58, tzinfo=datetime.timezone.utc), 2, 0.54, -73.912462, 40.715472, -73.905012, 40.720428, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '+e1KPjzUmVCr0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 37, tzinfo=datetime.timezone.utc), 1, 0.19, -74.004783, 40.714403, -74.007257, 40.71475, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', '1qe9STb4YM4eOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 51, tzinfo=datetime.timezone.utc), 1, 0.35, -73.974625, 40.746632, -73.972445, 40.747393, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'jESIWxgR9MXGmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 10, tzinfo=datetime.timezone.utc), 2, 0.35, -73.997627, 40.720705, -74.003298, 40.722902, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'kAJvnOK6QUw4Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 31, tzinfo=datetime.timezone.utc), 2, 0.02, -73.987942, 40.723882, -73.987747, 40.724, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 'lMHxV5AAwkejSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 50, tzinfo=datetime.timezone.utc), 2, 0.01, -73.98494, 40.760102, -73.984687, 40.759835, 'CASH', 3.3, 0.5, 0.0, 0.0, 3.8, '1705685115.6930006', 's16nBG8WTCYa9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 27, tzinfo=datetime.timezone.utc), 5, 0.69, -73.98861, 40.764112, -73.981827, 40.758588, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'mZ1Viqyvfg1NdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), 5, 0.88, -73.9786, 40.752078, -73.986537, 40.741075, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'kjgH9XnpLkD+wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 39, tzinfo=datetime.timezone.utc), 5, 0.43, -73.989045, 40.760952, -73.98138, 40.757157, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '27Cib5HBJhWVxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 9, tzinfo=datetime.timezone.utc), 2, 0.07, -73.981902, 40.74689, -73.982945, 40.738677, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'QigmjPVNiP9Lxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 55, tzinfo=datetime.timezone.utc), 1, 0.76, -74.008127, 40.738078, -74.007873, 40.745277, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'rNZqFoFQqgHMaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 21, tzinfo=datetime.timezone.utc), 2, 0.52, -73.955965, 40.782098, -73.95353, 40.788182, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'zTYqgvaWqC9qvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 55, tzinfo=datetime.timezone.utc), 5, 0.85, -73.948975, 40.777507, -73.957585, 40.769825, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'pzwbygrFdY3UBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 0, tzinfo=datetime.timezone.utc), 1, 0.72, -73.967385, 40.802652, -73.963062, 40.811693, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'ra6x21jOAHzpkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 45, tzinfo=datetime.timezone.utc), 2, 0.71, -73.984225, 40.743535, -73.985685, 40.73551, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'YZ6Q6wMDsWnwXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 42, tzinfo=datetime.timezone.utc), 3, 0.69, -73.984322, 40.779978, -73.98138, 40.788515, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'K+CaMx+Pj1Ko9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 23, tzinfo=datetime.timezone.utc), 1, 0.49, -73.991423, 40.730115, -73.995745, 40.726885, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'jLEkihR7e+FKFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 54, tzinfo=datetime.timezone.utc), 2, 0.82, -73.961348, 40.771632, -73.968808, 40.761385, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'pDVtsbm+q2ZOZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.47, -73.992542, 40.748323, -73.988932, 40.7434, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'CqWSw1Eph5LPrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 18, tzinfo=datetime.timezone.utc), 3, 0.64, -73.941485, 40.747517, -73.941485, 40.747517, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '8sILZMTug8tiRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 47, tzinfo=datetime.timezone.utc), 4, 0.66, -74.005805, 40.725333, -74.008758, 40.716265, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'aH3+s6lm2AB3og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.94, -74.003583, 40.73886, -73.99493, 40.750113, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'UhBIIabAIDvl5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 1, tzinfo=datetime.timezone.utc), 2, 0.69, -73.954162, 40.766653, -73.956782, 40.76704, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'mLXVKzkoVEYxYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 12, tzinfo=datetime.timezone.utc), 5, 0.72, -73.960037, 40.776155, -73.95614, 40.784567, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '9ctSVsNdPOCBKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 12, tzinfo=datetime.timezone.utc), 1, 0.8, -73.951038, 40.774425, -73.959097, 40.77011, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'ITcalG5vnnr74w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 1, tzinfo=datetime.timezone.utc), 1, 0.58, -73.9593, 40.775547, -73.950428, 40.77127, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'hJkU2O1CQeclDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 54, tzinfo=datetime.timezone.utc), 1, 0.33, -73.967468, 40.801212, -73.970035, 40.797092, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'C/JiEJsSRjTitw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 41, tzinfo=datetime.timezone.utc), 1, 0.64, -73.989262, 40.757897, -73.982385, 40.76228, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'hFWJa5khXrSrEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 6, 51, tzinfo=datetime.timezone.utc), 2, 0.68, -73.97173, 40.794515, -73.967182, 40.803377, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'aB8vRD+eNsd7Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 40, tzinfo=datetime.timezone.utc), 1, 0.71, -73.966862, 40.757327, -73.97262, 40.74957, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '+MP3vRvkOKEftw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 23, tzinfo=datetime.timezone.utc), 5, 0.68, -73.98959, 40.720412, -73.979697, 40.720147, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'AgZP6Fy326sfoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 14, tzinfo=datetime.timezone.utc), 1, 0.48, -73.980447, 40.774945, -73.981918, 40.76846, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'L9PFdVquFd4kJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 8, tzinfo=datetime.timezone.utc), 1, 0.43, -73.952567, 40.77255, -73.957535, 40.775913, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'GL3EwmNamdoZPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 32, tzinfo=datetime.timezone.utc), 5, 0.44, -73.99837, 40.719873, -73.995075, 40.725558, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'u/GmfU+/VgecSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 40, tzinfo=datetime.timezone.utc), 2, 0.61, -73.932835, 40.764102, -73.93953, 40.757138, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'acyuNBgtskthYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 22, tzinfo=datetime.timezone.utc), 2, 0.7, -73.997672, 40.744915, -73.989895, 40.738645, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'cbr19KIzYq7plA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 15, tzinfo=datetime.timezone.utc), 2, 0.73, -73.954347, 40.764053, -73.95212, 40.771492, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'XMUqqc8etHIRIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 48, tzinfo=datetime.timezone.utc), 1, 0.57, -73.96774, 40.763172, -73.973647, 40.760058, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'kf7qwm5TenYsxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 55, tzinfo=datetime.timezone.utc), 3, 0.73, -73.985985, 40.743822, -73.97811, 40.752573, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'xmUzyRx4DUMLOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 59, tzinfo=datetime.timezone.utc), 1, 0.7, -73.977802, 40.763477, -73.980543, 40.770957, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'MWJDhvel1qwKzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 40, tzinfo=datetime.timezone.utc), 4, 0.72, -73.982637, 40.77711, -73.976082, 40.786318, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'plQGJYzeWrhFmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 37, tzinfo=datetime.timezone.utc), 1, 0.79, -73.963403, 40.774642, -73.956277, 40.78426, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'XFbnGm09MUyLqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 5, tzinfo=datetime.timezone.utc), 5, 0.64, -73.993327, 40.742692, -73.992678, 40.737537, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'SIwrhJ+ZnlW9Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 44, tzinfo=datetime.timezone.utc), 1, 0.71, -73.943898, 40.746402, -73.936217, 40.741662, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '9+BD43y0UqrfDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 15, 32, tzinfo=datetime.timezone.utc), 5, 0.49, -73.974327, 40.760283, -73.966288, 40.757163, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'GFoTSGL5EK4CXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 3, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 19, 9, tzinfo=datetime.timezone.utc), 1, 0.7, -73.952891, 40.776884, -73.950172, 40.780614, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'qWiiWkpn459t+g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 29, tzinfo=datetime.timezone.utc), 4, 0.27, -73.977592, 40.761727, -73.976542, 40.760837, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'jyo7Nipn75Rw1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 21, tzinfo=datetime.timezone.utc), 1, 0.71, -73.993757, 40.747358, -74.002355, 40.74376, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'TRyri8D0p3Lmuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 39, tzinfo=datetime.timezone.utc), 3, 0.87, -73.990065, 40.756212, -73.980465, 40.759433, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'HEI1kbOBblPGBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 45, tzinfo=datetime.timezone.utc), 1, 0.07, -73.979575, 40.735437, -73.973448, 40.743777, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'FjCei78tZTpI+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.5, -73.967553, 40.78778, -73.964007, 40.793868, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'utRmZ4u13i9atQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 37, tzinfo=datetime.timezone.utc), 1, 0.68, -73.981667, 40.75214, -73.981578, 40.75994, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'lSDPHOHIMd0/tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 7, 5, 32, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 5, 34, 6, tzinfo=datetime.timezone.utc), 1, 0.9, -73.963844, 40.773423, -73.953964, 40.784184, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'gk+n93M0FcFNnQ', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 50, tzinfo=datetime.timezone.utc), 1, 0.71, -73.961073, 40.801617, -73.968185, 40.794157, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'sbA4zaJb1ac7uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 19, tzinfo=datetime.timezone.utc), 3, 0.61, -74.007683, 40.732192, -74.005552, 40.74072, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'TiksNrh3MG+f+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 51, tzinfo=datetime.timezone.utc), 1, 0.59, -73.976937, 40.755903, -73.971697, 40.763098, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'W1OQWx3A93jrWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 12, tzinfo=datetime.timezone.utc), 4, 0.66, -73.980412, 40.751005, -73.980087, 40.745883, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'fsVCSMSYlMBjTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 0, tzinfo=datetime.timezone.utc), 1, 0.44, -73.95427, 40.778745, -73.946693, 40.776017, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '8UvTKSLRSCbfuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 52, tzinfo=datetime.timezone.utc), 5, 0.48, -74.000348, 40.71733, -73.996918, 40.723085, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'PIngxqfD/gglRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 35, tzinfo=datetime.timezone.utc), 3, 0.83, -73.966428, 40.761425, -73.959397, 40.771395, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'Xqvct3vhHSdFsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 54, tzinfo=datetime.timezone.utc), 2, 0.58, -73.97628, 40.76564, -73.98218, 40.771518, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '8K1IrPUa5fWbCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.08, -73.983052, 40.761203, -73.98423, 40.760052, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '6rotM1HKt3+urw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 32, tzinfo=datetime.timezone.utc), 1, 0.68, -73.991315, 40.757637, -74.001252, 40.762622, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'tknmU9Nk9MSN/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 26, tzinfo=datetime.timezone.utc), 1, 0.7, -73.978362, 40.756852, -73.98703, 40.753192, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '78Lo1uhCjq0GfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 18, tzinfo=datetime.timezone.utc), 1, 0.96, -73.979907, 40.743287, -73.971467, 40.755583, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'aeustvXPpM+HSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 17, tzinfo=datetime.timezone.utc), 3, 0.68, -73.969078, 40.766808, -73.962895, 40.77534, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '6h9m1+cmXkqmaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 12, tzinfo=datetime.timezone.utc), 1, 0.59, -73.98653, 40.74057, -73.977113, 40.73668, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'JkI2DkXfhHlLwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 3, tzinfo=datetime.timezone.utc), 1, 0.44, -73.950927, 40.785937, -73.947467, 40.783677, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '7GAyeyz3SeDI0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 51, tzinfo=datetime.timezone.utc), 1, 0.53, -73.970188, 40.75983, -73.978042, 40.763495, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'PqxZdMNX5PypZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 8, tzinfo=datetime.timezone.utc), 1, 0.7, -74.011985, 40.713623, -74.00989, 40.721152, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '7KZgEacq7CDHFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 46, tzinfo=datetime.timezone.utc), 1, 0.44, -73.96578, 40.768628, -73.958633, 40.765623, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'aF/t8fO3AWwYgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 16, tzinfo=datetime.timezone.utc), 1, 0.5, -73.981553, 40.780873, -73.985238, 40.777218, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '64FwevpwN2auUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 7, tzinfo=datetime.timezone.utc), 1, 0.63, -73.985203, 40.732577, -73.990707, 40.724405, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'vNWDp8WNq14dbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 49, tzinfo=datetime.timezone.utc), 1, 0.59, -73.955498, 40.785677, -73.958493, 40.778678, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'FJkEH8ugTWyvog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 26, tzinfo=datetime.timezone.utc), 2, 0.82, -73.965858, 40.800575, -73.958228, 40.81055, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'Nym0rNraJKbAMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 54, tzinfo=datetime.timezone.utc), 1, 0.71, -73.975737, 40.752015, -73.976567, 40.744135, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '4F4v+1BXJPrEbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.55, -73.955802, 40.782215, -73.958243, 40.77592, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'PR6k+xfSzOX+aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 15, tzinfo=datetime.timezone.utc), 1, 0.64, -73.945043, 40.779265, -73.950707, 40.784892, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'IBCZVOesrrqKew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 13, tzinfo=datetime.timezone.utc), 1, 0.83, -74.00329, 40.748228, -73.9897, 40.742567, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'tN6BlRBYITMWMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 40, tzinfo=datetime.timezone.utc), 5, 0.74, -73.978505, 40.747695, -73.984858, 40.7395, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'wWWfyvfS5yO2cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 36, tzinfo=datetime.timezone.utc), 1, 0.7, -73.97088, 40.753402, -73.980813, 40.74474, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'dj2eI1vacNxYAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 24, tzinfo=datetime.timezone.utc), 1, 0.7, -73.958125, 40.77286, -73.951727, 40.781347, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'f20bQTabhjHJaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 22, tzinfo=datetime.timezone.utc), 5, 0.45, -73.977967, 40.752118, -73.981803, 40.74658, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'QQo+0HvWAcnG8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 45, tzinfo=datetime.timezone.utc), 2, 0.52, -73.993118, 40.736773, -73.993365, 40.74224, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'COMIH4Jlg6hlxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 21, tzinfo=datetime.timezone.utc), 3, 0.51, -73.946148, 40.781167, -73.950713, 40.785835, 'Credit', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '4xJEmjMTcleWAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 14, tzinfo=datetime.timezone.utc), 1, 0.93, -73.978588, 40.745265, -73.971783, 40.75709, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'IhK4c5+8qCUTUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 3, tzinfo=datetime.timezone.utc), 1, 0.56, -73.974828, 40.75561, -73.970082, 40.76243, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'pDP8yKJoZU0Drw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 18, 6, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 23, 11, tzinfo=datetime.timezone.utc), 1, 1.0, -74.000631, 40.737197, -74.003964, 40.725662, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'hL8j7Dvj44MhsQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 32, tzinfo=datetime.timezone.utc), 1, 0.61, -73.997213, 40.742065, -74.002368, 40.734483, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'liW+QurY224W6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 9, tzinfo=datetime.timezone.utc), 1, 0.66, -73.990463, 40.756012, -73.983673, 40.760652, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'URX8Ut/HF4Em7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 24, tzinfo=datetime.timezone.utc), 1, 0.64, -73.98604, 40.74486, -73.988612, 40.750183, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'lcJnUl3mL3gCpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 21, tzinfo=datetime.timezone.utc), 5, 0.76, -73.973325, 40.792703, -73.973568, 40.78474, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'xQ/JpgIvCtZCOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 56, tzinfo=datetime.timezone.utc), 1, 0.5, -73.952742, 40.786748, -73.95404, 40.790058, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'RuDO2mobe0/bVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 37, tzinfo=datetime.timezone.utc), 5, 0.81, -73.981298, 40.781038, -73.971865, 40.782105, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'C/b8j58fB5iesg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 16, tzinfo=datetime.timezone.utc), 1, 0.69, -73.978897, 40.785195, -73.977328, 40.792053, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'LIJlhcCHKXjrTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 13, tzinfo=datetime.timezone.utc), 1, 0.53, -73.950862, 40.777543, -73.956552, 40.772332, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'WkodsAqx+LCWXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 32, tzinfo=datetime.timezone.utc), 2, 0.48, -73.949825, 40.776173, -73.9435, 40.777768, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'JCix+jgSyrGbuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 22, tzinfo=datetime.timezone.utc), 5, 0.69, -73.997818, 40.740563, -73.99224, 40.742023, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'R22jnISmZqkiOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 24, tzinfo=datetime.timezone.utc), 5, 0.89, -73.96203, 40.767568, -73.960745, 40.777575, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '9sGzuqYnHusTfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 34, tzinfo=datetime.timezone.utc), 1, 0.55, -73.991715, 40.744227, -73.993197, 40.749768, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '0hrotTS7jEcEqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 10, tzinfo=datetime.timezone.utc), 1, 0.52, -73.973087, 40.785515, -73.97905, 40.782222, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'ggAWZZTCEZUBwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 57, tzinfo=datetime.timezone.utc), 5, 0.56, -73.968127, 40.799735, -73.960473, 40.797502, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '2NpCd3LzBKYJ+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 33, tzinfo=datetime.timezone.utc), 3, 0.87, -73.995957, 40.743977, -74.004022, 40.733433, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'rteQNVaUTHqOUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 6, tzinfo=datetime.timezone.utc), 5, 0.76, -73.998442, 40.761892, -74.004508, 40.75218, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '+1eM6l6f0jjr/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 50, tzinfo=datetime.timezone.utc), 2, 0.72, -73.958148, 40.764628, -73.954522, 40.773193, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'yQajHKyywLaHjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 43, tzinfo=datetime.timezone.utc), 1, 0.64, -73.979475, 40.73945, -73.984845, 40.732147, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'K08Gs7zK5TsNOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 36, tzinfo=datetime.timezone.utc), 1, 0.7, -73.966203, 40.789725, -73.975128, 40.78786, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'dfelYE8oxtnUGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 44, tzinfo=datetime.timezone.utc), 5, 0.52, -73.965182, 40.769355, -73.963395, 40.763898, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '1/RYNiKhVxaYQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 39, tzinfo=datetime.timezone.utc), 5, 0.6, -73.96108, 40.775162, -73.95555, 40.782463, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'YPf3HpU3gmbE2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 2, tzinfo=datetime.timezone.utc), 2, 0.6, -73.956565, 40.77963, -73.95471, 40.786718, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'hhG/NaZLivrWFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 49, tzinfo=datetime.timezone.utc), 1, 0.67, -73.982297, 40.731632, -73.980193, 40.739155, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'jFy8gVhHxvsRWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 6, tzinfo=datetime.timezone.utc), 1, 0.67, -73.979515, 40.76443, -73.97693, 40.759063, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'LlatuyQs8I+maA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 21, tzinfo=datetime.timezone.utc), 2, 0.57, -74.000253, 40.726463, -73.994127, 40.732428, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'FfKyOdh+MA8dhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 26, tzinfo=datetime.timezone.utc), 2, 0.63, -73.940245, 40.793615, -73.945995, 40.785683, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'jse6vArmT4CjMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 42, tzinfo=datetime.timezone.utc), 5, 0.38, -73.973087, 40.760393, -73.968852, 40.762418, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'NtEZssDBaJO23A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 30, tzinfo=datetime.timezone.utc), 1, 0.41, -73.99592, 40.732762, -73.990253, 40.730392, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'nGLQdXR71Gn08A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 36, tzinfo=datetime.timezone.utc), 1, 0.6, -73.9565, 40.818037, -73.962237, 40.811372, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'lcfe4fag/dH6EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 58, tzinfo=datetime.timezone.utc), 1, 0.55, -73.991838, 40.764735, -73.984692, 40.766662, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'En6MDobc4qu2dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 46, tzinfo=datetime.timezone.utc), 1, 0.74, -73.99995, 40.727138, -74.008267, 40.729993, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'R8IL9g86aeEnQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 21, tzinfo=datetime.timezone.utc), 1, 0.4, -73.950213, 40.776073, -73.954618, 40.779268, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'KVhRoIc+NqgOCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 54, tzinfo=datetime.timezone.utc), 5, 0.46, -73.98777, 40.756563, -73.993565, 40.752438, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'j4WRVgJaA5UEPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 56, tzinfo=datetime.timezone.utc), 2, 0.57, -73.957608, 40.776528, -73.956952, 40.770373, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'PItoYDQ+av2IWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 34, tzinfo=datetime.timezone.utc), 1, 0.47, -73.955552, 40.779685, -73.957245, 40.77397, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '2yTHUycIMN2X4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 13, tzinfo=datetime.timezone.utc), 1, 0.67, -73.974787, 40.782928, -73.980817, 40.77471, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'XiciQZAkHvspoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 42, tzinfo=datetime.timezone.utc), 2, 0.77, -73.964495, 40.767945, -73.952993, 40.766493, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'VeFMcE0gXEivnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 38, tzinfo=datetime.timezone.utc), 1, 0.74, -74.017833, 40.709532, -74.012558, 40.70355, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'syaYtawLU/NNQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 21, tzinfo=datetime.timezone.utc), 1, 0.67, -73.990755, 40.734787, -73.997643, 40.73336, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'brCDoNr2NqukHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 34, tzinfo=datetime.timezone.utc), 1, 0.72, -73.989262, 40.763105, -73.987115, 40.771003, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'mbefZjbJBgC9xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 54, tzinfo=datetime.timezone.utc), 3, 0.51, -73.967865, 40.753457, -73.968922, 40.75937, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'CMK53ZOmtYQESg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 18, tzinfo=datetime.timezone.utc), 1, 0.73, -74.003897, 40.725745, -74.000423, 40.735467, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '+BpNFgv86BUDkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 13, tzinfo=datetime.timezone.utc), 4, 0.37, -73.997537, 40.7474, -73.991167, 40.745173, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'tJptLoEUIz5IxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 41, tzinfo=datetime.timezone.utc), 5, 0.3, -73.96292, 40.774807, -73.960182, 40.777953, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'uE4djp+azdw3IQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 10, tzinfo=datetime.timezone.utc), 2, 0.24, -73.993823, 40.758942, -73.989693, 40.75762, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'G3x9PvT51wPgBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 25, tzinfo=datetime.timezone.utc), 1, 0.56, -73.990998, 40.770363, -73.996442, 40.763542, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'HG+8ms4q9a/5Yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 32, tzinfo=datetime.timezone.utc), 1, 0.53, -73.994075, 40.74645, -73.995345, 40.749757, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'NM3Qh7Hq050fsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.66, -73.992167, 40.728978, -73.993525, 40.721908, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'dRVyYQ861i5vEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 43, tzinfo=datetime.timezone.utc), 1, 0.64, -73.983003, 40.763395, -73.982285, 40.770797, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'n4Mpc3G7CLtdAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 12, tzinfo=datetime.timezone.utc), 1, 0.47, -73.952795, 40.772418, -73.959858, 40.773578, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'n7pXWOgGGqT87A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 5, tzinfo=datetime.timezone.utc), 5, 0.55, -73.970785, 40.761095, -73.96775, 40.767097, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'P2Xaus8Kz/Ouzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 58, tzinfo=datetime.timezone.utc), 5, 0.45, -73.98233, 40.77135, -73.9818, 40.76637, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'OfD6t1JKpFAh/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.4, -74.010313, 40.717982, -74.005817, 40.714577, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '0hMGK8CK2uHf0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 8, tzinfo=datetime.timezone.utc), 2, 0.77, -73.967822, 40.801587, -73.962095, 40.810558, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'Ot2FQzGbHW0dkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 9, 40, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 43, 3, tzinfo=datetime.timezone.utc), 1, 0.7, -73.992649, 40.743043, -73.99156, 40.749958, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'fQGJquA28pV/jw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 21, tzinfo=datetime.timezone.utc), 1, 0.75, -73.975802, 40.751958, -73.982918, 40.743647, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'P1QQwL+TGT1+NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 6, 31, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 6, 34, 20, tzinfo=datetime.timezone.utc), 1, 0.7, -73.984271, 40.756985, -73.991305, 40.749982, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'eBhGw77sKOdsLw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 24, tzinfo=datetime.timezone.utc), 1, 0.75, -73.987717, 40.750658, -73.979838, 40.75592, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'BXMHS8sqMLKBuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 20, tzinfo=datetime.timezone.utc), 1, 0.79, -73.960848, 40.765938, -73.967908, 40.755827, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'z2huaz7uIRqCsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 58, tzinfo=datetime.timezone.utc), 1, 0.79, -73.95171, 40.778037, -73.94682, 40.785052, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'rtdSsX9gvlln/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 44, tzinfo=datetime.timezone.utc), 5, 0.7, -73.986027, 40.742652, -73.980902, 40.74651, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '4hZu9RPS5uEvYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 7, 0, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 17, 16, tzinfo=datetime.timezone.utc), 1, 0.8, -73.96944, 40.758427, -73.960744, 40.769584, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'Wy7PR7kVdmUo6g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 19, tzinfo=datetime.timezone.utc), 1, 0.35, -73.98062, 40.758405, -73.987708, 40.75927, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'URZGfVhfoGymdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 5, tzinfo=datetime.timezone.utc), 1, 0.67, -73.96059, 40.775445, -73.954415, 40.78381, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '6wlcLuEpdSJBTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 32, tzinfo=datetime.timezone.utc), 5, 0.63, -73.974063, 40.791827, -73.968817, 40.786482, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'nfZQnOazU1zX+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 4, tzinfo=datetime.timezone.utc), 1, 0.68, -73.963943, 40.767763, -73.956485, 40.762727, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'LCAQI8CpBZdf+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 35, tzinfo=datetime.timezone.utc), 1, 0.74, -73.998722, 40.745315, -73.991708, 40.754327, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'G/egOzpx+63LtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 7, 31, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 34, 18, tzinfo=datetime.timezone.utc), 1, 0.8, -73.965648, 40.756221, -73.964451, 40.764684, 'Cash', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '6LuM051IC5KL3Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 49, tzinfo=datetime.timezone.utc), 1, 0.69, -73.956828, 40.78108, -73.950142, 40.789667, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'lCWqs9PnaV0+CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 0, tzinfo=datetime.timezone.utc), 3, 0.66, -73.989143, 40.742142, -73.97851, 40.737233, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'ASK/w3UiYwb3Rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 49, tzinfo=datetime.timezone.utc), 3, 0.63, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'y3ZN45Ec/S2QUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 44, tzinfo=datetime.timezone.utc), 2, 0.47, -73.994862, 40.75012, -73.98918, 40.751852, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'PiC1DIsXTT4l9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 25, tzinfo=datetime.timezone.utc), 2, 0.61, -73.99687, 40.742143, -73.990785, 40.745517, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '2pRRon4whcInQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 39, tzinfo=datetime.timezone.utc), 1, 0.79, -73.948213, 40.782772, -73.955395, 40.772985, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'nxFSP7PyOiwEsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 1, tzinfo=datetime.timezone.utc), 1, 0.52, -73.981152, 40.764472, -73.98152, 40.758922, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'DniTAGqSTHtJYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 3, tzinfo=datetime.timezone.utc), 1, 0.53, -73.9723, 40.791128, -73.977668, 40.789293, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', '58J9n+4+p1sTAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 52, tzinfo=datetime.timezone.utc), 1, 0.76, -73.959847, 40.813713, -73.963993, 40.804635, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'fpXhxBi3YeH1mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 8, 46, tzinfo=datetime.timezone.utc), 5, 0.67, -73.959937, 40.766742, -73.965787, 40.758603, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'dTkuzwooh5Z+TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 55, tzinfo=datetime.timezone.utc), 1, 0.56, -73.967543, 40.802658, -73.960955, 40.805883, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'tGhMGU2SMU5jyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 36, tzinfo=datetime.timezone.utc), 1, 0.58, -73.98428, 40.757482, -73.990362, 40.751475, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'RtnpFVohYEG36A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 9, tzinfo=datetime.timezone.utc), 1, 0.6, -73.958375, 40.769063, -73.965622, 40.76481, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'IPw361K8FdACUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 46, tzinfo=datetime.timezone.utc), 3, 0.3, -73.957097, 40.777483, -73.959513, 40.774052, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'c/GaSPcGnImeMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 23, tzinfo=datetime.timezone.utc), 5, 0.6, -73.977738, 40.753217, -73.986175, 40.753455, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'oOLP4t1aUtJXlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 27, tzinfo=datetime.timezone.utc), 1, 0.72, -73.998525, 40.739923, -73.987818, 40.738355, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'yoTcKcF+10l9Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 3, tzinfo=datetime.timezone.utc), 1, 0.72, -73.971312, 40.761683, -73.97446, 40.755938, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'rFYvRxF8BiazHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 26, tzinfo=datetime.timezone.utc), 1, 0.71, -73.988338, 40.75013, -73.990883, 40.750843, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'v14e8tb4I20iCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 29, tzinfo=datetime.timezone.utc), 6, 0.64, -73.976662, 40.759475, -73.975768, 40.765705, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'bnJRkOep7FAO2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 20, tzinfo=datetime.timezone.utc), 2, 0.92, -73.998827, 40.739843, -73.994683, 40.74569, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'kytJYj9H2MjPzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 32, tzinfo=datetime.timezone.utc), 1, 0.47, -73.982018, 40.767268, -73.976332, 40.763883, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'XeQoUrjUg1jD9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 43, tzinfo=datetime.timezone.utc), 1, 0.89, -73.974297, 40.7798, -73.964197, 40.7772, 'CASH', 4.1, 0.0, 0.0, 0.0, 4.1, '1705685115.6930006', 'y9Bwvv0WCXYUew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 2, tzinfo=datetime.timezone.utc), 1, 0.55, -73.994455, 40.724863, -73.999947, 40.729232, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'mrd9vk6Y4TvJwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 44, tzinfo=datetime.timezone.utc), 2, 0.69, -73.98533, 40.753395, -73.98533, 40.753395, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'kiqBVKindtbtAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 53, tzinfo=datetime.timezone.utc), 2, 0.56, -73.950477, 40.779915, -73.955978, 40.784688, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'poGKdEN7OwriUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 58, tzinfo=datetime.timezone.utc), 5, 0.57, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'Tu1SG+jv/Qvarg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 22, tzinfo=datetime.timezone.utc), 5, 0.68, -73.975222, 40.761263, -73.97753, 40.754742, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'eOW+z+IxwdC2bA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 40, tzinfo=datetime.timezone.utc), 1, 0.8, -73.982442, 40.731448, -73.973685, 40.73685, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '4a2qrkM5c6mcIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 11, tzinfo=datetime.timezone.utc), 1, 0.59, -73.972518, 40.713762, -73.986427, 40.721807, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'f6g0ZX5H09ymKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 5, tzinfo=datetime.timezone.utc), 5, 0.66, -73.978927, 40.72397, -73.987372, 40.728948, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'xiQyiZ2gwSoh3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 59, tzinfo=datetime.timezone.utc), 4, 0.75, -73.97257, 40.754473, -73.986172, 40.746845, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'g1v6w2mvaRe7/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 45, tzinfo=datetime.timezone.utc), 5, 0.53, -73.991867, 40.744153, -73.99113, 40.750633, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'gtTLZFKY9DBtlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 49, tzinfo=datetime.timezone.utc), 1, 0.77, -74.001282, 40.7318, -73.997843, 40.740133, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 't7Prqal+5M187w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 55, tzinfo=datetime.timezone.utc), 1, 0.38, -74.008232, 40.745165, -74.00591, 40.741108, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'w0NDYaqUyGb0bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 5, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 5, 55, tzinfo=datetime.timezone.utc), 1, 0.52, -73.960862, 40.765043, -73.967222, 40.76906, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'qnewqBU3lDPD8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 0, tzinfo=datetime.timezone.utc), 4, 0.77, -73.95621, 40.784193, -73.962897, 40.778452, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'SrphwVw/bIjWcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.76, -73.974, 40.763832, -73.971763, 40.755032, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'NdfgR+7gdBltMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 6, tzinfo=datetime.timezone.utc), 3, 0.54, -73.976217, 40.744785, -73.983028, 40.743737, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'KCVXDMwwCqge7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), 1, 0.55, -73.984217, 40.728945, -73.986277, 40.734505, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'WVZwCL+cT+pT/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 34, tzinfo=datetime.timezone.utc), 1, 0.48, -73.976968, 40.753373, -73.979863, 40.758817, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'srlCjb/QDgm91w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 36, tzinfo=datetime.timezone.utc), 1, 0.6, -73.985703, 40.747048, -73.992585, 40.74282, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'g6ecJVaC8ndB1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.7, -74.001175, 40.74178, -73.994498, 40.750668, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'elqh1As2euVUKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 5, tzinfo=datetime.timezone.utc), 1, 0.88, -74.00741, 40.715497, -74.00308, 40.727397, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'iHDGs4bCcbbRHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 47, tzinfo=datetime.timezone.utc), 5, 0.6, -73.976687, 40.747943, -73.986265, 40.752382, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'udIg0ts3seLZqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 20, tzinfo=datetime.timezone.utc), 5, 0.41, -73.993933, 40.74535, -73.995868, 40.750195, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'YADQPM6iBI41vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 28, tzinfo=datetime.timezone.utc), 1, 0.58, -73.988803, 40.73644, -73.995478, 40.734458, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'BpmPikGEfiSeWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 19, tzinfo=datetime.timezone.utc), 5, 0.58, -73.988028, 40.749097, -73.98982, 40.756198, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '3AxoaYOSzpf1gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 5, tzinfo=datetime.timezone.utc), 1, 0.65, -73.980752, 40.7295, -73.986898, 40.724407, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'Lwa7Pj4yzb6E8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 25, tzinfo=datetime.timezone.utc), 2, 0.85, -73.982618, 40.731392, -73.974817, 40.741922, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'RN7oklJWVZ+38g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 47, tzinfo=datetime.timezone.utc), 1, 0.61, -73.973263, 40.764137, -73.964955, 40.763263, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'PXARdJmme6bpCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 3, tzinfo=datetime.timezone.utc), 3, 0.7, -73.986065, 40.743525, -73.978167, 40.748987, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '4I+wy9el843yBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 47, tzinfo=datetime.timezone.utc), 1, 0.07, -73.9849, 40.759622, -73.990722, 40.751192, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '8fqBl0cOBkwXqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 13, tzinfo=datetime.timezone.utc), 3, 0.64, -73.969953, 40.799748, -73.974013, 40.79217, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '2F5wxP02KGyjkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 7, tzinfo=datetime.timezone.utc), 3, 0.53, -73.984693, 40.760542, -73.98627, 40.764443, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'sp21yYyqFEuBHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 34, tzinfo=datetime.timezone.utc), 1, 0.62, -73.959273, 40.763467, -73.960977, 40.76983, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'L0S0bSiVTaOrgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 33, tzinfo=datetime.timezone.utc), 3, 0.54, -73.986438, 40.756388, -73.991555, 40.749798, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'uyO9buvRfm1uPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 8, tzinfo=datetime.timezone.utc), 1, 0.65, -73.994405, 40.75098, -73.98565, 40.752683, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '6AlW5FCzfcmPzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 12, tzinfo=datetime.timezone.utc), 2, 0.47, -73.980472, 40.775133, -73.983352, 40.770365, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'VH+3cwWJLnuKTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 2, tzinfo=datetime.timezone.utc), 1, 0.54, -73.971838, 40.762352, -73.977602, 40.766307, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'RcSLrlzhzVjmzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 17, tzinfo=datetime.timezone.utc), 1, 0.69, -73.988548, 40.73135, -73.989937, 40.738418, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '74wp4gxHarGe1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 15, tzinfo=datetime.timezone.utc), 1, 0.77, -73.974078, 40.791275, -73.966228, 40.799623, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'vwtzAvlOirUTZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 38, tzinfo=datetime.timezone.utc), 1, 0.6, -74.007613, 40.74087, -74.000547, 40.742317, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '3edaA6DvqcuscQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 29, tzinfo=datetime.timezone.utc), 3, 0.58, -73.999572, 40.728452, -73.993132, 40.733582, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'cfTiLkZT2iQRbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.81, -73.956433, 40.779135, -73.954458, 40.77053, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'PdZYXNz6KBFKlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 30, tzinfo=datetime.timezone.utc), 3, 0.51, -74.00001, 40.76146, -73.992262, 40.759808, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'QW9Qwew69+Wi3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 40, tzinfo=datetime.timezone.utc), 1, 0.55, -73.9911, 40.734515, -73.991037, 40.728177, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'mIIQ8k8TYphmfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 31, tzinfo=datetime.timezone.utc), 1, 0.68, -73.951225, 40.770198, -73.957632, 40.761897, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'xpHUKcG5iOvJOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 5, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 5, 33, tzinfo=datetime.timezone.utc), 1, 0.69, -73.969383, 40.693115, -73.982415, 40.693655, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'buhdlzM2l1XcHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 13, tzinfo=datetime.timezone.utc), 1, 0.64, -73.964845, 40.7754, -73.963307, 40.76911, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'RdWXP0Oq+Vd5Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 27, tzinfo=datetime.timezone.utc), 1, 0.44, -73.98146, 40.77377, -73.988873, 40.776813, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'nVhwXtZBqu/57A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 41, tzinfo=datetime.timezone.utc), 2, 0.6, -73.98726, 40.747877, -73.988562, 40.73758, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'ctxqxap36BYNKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 4, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 4, 26, tzinfo=datetime.timezone.utc), 1, 0.57, -73.986867, 40.720967, -73.981827, 40.728268, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'FwCwZOio9wXc7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 29, tzinfo=datetime.timezone.utc), 3, 0.6, -73.94861, 40.794602, -73.949422, 40.78942, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'v9/PSv4KsSXNNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 27, tzinfo=datetime.timezone.utc), 1, 0.78, -73.981222, 40.781008, -73.97443, 40.790892, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'p8Oj6Y+vmn/c+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 37, tzinfo=datetime.timezone.utc), 3, 0.51, -73.987173, 40.744475, -73.978617, 40.740948, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'MLv3A04dCRUUeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 41, tzinfo=datetime.timezone.utc), 1, 0.61, -73.992887, 40.713867, -74.003498, 40.715817, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '5UQW2petiAdP8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 33, tzinfo=datetime.timezone.utc), 1, 0.87, -73.997588, 40.741392, -74.004603, 40.730322, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '4tpbG8H+VAU+WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 35, tzinfo=datetime.timezone.utc), 5, 0.61, -73.99407, 40.741005, -73.997347, 40.746812, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'SucAwUF2+BorOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 10, tzinfo=datetime.timezone.utc), 2, 0.69, -73.997137, 40.747315, -73.986377, 40.744455, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'T76hdiF1yCYVPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 13, tzinfo=datetime.timezone.utc), 1, 0.51, -73.9883, 40.731097, -73.989062, 40.736662, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'eWXilLtiBYWTvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 12, tzinfo=datetime.timezone.utc), 1, 0.53, -73.969483, 40.798075, -73.972508, 40.791623, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'J41RwQZqPo56oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 45, tzinfo=datetime.timezone.utc), 1, 0.78, -73.985952, 40.7587, -73.982467, 40.765418, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'kuHCvEUZVBum8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 36, tzinfo=datetime.timezone.utc), 1, 0.91, -73.968577, 40.75428, -73.973155, 40.743248, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'frKDoUcKbg167A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 0, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 50, tzinfo=datetime.timezone.utc), 1, 0.39, -73.98225, 40.768107, -73.985153, 40.76873, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'kiPp0zlm1y5byA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 29, tzinfo=datetime.timezone.utc), 5, 0.56, -73.987683, 40.775415, -73.978542, 40.771943, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'mq1eNOJL+rJBfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 24, tzinfo=datetime.timezone.utc), 1, 0.69, -73.988688, 40.763602, -73.980827, 40.764053, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'LXHFCzxqRn5sWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 56, tzinfo=datetime.timezone.utc), 1, 0.72, -73.946753, 40.800333, -73.939912, 40.794222, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'DMpO/y2NVnQCXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 38, tzinfo=datetime.timezone.utc), 1, 0.8, -73.965745, 40.765505, -73.957853, 40.773453, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'ycXnCQfMsJTuYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 55, tzinfo=datetime.timezone.utc), 1, 0.7, -73.963892, 40.771057, -73.957302, 40.779867, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'zvAb+2l0OOoBxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 43, tzinfo=datetime.timezone.utc), 1, 0.56, -73.987295, 40.776178, -73.98199, 40.778225, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'mhNg2YIkZ8u3Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 17, tzinfo=datetime.timezone.utc), 6, 0.94, -73.958813, 40.780663, -73.947953, 40.787048, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'FqBl7bQZR/SYrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 31, tzinfo=datetime.timezone.utc), 1, 0.74, -74.009113, 40.717052, -74.012382, 40.71512, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '1l8GrLpTebt3ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 25, tzinfo=datetime.timezone.utc), 5, 0.65, -73.966093, 40.762255, -73.96265, 40.757027, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'wOBdrTlEg+HV6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 7, tzinfo=datetime.timezone.utc), 1, 0.65, -73.954528, 40.770085, -73.946572, 40.772828, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'I3eh8ReGTbW5PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 12, tzinfo=datetime.timezone.utc), 5, 0.66, -73.948568, 40.773897, -73.943442, 40.782177, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'WKzJs54b5eDPqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 54, tzinfo=datetime.timezone.utc), 1, 0.72, -73.95593, 40.772312, -73.962148, 40.766762, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'e4LviWfu4//Ldw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 9, tzinfo=datetime.timezone.utc), 1, 0.77, -73.955197, 40.777273, -73.946293, 40.782088, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'r/gIHrOquZSgLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 57, tzinfo=datetime.timezone.utc), 1, 0.58, -73.97651, 40.790738, -73.97053, 40.793638, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'BA9kYNIUqYvLIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 33, tzinfo=datetime.timezone.utc), 1, 0.67, -73.997527, 40.741543, -74.004752, 40.734707, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'siKqEhAY96vI7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 5, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 5, 17, tzinfo=datetime.timezone.utc), 1, 0.62, -73.971917, 40.673988, -73.977357, 40.682088, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '8BMPLzrwcsn0tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 21, tzinfo=datetime.timezone.utc), 1, 0.67, -73.983305, 40.751275, -73.991565, 40.750373, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'ZtwgBE9202gw5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 57, tzinfo=datetime.timezone.utc), 5, 0.64, -74.007912, 40.723032, -74.002395, 40.728068, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'VNj3TAw5QWl/sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 44, tzinfo=datetime.timezone.utc), 2, 0.91, -73.989617, 40.739798, -73.991805, 40.749593, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'zmLLhFtnlOSdpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 35, tzinfo=datetime.timezone.utc), 1, 0.75, -73.972865, 40.795542, -73.979787, 40.786182, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '/10XNaD8x3QxgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 21, tzinfo=datetime.timezone.utc), 5, 0.55, -73.991087, 40.751375, -73.981982, 40.747505, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'ydUhYht9O5lzvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 14, tzinfo=datetime.timezone.utc), 1, 0.57, -73.977905, 40.766363, -73.990202, 40.76615, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'qUSCb3z+wu4KFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 17, tzinfo=datetime.timezone.utc), 5, 0.61, -73.965035, 40.769247, -73.956015, 40.77582, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'Uip5oVBhvhA6lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 54, tzinfo=datetime.timezone.utc), 1, 0.87, -73.986003, 40.752183, -73.978937, 40.76259, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'S9GObatdv6zSlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 6, tzinfo=datetime.timezone.utc), 1, 0.47, -73.970497, 40.751775, -73.97759, 40.75238, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '1ozBR9foB1PWWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 16, tzinfo=datetime.timezone.utc), 5, 0.69, -73.991452, 40.727078, -73.982023, 40.728252, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '94dS2qSTFK5wKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 57, tzinfo=datetime.timezone.utc), 2, 0.75, -73.81395, 40.729608, -73.816035, 40.73097, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'O/y2dP/uxjCxhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 38, tzinfo=datetime.timezone.utc), 2, 0.56, -73.9669, 40.778367, -73.976813, 40.782537, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'PmQ4Dlt8VFVW4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 37, tzinfo=datetime.timezone.utc), 2, 0.8, -73.995345, 40.759723, -73.987455, 40.76855, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '8hveH/v/Wr7jeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 58, tzinfo=datetime.timezone.utc), 1, 0.59, -73.980778, 40.729797, -73.990548, 40.733983, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'q0QZ7CUEPPCZ+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 7, tzinfo=datetime.timezone.utc), 6, 0.63, -73.980618, 40.785135, -73.972388, 40.786628, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '9FOFRVFB/Z9HFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 37, tzinfo=datetime.timezone.utc), 5, 0.73, -73.960687, 40.769765, -73.953963, 40.778627, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'M2k+ckxdXvZB/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 59, tzinfo=datetime.timezone.utc), 1, 0.56, -73.988765, 40.72704, -73.993278, 40.720132, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'u+4fSqdYzPqmHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 15, tzinfo=datetime.timezone.utc), 1, 0.59, -73.995167, 40.74498, -73.995608, 40.738453, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'MPG8hgG4G4CzUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 45, tzinfo=datetime.timezone.utc), 1, 0.72, -73.980907, 40.7535, -73.972152, 40.75287, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'I7do5iPztM7o0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.68, -73.973907, 40.751952, -73.967843, 40.760245, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'zl8+0PZ7Z/2UJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 4, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 25, tzinfo=datetime.timezone.utc), 1, 0.65, -73.996302, 40.727428, -73.996302, 40.727428, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '9xAms+w+LW9pEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 49, tzinfo=datetime.timezone.utc), 5, 0.74, -73.919128, 40.772073, -73.92923, 40.77216, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'mnd4b027YpMAqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 57, tzinfo=datetime.timezone.utc), 5, 0.68, -73.954885, 40.780325, -73.95252, 40.779597, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'zeTLjHfXps/Syw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 53, tzinfo=datetime.timezone.utc), 1, 0.8, -73.974612, 40.754092, -73.983725, 40.752298, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'UwTKOBmjTQQVWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 4, tzinfo=datetime.timezone.utc), 1, 0.65, -73.973685, 40.752882, -73.984228, 40.757517, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'eSeD56jNPF3ygA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 52, tzinfo=datetime.timezone.utc), 2, 0.41, -74.008275, 40.714313, -74.009687, 40.70502, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '6lq5cGQPSGZkBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 39, tzinfo=datetime.timezone.utc), 2, 0.77, -74.00515, 40.72118, -74.004857, 40.731485, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', '05vsR609SnqEoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 11, tzinfo=datetime.timezone.utc), 3, 0.78, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.1, 0.5, 0.0, 0.0, 4.6, '1705685115.6930006', 'D86OnXnLwzWAEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 21, tzinfo=datetime.timezone.utc), 5, 0.6, -73.978507, 40.77734, -73.977702, 40.783983, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '/1DLrbsOD83E4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 53, tzinfo=datetime.timezone.utc), 1, 0.87, -73.979152, 40.744397, -73.984348, 40.73623, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '1Zz0nYtSEGLLKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 2, tzinfo=datetime.timezone.utc), 1, 0.61, -73.995705, 40.743925, -73.991845, 40.738227, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'KewZGCST95OdKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), 5, 0.55, -73.978368, 40.785868, -73.970512, 40.78596, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '61yIPvVnxYbsGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 56, tzinfo=datetime.timezone.utc), 1, 0.62, -73.955317, 40.782878, -73.961737, 40.776188, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'uDXBM6EUzuWmsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 46, tzinfo=datetime.timezone.utc), 1, 0.61, -73.967283, 40.769265, -73.95748, 40.765757, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'QqHDSFZ4IOpd2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 55, tzinfo=datetime.timezone.utc), 1, 0.83, -73.984892, 40.728068, -73.977502, 40.738215, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'O9EZvbPvDnRKwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 37, tzinfo=datetime.timezone.utc), 1, 0.61, -73.971108, 40.761102, -73.977493, 40.761168, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'mRZ/MAIc8E4niQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 50, tzinfo=datetime.timezone.utc), 1, 0.13, -73.969677, 40.760042, -73.971133, 40.760922, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'FlqK2iMDtAQ2Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 29, tzinfo=datetime.timezone.utc), 1, 0.51, -73.992722, 40.758438, -73.994488, 40.752452, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '8ZpWkKvGMq981Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 40, tzinfo=datetime.timezone.utc), 1, 0.68, -73.993818, 40.756743, -73.99229, 40.764178, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'sKQR1RFZP5Wstg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 21, tzinfo=datetime.timezone.utc), 1, 0.65, -73.969582, 40.797828, -73.97546, 40.789762, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'Q+hZ6Sr+20U6rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 16, tzinfo=datetime.timezone.utc), 2, 0.39, -73.97388, 40.764495, -73.975395, 40.75992, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'JKCUCrOYCIDEXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 27, tzinfo=datetime.timezone.utc), 1, 0.59, -73.473328, 40.499037, -73.46454, 40.493963, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '4guugmpMPyKu7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 24, tzinfo=datetime.timezone.utc), 1, 0.53, -73.983578, 40.721572, -73.992283, 40.724732, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'Lad+6La+uGDNBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 2, tzinfo=datetime.timezone.utc), 1, 0.41, -73.986293, 40.758635, -73.985827, 40.762083, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '2+jLxK7EoY+bYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 8, tzinfo=datetime.timezone.utc), 1, 0.68, -73.974728, 40.780133, -73.984332, 40.779682, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '0HtyOWF+ryaPiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 10, tzinfo=datetime.timezone.utc), 5, 0.54, -73.97774, 40.788905, -73.982908, 40.782062, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '8gnB2mxvUsMWnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 3, tzinfo=datetime.timezone.utc), 1, 0.69, -73.978948, 40.782297, -73.980487, 40.775115, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'gbCcW8hPjH0o1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 53, tzinfo=datetime.timezone.utc), 2, 0.62, -74.001052, 40.731828, -74.007628, 40.732267, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'TbqdBuHnpwGXcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 26, tzinfo=datetime.timezone.utc), 2, 0.64, -73.979818, 40.746348, -73.986408, 40.740165, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'edoRaX6+8eoWmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 24, tzinfo=datetime.timezone.utc), 5, 0.67, -73.986265, 40.73475, -73.996308, 40.737253, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'NQm8b0Oi0yBlqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 24, tzinfo=datetime.timezone.utc), 1, 0.61, -74.006502, 40.73652, -74.000147, 40.742877, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'YchskeCWgY2fVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 28, tzinfo=datetime.timezone.utc), 2, 0.62, -73.955242, 40.764713, -73.949502, 40.772562, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'slAKbs0tBM7enQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 25, tzinfo=datetime.timezone.utc), 2, 0.76, -73.947055, 40.784657, -73.953958, 40.774935, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'mtIlnWJvGnGc9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 32, tzinfo=datetime.timezone.utc), 1, 0.44, -73.976722, 40.756015, -73.972648, 40.761777, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'x67dy+cEb7wTVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 38, tzinfo=datetime.timezone.utc), 2, 0.38, -73.979328, 40.784517, -73.97632, 40.789142, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '1VmeRNG3+F9mkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 45, tzinfo=datetime.timezone.utc), 1, 0.64, -73.995207, 40.73962, -73.993982, 40.746382, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'CU97iQQWeJzGzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 17, tzinfo=datetime.timezone.utc), 1, 0.71, -73.984232, 40.742735, -73.992675, 40.737683, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'vOOlDQSscixf5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 4, tzinfo=datetime.timezone.utc), 5, 0.68, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'uEgQlthu8bIQDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 17, tzinfo=datetime.timezone.utc), 5, 0.43, -74.008563, 40.708608, -74.010523, 40.713095, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'drx19f0meYQJlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 37, tzinfo=datetime.timezone.utc), 5, 0.32, -73.978255, 40.773185, -73.982583, 40.772373, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '/AKovSyaVpre4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 29, tzinfo=datetime.timezone.utc), 1, 0.49, -73.99088, 40.765762, -73.990955, 40.760635, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'G7RokO0stE68ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 26, tzinfo=datetime.timezone.utc), 1, 0.48, -73.980597, 40.74515, -73.974778, 40.742037, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '7IoPbsxrp8quhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 7, tzinfo=datetime.timezone.utc), 5, 0.61, -73.992318, 40.758718, -73.993595, 40.752222, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '1jbEoGHSHcO+/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 53, tzinfo=datetime.timezone.utc), 3, 0.75, -73.972415, 40.793945, -73.981018, 40.789085, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'fFIvFTFzLIEtxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 44, tzinfo=datetime.timezone.utc), 5, 0.73, -73.971888, 40.79192, -73.96539, 40.800998, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'LWc1oC2P8rW5MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 42, tzinfo=datetime.timezone.utc), 3, 0.6, -73.962088, 40.767572, -73.956713, 40.774947, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'XEV8MT+prpnY3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 17, tzinfo=datetime.timezone.utc), 4, 0.68, -73.977895, 40.788738, -73.98407, 40.78025, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '/BTSCD4aJPunhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 41, tzinfo=datetime.timezone.utc), 1, 0.47, -73.965377, 40.761883, -73.967338, 40.759317, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'Q362MfdW5xEBZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 24, tzinfo=datetime.timezone.utc), 5, 0.5, -73.999543, 40.73206, -74.005337, 40.735677, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'LA8FS94SWYhr9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 23, tzinfo=datetime.timezone.utc), 1, 0.62, -73.97037, 40.675562, -73.9761, 40.673595, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'F/zVYCEv6QgrkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 20, tzinfo=datetime.timezone.utc), 1, 0.65, -73.983545, 40.773743, -73.98089, 40.780553, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'CTpr8oMTi6Npxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 23, tzinfo=datetime.timezone.utc), 1, 0.58, -74.0061, 40.706323, -74.012555, 40.701652, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'YimfuA3tCxILUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 10, tzinfo=datetime.timezone.utc), 2, 0.9, -74.001497, 40.725515, -73.9976, 40.736045, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'dY9gGsgRoAmdnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 10, tzinfo=datetime.timezone.utc), 1, 0.67, -73.976608, 40.780563, -73.982777, 40.772067, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'IDz0ZCHn2sImow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 47, tzinfo=datetime.timezone.utc), 1, 0.57, -73.98579, 40.757198, -73.980115, 40.753152, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'VwNwcsY61nOhsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 11, tzinfo=datetime.timezone.utc), 1, 0.73, -73.962117, 40.7734, -73.954693, 40.7792, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '/M32Wp/m2knbFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 29, tzinfo=datetime.timezone.utc), 2, 0.86, -73.97035, 40.766178, -73.964008, 40.774852, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'gkLx5mxem/Afyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 18, tzinfo=datetime.timezone.utc), 1, 0.45, -73.987088, 40.766045, -73.989832, 40.760628, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'HXz5QsdMKe3NVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 44, tzinfo=datetime.timezone.utc), 2, 0.54, -73.980738, 40.782585, -73.985868, 40.777237, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'uHgkZz95dKHDhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 43, tzinfo=datetime.timezone.utc), 1, 0.69, -73.959222, 40.813662, -73.956598, 40.81139, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', '0UApdT/4empsng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 54, tzinfo=datetime.timezone.utc), 1, 0.75, -73.975422, 40.749837, -73.982253, 40.756802, 'CASH', 4.1, 1.0, 0.0, 0.0, 5.1, '1705685115.6930006', 'YaxMSpGP1YiVKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 56, tzinfo=datetime.timezone.utc), 1, 1.48, -73.959832, 40.766355, -73.943683, 40.777985, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '/B6ZZ8xjUUq0CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 9, tzinfo=datetime.timezone.utc), 5, 1.81, -73.993013, 40.742647, -73.98259, 40.7641, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Bb08RNG3VBCERg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 0, tzinfo=datetime.timezone.utc), 1, 0.73, -73.983133, 40.739017, -73.991198, 40.733092, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Iq9RJ9Df3jvYAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 1, tzinfo=datetime.timezone.utc), 1, 0.86, -73.957, 40.77744, -73.964998, 40.766395, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '/xO0kHnVAt3kXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 42, tzinfo=datetime.timezone.utc), 1, 1.21, -73.916367, 40.727215, -73.917053, 40.732468, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'TCnJZh+mvEEVhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 5, tzinfo=datetime.timezone.utc), 2, 0.62, -73.954122, 40.77486, -73.962973, 40.775012, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'dLSCZbwSWyxDEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 35, tzinfo=datetime.timezone.utc), 2, 1.28, -74.001878, 40.749177, -74.010243, 40.751102, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Vhf0BgyCmvTdsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 45, tzinfo=datetime.timezone.utc), 3, 1.82, -73.97432, 40.751693, -73.957608, 40.774903, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'EJCHxGFqi4ImBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 23, tzinfo=datetime.timezone.utc), 1, 1.4, -74.006388, 40.734137, -73.99876, 40.750387, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'pkBfETrgLpejLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 15, tzinfo=datetime.timezone.utc), 1, 1.14, -73.998055, 40.76111, -73.985475, 40.767815, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '1Bne4O9gbz/2hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 36, tzinfo=datetime.timezone.utc), 1, 0.92, -73.97648, 40.76425, -73.973793, 40.755018, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'QQcDQJvXRNxezA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 30, tzinfo=datetime.timezone.utc), 1, 1.06, -73.951392, 40.77013, -73.95727, 40.780095, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'eGr0JZCPG2wr4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 32, tzinfo=datetime.timezone.utc), 4, 1.23, -73.963308, 40.798733, -73.961395, 40.811918, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '8ItNYxcTj4irrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 55, tzinfo=datetime.timezone.utc), 1, 1.32, -73.969442, 40.798055, -73.9813, 40.781313, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Jd9Us3l+dAJeTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 44, tzinfo=datetime.timezone.utc), 1, 1.3, -73.989577, 40.752187, -73.97338, 40.75319, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'RV9suMMhBLNKyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 15, tzinfo=datetime.timezone.utc), 1, 1.12, -73.98458, 40.724548, -73.991642, 40.735148, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '35UUHwt6kLQJRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 11, tzinfo=datetime.timezone.utc), 1, 1.1, -73.979015, 40.762038, -73.990878, 40.751498, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '0e54VGX9TvDC+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 55, tzinfo=datetime.timezone.utc), 1, 1.0, -73.979623, 40.752593, -73.984125, 40.76153, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ZK4TXAh+RFksSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 10, tzinfo=datetime.timezone.utc), 1, 1.07, -73.969642, 40.751905, -73.98576, 40.753143, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'YUAaIFxqciNz/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 3, tzinfo=datetime.timezone.utc), 1, 1.19, -73.97841, 40.752378, -73.99306, 40.747648, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '4N81u2vnTJu40Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 12, tzinfo=datetime.timezone.utc), 1, 0.94, -73.995225, 40.742367, -73.985568, 40.739777, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'VnGfYQwDnmk+9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 13, tzinfo=datetime.timezone.utc), 5, 0.6, -73.973103, 40.756315, -73.978798, 40.750505, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'OGCphy7RIY1iAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 6, tzinfo=datetime.timezone.utc), 1, 0.62, -73.954465, 40.764105, -73.961362, 40.75953, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'dCnkN6ffY858Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 41, tzinfo=datetime.timezone.utc), 2, 1.26, -73.958733, 40.778207, -73.970723, 40.76461, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'DrZL6TYYzj2Nww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 17, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.9, -74.00527, 40.736277, -73.997544, 40.725595, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '/kGPDuqyb7510A', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 6, 17, tzinfo=datetime.timezone.utc), 1, 1.84, -74.006753, 40.743918, -73.98998, 40.767357, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'mqCUaCqyR2r9fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 22, tzinfo=datetime.timezone.utc), 1, 1.38, -74.006722, 40.71174, -73.984867, 40.71413, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'YACgp8A0vHqhiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 42, tzinfo=datetime.timezone.utc), 1, 0.85, -73.974363, 40.750702, -73.988507, 40.756938, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'pdRCdPTNrnOIGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 30, tzinfo=datetime.timezone.utc), 2, 0.79, -73.965847, 40.758575, -73.977552, 40.75957, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '93HYi4HABouWHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 42, tzinfo=datetime.timezone.utc), 1, 1.31, -73.962155, 40.773578, -73.971383, 40.757852, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Kb1X76fzsgIJ1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 47, tzinfo=datetime.timezone.utc), 2, 1.05, -73.98279, 40.779098, -73.987857, 40.768772, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'MsstBtqfu3i14w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 2, tzinfo=datetime.timezone.utc), 5, 0.88, -73.992635, 40.7427, -73.97959, 40.739568, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'sc77YRls2lnapA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 25, tzinfo=datetime.timezone.utc), 1, 1.6, -73.95301, 40.780007, -73.938568, 40.796528, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '8nUy1kBxbNIvug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 24, tzinfo=datetime.timezone.utc), 5, 1.05, -73.983247, 40.761388, -73.993022, 40.751275, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'nrEPuRHGu/mAzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 34, tzinfo=datetime.timezone.utc), 1, 1.77, -73.97321, 40.76089, -73.957737, 40.781922, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '6lYCeK9Z1RLO3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 6, tzinfo=datetime.timezone.utc), 5, 0.63, -73.96083, 40.772305, -73.971153, 40.758267, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'mC7Rw909pma4bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 21, tzinfo=datetime.timezone.utc), 1, 1.67, -73.976598, 40.739492, -73.97924, 40.756992, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'mV2kBPwHK9zAwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 37, tzinfo=datetime.timezone.utc), 5, 1.07, -74.007117, 40.70784, -74.015782, 40.714463, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '2nFz5ZL8vQWyJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 56, tzinfo=datetime.timezone.utc), 1, 1.09, -73.997403, 40.735893, -73.979335, 40.728245, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'bsBWWjnmUBfHiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 38, tzinfo=datetime.timezone.utc), 1, 1.13, -73.985948, 40.753133, -73.971045, 40.756182, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'PxTdApF3kFmtWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 48, tzinfo=datetime.timezone.utc), 3, 1.2, -73.971583, 40.795052, -73.952798, 40.78687, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Uj4Yu774preKjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 23, tzinfo=datetime.timezone.utc), 1, 1.74, -73.948712, 40.782197, -73.965447, 40.762708, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ikI89lweaS18Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 24, tzinfo=datetime.timezone.utc), 1, 0.9, -73.998057, 40.716232, -73.998778, 40.714705, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'u0BNIh/cNKG0dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 50, tzinfo=datetime.timezone.utc), 2, 1.28, -73.981992, 40.740352, -73.979268, 40.727845, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'TYv0cdFxZpXmWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 28, tzinfo=datetime.timezone.utc), 1, 1.22, -73.98856, 40.779105, -73.978363, 40.76673, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'YjXbQKAIAPGOMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 15, tzinfo=datetime.timezone.utc), 1, 0.63, -73.99235, 40.75886, -73.987723, 40.753178, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+vcL4G7onc3hDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 2, tzinfo=datetime.timezone.utc), 3, 0.81, -73.98693, 40.754833, -73.991882, 40.74905, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'LtbLwujYLAncIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 7, tzinfo=datetime.timezone.utc), 2, 0.77, -73.991867, 40.750065, -73.986918, 40.753495, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'fYEAUJ28rxh4KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 45, tzinfo=datetime.timezone.utc), 4, 0.76, -73.999877, 40.72678, -74.00027, 40.718648, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ZwpdmPTDCXfrmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 42, tzinfo=datetime.timezone.utc), 3, 1.47, -73.970128, 40.757547, -73.955572, 40.776667, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'wc/w1M+tvil9Sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 42, tzinfo=datetime.timezone.utc), 2, 1.37, -73.97807, 40.752213, -73.981923, 40.766228, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ynJq4yweBJ6ePg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 21, tzinfo=datetime.timezone.utc), 2, 1.72, -73.988867, 40.777988, -73.971088, 40.793042, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'AMWIeNyJThyMIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 15, 41, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 48, 50, tzinfo=datetime.timezone.utc), 3, 1.5, -73.986837, 40.746479, -74.001141, 40.729472, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'fwPyvN2LFC2aiA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 23, tzinfo=datetime.timezone.utc), 2, 1.06, -73.980385, 40.72212, -73.995648, 40.72335, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '7vn76zoX+96Zhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 19, tzinfo=datetime.timezone.utc), 1, 1.72, -73.980147, 40.734773, -73.97025, 40.754828, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '2RY5OtboQJ8W2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 0, tzinfo=datetime.timezone.utc), 1, 1.2, -73.989352, 40.756745, -73.974653, 40.760683, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+h8F+cy3wjw1gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 34, tzinfo=datetime.timezone.utc), 1, 1.28, -73.961063, 40.76164, -73.974928, 40.75555, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'fC6WH9+/NTKSHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 40, tzinfo=datetime.timezone.utc), 1, 0.76, -73.998647, 40.76392, -73.9859, 40.758508, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Kje86gOfi1s1bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 51, tzinfo=datetime.timezone.utc), 1, 1.53, -73.96056, 40.771378, -73.953403, 40.788243, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'QOJ/klF9TIvXAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 58, tzinfo=datetime.timezone.utc), 1, 1.29, -73.951173, 40.778617, -73.966663, 40.772325, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '8NiYTUIhflP13A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 11, tzinfo=datetime.timezone.utc), 2, 1.52, -73.994772, 40.740205, -73.978703, 40.752375, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'L5tCkRyq+1eXLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 58, tzinfo=datetime.timezone.utc), 1, 1.84, -74.007868, 40.711917, -73.988573, 40.693222, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 's8SJcYEtNSmS+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 34, tzinfo=datetime.timezone.utc), 1, 0.86, -73.999925, 40.686052, -74.01273, 40.682038, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'dOW3jFQ15BM+/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 53, tzinfo=datetime.timezone.utc), 1, 0.99, -73.964943, 40.7726, -73.959717, 40.763642, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'h7YRGhbs0a2coA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 54, tzinfo=datetime.timezone.utc), 1, 1.39, -73.972093, 40.763028, -73.959715, 40.781073, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'u4Yt9gGSXL684A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 21, tzinfo=datetime.timezone.utc), 1, 1.08, -73.986428, 40.718148, -73.981503, 40.730917, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'bK/9lVCG9bYj9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 48, tzinfo=datetime.timezone.utc), 1, 1.14, -73.986195, 40.747373, -73.975667, 40.75012, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'WSyonU+8Udo1uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 8, 9, 24, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 32, 50, tzinfo=datetime.timezone.utc), 1, 0.9, -73.978042, 40.752389, -73.990413, 40.75144, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '8ronhYxvCgQn7Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 10, tzinfo=datetime.timezone.utc), 3, 1.51, -73.97774, 40.763773, -73.960693, 40.764842, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'O+SLOfxvIz6Qyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 29, tzinfo=datetime.timezone.utc), 1, 1.41, -73.979682, 40.722905, -73.992915, 40.712488, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'eEKsJiO68SWWwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 11, tzinfo=datetime.timezone.utc), 3, 1.8, -73.94044, 40.750383, -73.938863, 40.766688, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'cZdbnemmCEsCOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 20, tzinfo=datetime.timezone.utc), 5, 1.07, -73.99493, 40.718382, -74.002377, 40.706917, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'nPGnbkiy+/IViw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 17, tzinfo=datetime.timezone.utc), 2, 0.95, -74.004533, 40.742065, -73.993478, 40.74242, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '/IXgI3RJGLXqDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 41, tzinfo=datetime.timezone.utc), 5, 1.23, -73.9829, 40.739135, -73.96983, 40.75711, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+M7rELRykjjlJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 15, tzinfo=datetime.timezone.utc), 2, 1.44, -73.96905, 40.760687, -73.982748, 40.742227, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'gA/rDRGJK15thA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 53, tzinfo=datetime.timezone.utc), 1, 1.23, -73.984925, 40.727965, -74.000862, 40.736305, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'xFmQQgKmazXVRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 14, 14, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 22, 52, tzinfo=datetime.timezone.utc), 3, 0.4, -73.986302, 40.759229, -73.986891, 40.759601, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'fp0m1WYj9M11xw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 34, tzinfo=datetime.timezone.utc), 5, 1.06, -73.995023, 40.740015, -73.993525, 40.729383, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '4r+Xorw5IkHGCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 44, tzinfo=datetime.timezone.utc), 2, 1.3, -74.008542, 40.735053, -74.009915, 40.722325, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'f78Phl84BfOtxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 25, tzinfo=datetime.timezone.utc), 5, 1.3, -73.984752, 40.736713, -74.002258, 40.734755, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '4EVfDrkSgCAHtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 58, tzinfo=datetime.timezone.utc), 1, 0.89, -73.981432, 40.754517, -73.990853, 40.750908, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'vRCfOR86sGNQTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 17, 35, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 42, 46, tzinfo=datetime.timezone.utc), 1, 1.3, -74.001372, 40.736251, -73.996903, 40.747721, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+TDtLlUuckVKLQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 52, tzinfo=datetime.timezone.utc), 1, 1.39, -73.992053, 40.737552, -73.976687, 40.744708, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'oMSkXV/p/88cyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 46, tzinfo=datetime.timezone.utc), 5, 1.56, -73.969717, 40.757322, -73.960205, 40.77624, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'c+q5sWPltZaspQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 18, tzinfo=datetime.timezone.utc), 1, 1.46, -73.98161, 40.780105, -73.980422, 40.763073, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '3r3gNvEmZu/G8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 49, tzinfo=datetime.timezone.utc), 2, 0.78, -73.91745, 40.811737, -73.906687, 40.811707, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'DmdK+bvILbDE4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 49, tzinfo=datetime.timezone.utc), 5, 1.23, -73.980917, 40.737785, -73.996337, 40.732783, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'WKZ0zxVsA+EF7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 37, tzinfo=datetime.timezone.utc), 1, 1.23, -73.977777, 40.773653, -73.963885, 40.777038, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ms6y/1Lc2IwOwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 43, tzinfo=datetime.timezone.utc), 2, 0.87, -73.999118, 40.720035, -74.009738, 40.712193, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '3c2/8Nhs1dvaiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 21, tzinfo=datetime.timezone.utc), 2, 1.67, -73.98799, 40.743663, -73.972595, 40.761998, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '55zAYbSuB9aiNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 59, tzinfo=datetime.timezone.utc), 1, 1.17, -73.959042, 40.775065, -73.973248, 40.784373, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'X10q+oOQGttubw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 29, tzinfo=datetime.timezone.utc), 1, 0.59, -73.954677, 40.773875, -73.953112, 40.767928, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Emf91ml6uHCxJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 2, tzinfo=datetime.timezone.utc), 1, 1.18, -73.973312, 40.785057, -73.9841, 40.770133, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'exvF5pbWvWCdmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 15, tzinfo=datetime.timezone.utc), 5, 1.44, -73.974987, 40.76166, -73.98523, 40.747477, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+AsxL8mQU73yWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 23, tzinfo=datetime.timezone.utc), 5, 0.96, -73.981627, 40.760357, -73.981627, 40.760357, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'aHItP5uWB8KqVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 33, tzinfo=datetime.timezone.utc), 5, 1.2, -73.949892, 40.775167, -73.96281, 40.766232, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '4AegrEyVY1tDjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 38, tzinfo=datetime.timezone.utc), 1, 1.04, -73.992083, 40.750223, -73.98713, 40.757553, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'nGUauWawC+cItw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 56, tzinfo=datetime.timezone.utc), 2, 1.27, -73.988868, 40.740348, -74.00176, 40.736422, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'zaVQIMaOFxV03A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 19, tzinfo=datetime.timezone.utc), 4, 1.21, -73.985223, 40.747643, -73.98953, 40.757953, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'LQndSuiiOQr6OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 13, tzinfo=datetime.timezone.utc), 2, 0.71, -73.994075, 40.751235, -73.98684, 40.759728, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'w1q1Lo9HvMaZ+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 25, tzinfo=datetime.timezone.utc), 1, 1.17, -73.980437, 40.730472, -73.995117, 40.731612, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'qtlhGQ8us2YFjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 46, tzinfo=datetime.timezone.utc), 3, 1.09, -73.987478, 40.732992, -73.973657, 40.72421, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'aRN99CSv+UY6cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 14, tzinfo=datetime.timezone.utc), 1, 1.22, -73.999568, 40.743752, -73.987605, 40.756048, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '1Oxgis1k09qRpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 55, tzinfo=datetime.timezone.utc), 5, 1.13, -73.982167, 40.762982, -73.980547, 40.773458, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'V6lCVVEC9F6JMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 46, tzinfo=datetime.timezone.utc), 1, 0.89, -73.991648, 40.750082, -73.979568, 40.743675, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'p0hkCtioQY1OuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.31, -73.977303, 40.737758, -73.977017, 40.750573, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'aMyjr0IZV7vzjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 48, tzinfo=datetime.timezone.utc), 1, 1.16, -73.975155, 40.790135, -73.98563, 40.777335, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'vwUBF2j634D9ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 26, tzinfo=datetime.timezone.utc), 1, 1.05, -73.995648, 40.73071, -74.004728, 40.740767, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'gQB62PrloQ01yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 28, tzinfo=datetime.timezone.utc), 1, 1.32, -73.965762, 40.76148, -73.950935, 40.774572, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Usk/WmGADjhTrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 0, tzinfo=datetime.timezone.utc), 3, 1.3, -73.978463, 40.785895, -73.967575, 40.802758, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'wekc4fCQrZixPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 37, tzinfo=datetime.timezone.utc), 3, 0.95, -73.975947, 40.758278, -73.979717, 40.765097, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'VR+0NugcgYaNcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 0, tzinfo=datetime.timezone.utc), 6, 1.38, -73.97352, 40.762032, -73.954893, 40.767395, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'CNH2e7oaFEhkxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 34, tzinfo=datetime.timezone.utc), 1, 1.05, -73.966312, 40.75747, -73.954182, 40.764152, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '6TkqlsmclCrb3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 4, tzinfo=datetime.timezone.utc), 2, 0.95, -73.989625, 40.75211, -73.977635, 40.756977, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ofSKB/nAhyCBeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 18, tzinfo=datetime.timezone.utc), 2, 0.75, -73.988992, 40.769087, -73.981925, 40.763152, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'AGXhsm7YRqEX/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 40, tzinfo=datetime.timezone.utc), 1, 1.55, -73.982532, 40.755287, -73.992755, 40.737233, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Mny3BJOLGWOQbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 40, tzinfo=datetime.timezone.utc), 1, 0.97, -73.973662, 40.755022, -73.981557, 40.762988, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'LR80EKbn8IJzaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 51, tzinfo=datetime.timezone.utc), 1, 1.51, -74.006062, 40.73501, -74.00873, 40.72002, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '84IqijpKgi+JBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 1, tzinfo=datetime.timezone.utc), 5, 1.3, -74.008078, 40.705278, -74.015427, 40.711443, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'tVm7BvXqheiWzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 59, tzinfo=datetime.timezone.utc), 1, 1.24, -73.963045, 40.756825, -73.975775, 40.744645, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'AvOiQdx7pnlS+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 39, tzinfo=datetime.timezone.utc), 2, 1.1, -73.984442, 40.748505, -73.98363, 40.75693, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'K8256/Qikebgcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 51, tzinfo=datetime.timezone.utc), 5, 1.25, -73.994482, 40.724837, -73.978083, 40.725305, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'mVAxT0eDq8BReg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 22, tzinfo=datetime.timezone.utc), 1, 1.5, -73.994123, 40.750973, -73.975315, 40.75628, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ywVG4iswX52n3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 24, tzinfo=datetime.timezone.utc), 2, 1.8, -73.996608, 40.737993, -73.98458, 40.759473, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '4nTMVvfmmwwvcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 13, tzinfo=datetime.timezone.utc), 1, 1.56, -73.99606, 40.743497, -74.002472, 40.726343, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ihO2IqUt0W9+VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 36, tzinfo=datetime.timezone.utc), 5, 1.35, -73.96654, 40.756662, -73.985112, 40.75672, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'KXNe4yocfFTMew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 6, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 6, 48, tzinfo=datetime.timezone.utc), 1, 1.64, -73.958825, 40.768917, -73.975133, 40.754592, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 's4KPoTP5oE2p+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 1, tzinfo=datetime.timezone.utc), 4, 1.71, -74.005065, 40.757003, -74.005065, 40.757003, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'X/2CtG/l+VFL+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 12, tzinfo=datetime.timezone.utc), 3, 1.25, -73.992072, 40.695037, -73.999103, 40.684085, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '43B+BdDC0pbKmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 55, tzinfo=datetime.timezone.utc), 2, 1.6, -73.975753, 40.781607, -73.98483, 40.760448, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '7oymwdKBznsC4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 23, tzinfo=datetime.timezone.utc), 5, 0.87, -73.959518, 40.777278, -73.951822, 40.769638, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'CtXD3ojWoPViwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 39, tzinfo=datetime.timezone.utc), 5, 1.03, -73.951945, 40.769593, -73.957193, 40.778415, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'yNt9jm8hE3FY8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 24, tzinfo=datetime.timezone.utc), 2, 1.39, -73.971828, 40.78844, -74.259718, 41.08798, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'APoOrPLQuBRAeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 25, tzinfo=datetime.timezone.utc), 1, 1.24, -73.991928, 40.735382, -74.008293, 40.736907, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'A1VYWI6B5JnwfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 40, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989578, 40.751783, -73.982327, 40.739518, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '1Q/n//pU6JidTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 33, tzinfo=datetime.timezone.utc), 1, 1.39, -73.96078, 40.775828, -73.978567, 40.777622, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '45PV5SXBvqM9eA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 49, tzinfo=datetime.timezone.utc), 1, 1.38, -73.985802, 40.743997, -73.973918, 40.760455, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '6Pcbm1QCpzYBCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 26, tzinfo=datetime.timezone.utc), 5, 1.38, -73.994105, 40.751195, -73.979165, 40.762573, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ccN9iQLhkpbiEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 3, tzinfo=datetime.timezone.utc), 1, 1.24, -73.93936, 40.788113, -73.950107, 41.141398, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'wBRVZgpokOnkHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 15, tzinfo=datetime.timezone.utc), 1, 1.51, -73.959298, 40.777143, -73.943093, 40.790867, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ZFMEd0RPJQ6LlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 52, tzinfo=datetime.timezone.utc), 2, 0.95, -73.977575, 40.738365, -73.971983, 40.749833, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ko4pFTrOgHyaYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 58, tzinfo=datetime.timezone.utc), 1, 1.21, -73.960085, 40.781982, -73.96631, 40.767967, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Ceh1CsAZ8VVPdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 45, tzinfo=datetime.timezone.utc), 2, 0.75, -73.984593, 40.752488, -73.98753, 40.760342, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'jyobm+j15fW3mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 42, tzinfo=datetime.timezone.utc), 1, 1.25, -74.004397, 40.707358, -74.016633, 40.706253, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Xoka5f5doYcXVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 33, tzinfo=datetime.timezone.utc), 1, 1.51, -73.981713, 40.749817, -73.965773, 40.760628, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'tHKrbgQodtwj1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 59, tzinfo=datetime.timezone.utc), 1, 1.3, -73.977368, 40.758498, -73.98513, 40.769367, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'x62CpiONSLRsJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 39, tzinfo=datetime.timezone.utc), 1, 1.1, -73.932557, 40.763905, -73.92252, 40.754668, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'RJaUDI4edRbPyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 44, tzinfo=datetime.timezone.utc), 1, 1.45, -73.981552, 40.732635, -73.975268, 40.749125, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'MYay05EXF4bTeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 6, tzinfo=datetime.timezone.utc), 1, 1.39, -73.962828, 40.774932, -73.977793, 40.777068, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'egFzrgHiamdThA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 42, tzinfo=datetime.timezone.utc), 1, 1.45, -73.987088, 40.716358, -73.986005, 40.730963, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'sTXjHO0BmrFl6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 55, tzinfo=datetime.timezone.utc), 1, 0.99, -74.005545, 40.750937, -73.992497, 40.753607, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'AgAbjTwvaFkSrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 11, tzinfo=datetime.timezone.utc), 1, 1.36, -73.976017, 40.781457, -73.984572, 40.766105, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'khV8PvqHj76bpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 54, tzinfo=datetime.timezone.utc), 1, 0.67, -73.973083, 40.739223, -73.969942, 40.753167, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'I3XlXRUUuP+Okw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 12, tzinfo=datetime.timezone.utc), 2, 0.84, -73.98655, 40.763467, -73.973852, 40.75591, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Ogq045/jswhIUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 39, tzinfo=datetime.timezone.utc), 1, 0.71, -74.001543, 40.74068, -73.994872, 40.750127, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'CQFkxbpj61Gtmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 25, tzinfo=datetime.timezone.utc), 1, 1.43, -73.997623, 40.736108, -74.005463, 40.749825, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'vD+u96t1GzltEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 48, tzinfo=datetime.timezone.utc), 2, 1.13, -73.999875, 40.749778, -73.999185, 40.7504, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'VrKosX4H4d7rKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 40, tzinfo=datetime.timezone.utc), 4, 0.77, -73.984112, 40.757297, -73.991905, 40.749418, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Hz+vqCy4qsTLNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 35, tzinfo=datetime.timezone.utc), 1, 1.08, -73.990083, 40.740852, -74.005315, 40.741153, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'rzBiMydWpoDSmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 35, tzinfo=datetime.timezone.utc), 1, 1.07, -73.962003, 40.770635, -73.972297, 40.757432, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'rhPY9WbiOdd40Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 59, tzinfo=datetime.timezone.utc), 1, 0.82, -73.969653, 40.76058, -73.976938, 40.749903, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '5rCq5FwfMXIRDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 28, tzinfo=datetime.timezone.utc), 1, 0.59, -73.990775, 40.757245, -73.990855, 40.751623, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'HzkIUFAhyVTxRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 1, tzinfo=datetime.timezone.utc), 5, 1.24, -73.991098, 40.717358, -73.991728, 40.731027, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'eO+IzqRaKuWLWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 56, tzinfo=datetime.timezone.utc), 1, 0.64, -73.961382, 40.769092, -73.963607, 40.765943, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Mh0pDEPKxBwa1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 53, tzinfo=datetime.timezone.utc), 3, 1.12, -73.992175, 40.754182, -73.978728, 40.758927, 'Credit', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '9+e2l8qyWin6Jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 39, tzinfo=datetime.timezone.utc), 1, 1.07, -74.003482, 40.738707, -73.994882, 40.75018, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'kc75Em/TSj1XvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 42, tzinfo=datetime.timezone.utc), 5, 1.18, -73.96769, 40.752117, -73.9685, 40.764505, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+7w+wgSrslA+Ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 52, tzinfo=datetime.timezone.utc), 1, 0.9, -73.964793, 40.775512, -73.953495, 40.772722, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'um4Rs8avkBQ+SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 56, tzinfo=datetime.timezone.utc), 1, 1.41, -73.968563, 40.764938, -73.95691, 40.774793, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '2FKDR2vFEjz74A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 42, tzinfo=datetime.timezone.utc), 2, 1.23, -73.981263, 40.778542, -73.97782, 40.790612, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '/IHmEx00+G7L7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 9, tzinfo=datetime.timezone.utc), 5, 0.91, -73.982443, 40.773842, -73.974962, 40.765173, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'K79wM5LnhJK7tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 0, tzinfo=datetime.timezone.utc), 2, 1.39, -73.986045, 40.739687, -74.004925, 40.74672, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'QLIa8ZsavGM5xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 50, tzinfo=datetime.timezone.utc), 2, 1.69, -73.972677, 40.76276, -73.957898, 40.784242, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '+IPGKJm9X/hMnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 29, tzinfo=datetime.timezone.utc), 1, 0.79, -73.9897, 40.759118, -73.985205, 40.759823, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'y1kJHEBmuTylWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 2, tzinfo=datetime.timezone.utc), 5, 0.84, -73.984152, 40.759848, -73.992078, 40.749433, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'IGUI+i5ZRCXnrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 13, tzinfo=datetime.timezone.utc), 1, 1.5, -73.956657, 40.801897, -73.956657, 40.801897, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'n48hq0wxHz+dpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 4, tzinfo=datetime.timezone.utc), 5, 1.22, -73.956392, 40.77884, -73.966662, 40.789965, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '1gcPM5fd+5Cw4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 58, tzinfo=datetime.timezone.utc), 5, 0.79, -73.99494, 40.760503, -73.984947, 40.763203, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'A4zsOaBp0aB5cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.28, -73.977658, 40.753352, -73.995932, 40.753243, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'zpSzbJj3ZjXReA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 31, tzinfo=datetime.timezone.utc), 5, 1.51, -73.99638, 40.738108, -73.981405, 40.753392, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '9Jz3d/fpNd7D+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 23, tzinfo=datetime.timezone.utc), 3, 1.1, -73.968333, 40.79542, -73.975913, 40.78834, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Skl9PBIkD1WaBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.37, -73.99373, 40.741447, -73.982492, 40.757325, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'q906GuTIvmZzLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 50, tzinfo=datetime.timezone.utc), 4, 1.08, -73.971672, 40.745115, -73.993228, 40.752502, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'DBu6lS01Gzp0rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 57, tzinfo=datetime.timezone.utc), 1, 1.45, -74.008617, 40.719757, -74.006173, 40.739895, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '20D5gnGOr+kVIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 30, tzinfo=datetime.timezone.utc), 1, 1.37, -74.003355, 40.717518, -73.991533, 40.723723, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ETsCLs7fUFX4NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 6, tzinfo=datetime.timezone.utc), 1, 1.13, -73.972403, 40.755537, -73.972403, 40.755537, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'JQcZAib+mBlMUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 24, tzinfo=datetime.timezone.utc), 1, 1.41, -73.975748, 40.740752, -73.968457, 40.757337, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'P1W5YgzQJQJqDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 53, tzinfo=datetime.timezone.utc), 5, 1.0, -73.986923, 40.744608, -73.976293, 40.7452, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'jolqlzJBT70nUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 34, tzinfo=datetime.timezone.utc), 1, 0.87, -73.980318, 40.75427, -73.9913, 40.750147, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'nTSPDuIQNaWSCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 52, tzinfo=datetime.timezone.utc), 1, 0.76, -74.001893, 40.737618, -73.989342, 40.732357, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'tmVid8u1Bi+8Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 4, tzinfo=datetime.timezone.utc), 1, 1.35, -73.98766, 40.738375, -73.974795, 40.755108, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'ABWi+E3soiNCxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 45, tzinfo=datetime.timezone.utc), 5, 0.75, -73.975483, 40.757365, -73.982883, 40.761678, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'YApXX931Yhj+vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 48, tzinfo=datetime.timezone.utc), 5, 1.22, -73.987958, 40.728093, -73.998398, 40.722875, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'WfX5BHO17j845w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 11, tzinfo=datetime.timezone.utc), 1, 1.15, -73.986442, 40.718138, -74.001607, 40.715125, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'DPL+wWrnYpb39Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 24, tzinfo=datetime.timezone.utc), 2, 0.87, -73.968462, 40.767667, -73.978617, 40.774853, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'vCvYa/pDUh/pBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 7, tzinfo=datetime.timezone.utc), 1, 1.21, -73.993228, 40.736387, -73.984068, 40.725475, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'qlpdzL/nR5apiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 6, 57, tzinfo=datetime.timezone.utc), 5, 1.59, -73.959058, 40.769068, -73.978397, 40.763307, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '0kKBgaPS9zWZRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 48, tzinfo=datetime.timezone.utc), 1, 1.49, -73.98402, 40.74922, -73.981002, 40.75968, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'gSvvzxAGZz44Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 1, tzinfo=datetime.timezone.utc), 1, 1.41, -73.967128, 40.757155, -73.983777, 40.748997, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'uyFvg5ZkW3DiGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 51, tzinfo=datetime.timezone.utc), 5, 1.07, -73.965172, 40.769215, -73.95778, 40.782308, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'EhkhghyVr3KBTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 37, tzinfo=datetime.timezone.utc), 5, 0.72, -73.990115, 40.756707, -73.98262, 40.764765, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'EDv/lgphpZkGbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 13, tzinfo=datetime.timezone.utc), 2, 0.99, -73.990943, 40.742105, -73.985392, 40.735323, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'bu0cX5RxCbmCVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 36, tzinfo=datetime.timezone.utc), 1, 1.39, -73.977687, 40.759505, -73.98561, 40.741593, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'UI9trny37zsSAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 59, tzinfo=datetime.timezone.utc), 1, 1.22, -74.009722, 40.710222, -73.996802, 40.714888, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '7fOIWpLC7dr+kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 13, tzinfo=datetime.timezone.utc), 1, 0.88, -73.983135, 40.742208, -73.996027, 40.743657, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'LidiaR7QjRIkPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 33, tzinfo=datetime.timezone.utc), 1, 1.36, -73.956333, 40.767915, -73.971837, 40.76001, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'yZm4PkgMPJ/9iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.37, -73.970585, 40.764658, -73.957975, 40.782003, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'tBxzRCKBjA1Uwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 7, tzinfo=datetime.timezone.utc), 1, 0.71, -73.997968, 40.682722, -73.993273, 40.69255, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'g6GyDvG5t5KuxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 30, tzinfo=datetime.timezone.utc), 1, 0.8, -73.974097, 40.760153, -73.978125, 40.766535, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Jkvr1lKnqeERGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 23, tzinfo=datetime.timezone.utc), 5, 1.24, -73.978352, 40.741472, -73.972505, 40.753938, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '697dv8J4BMG/NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 46, tzinfo=datetime.timezone.utc), 5, 1.27, -73.987443, 40.745037, -73.973788, 40.752432, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'hrnlPwejqIYhvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 36, tzinfo=datetime.timezone.utc), 5, 1.13, -74.007712, 40.731938, -73.990982, 40.73669, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '5QI+g04qoUjDxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 49, tzinfo=datetime.timezone.utc), 2, 1.52, -73.985963, 40.758025, -73.974355, 40.744955, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'iUl06Z9m5V1qaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 46, tzinfo=datetime.timezone.utc), 1, 0.89, -73.982828, 40.766793, -73.968578, 40.764855, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'UereZqEXJqh2AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 29, tzinfo=datetime.timezone.utc), 2, 1.32, -73.989728, 40.741642, -73.991115, 40.75571, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '2/75XY36LdoyXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 13, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 9, 34, tzinfo=datetime.timezone.utc), 1, 1.2, -73.987891, 40.737572, -74.001873, 40.735107, 'Cash', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'HtXIjZgnt+vghA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 32, tzinfo=datetime.timezone.utc), 1, 1.04, -73.976305, 40.7581, -73.97788, 40.766358, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'uhSCLSwaOVoqFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 19, tzinfo=datetime.timezone.utc), 1, 1.13, -73.99151, 40.744607, -73.990685, 40.754352, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'SegvwsqLabKGQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 43, tzinfo=datetime.timezone.utc), 1, 0.94, -74.007133, 40.733582, -73.990597, 40.731313, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'N7StipBfsiEwWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 17, tzinfo=datetime.timezone.utc), 1, 1.14, -73.990473, 40.736823, -73.990447, 40.724693, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'e8+i3fH2fbUg7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 31, tzinfo=datetime.timezone.utc), 5, 1.38, -74.005937, 40.706202, -73.98328, 40.711153, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '8e9LjwulNPcN1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.25, -73.946167, 40.775432, -73.958102, 40.76081, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'sr/Cqu3owsJW1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 1, tzinfo=datetime.timezone.utc), 1, 0.88, -73.980673, 40.68868, -73.987317, 40.69359, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'Jy6BXLnp/igHJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 25, tzinfo=datetime.timezone.utc), 1, 0.74, -73.976892, 40.755687, -73.982015, 40.762878, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'satMAZYB94qaWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 29, tzinfo=datetime.timezone.utc), 2, 0.94, -73.99009, 40.746743, -73.974867, 40.741828, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', 'J88VEuB5ymUqEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 46, tzinfo=datetime.timezone.utc), 1, 1.3, -73.976758, 40.788388, -73.957617, 40.780172, 'CASH', 6.1, 0.0, 0.0, 0.0, 6.1, '1705685115.6930006', '30Ue/17dD5erMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 16, tzinfo=datetime.timezone.utc), 5, 0.94, -73.986753, 40.716017, -74.00249, 40.719995, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'H1w3lfFJ4ms5vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 24, tzinfo=datetime.timezone.utc), 1, 0.33, -73.993923, 40.751677, -73.973745, 40.74879, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'odXMYa3cjLsJUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 18, tzinfo=datetime.timezone.utc), 2, 1.16, -74.003558, 40.713673, -73.989572, 40.720505, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'G4U+RJRDWmGDbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 48, tzinfo=datetime.timezone.utc), 1, 1.27, -73.997487, 40.718683, -74.0064, 40.705047, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'kQ+rLxO1HHvhLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 49, tzinfo=datetime.timezone.utc), 1, 1.55, -73.984782, 40.768533, -73.962667, 40.760713, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'IknB3iJPWJ80Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 16, tzinfo=datetime.timezone.utc), 2, 1.35, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '4lHRs/2T+Sjhww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 48, tzinfo=datetime.timezone.utc), 2, 1.43, -73.992483, 40.748513, -73.988905, 40.734882, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'f9Q2n5zv9jIwgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 5, tzinfo=datetime.timezone.utc), 2, 0.92, -73.991918, 40.727185, -74.001452, 40.729317, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'X19DFqKPvOOTQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 45, tzinfo=datetime.timezone.utc), 3, 1.27, -73.983445, 40.739047, -73.988815, 40.724287, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'cUYUAaNWDIuwqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 3, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 33, tzinfo=datetime.timezone.utc), 1, 1.59, -73.955912, 40.772262, -73.968513, 40.786423, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Nicsb8XX+0oq8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 45, tzinfo=datetime.timezone.utc), 2, 1.34, -74.005685, 40.738012, -73.987743, 40.738745, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '5InhV55SQdRELw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 2, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 2, 43, tzinfo=datetime.timezone.utc), 5, 1.3, -74.006518, 40.744268, -73.98747, 40.738855, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '+5p19uL4MVMZMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 1, tzinfo=datetime.timezone.utc), 2, 1.43, -73.98808, 40.729588, -74.004945, 40.718983, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'ehQCRdLvKk9iwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 58, tzinfo=datetime.timezone.utc), 1, 1.49, -73.983047, 40.76623, -73.970193, 40.784693, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'V5qK2hs1pwLXcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 5, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 5, 49, tzinfo=datetime.timezone.utc), 1, 1.34, -74.024252, 40.741082, -74.00794, 40.749342, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'CDKcjyvjSaSd8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 25, tzinfo=datetime.timezone.utc), 1, 1.4, -73.9896, 40.735848, -74.003722, 40.722465, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'dvOcTo8zN4q8Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 46, tzinfo=datetime.timezone.utc), 3, 0.85, -73.988967, 40.748318, -73.977227, 40.747732, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'tqTW5q/tbnwIng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 36, tzinfo=datetime.timezone.utc), 2, 1.17, -73.988335, 40.727817, -74.004123, 40.723987, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'w2JLupeaJVRhig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 10, tzinfo=datetime.timezone.utc), 1, 1.05, -73.992005, 40.751725, -73.991393, 40.740215, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'aD9ktztTKDZoNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 37, tzinfo=datetime.timezone.utc), 1, 1.21, -73.995548, 40.759725, -73.979597, 40.758008, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '9YSXGTPtzN1BXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 1, tzinfo=datetime.timezone.utc), 3, 1.14, -73.99054, 40.756352, -73.977697, 40.76472, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'T1X7rm0De6txxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 52, tzinfo=datetime.timezone.utc), 1, 1.23, -74.003905, 40.74307, -73.988927, 40.742822, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'RAyNmO89MoEBMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 29, tzinfo=datetime.timezone.utc), 2, 1.74, -73.987875, 40.755378, -74.002758, 40.733692, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'i+m7O7Juj/ePUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 14, tzinfo=datetime.timezone.utc), 1, 1.2, -73.982897, 40.762542, -73.96868, 40.761138, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'G72kf2gjkKAUng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 2, tzinfo=datetime.timezone.utc), 5, 1.14, -73.9776, 40.752313, -73.982787, 40.762547, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'GtlJgIwTt2777g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 15, tzinfo=datetime.timezone.utc), 5, 1.17, -73.99489, 40.740002, -73.982675, 40.750733, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Ijg5PN2VoeSG/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 43, tzinfo=datetime.timezone.utc), 1, 1.37, -73.963628, 40.808065, -73.951545, 40.82522, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '/fb8M5tHnlc+ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 27, tzinfo=datetime.timezone.utc), 5, 1.34, -73.971412, 40.761227, -73.97716, 40.74545, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Y/MVVIGEOZlJxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 57, tzinfo=datetime.timezone.utc), 5, 1.12, -73.998392, 40.745568, -73.983697, 40.748017, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'tCFC+J5jO0E2+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 8, tzinfo=datetime.timezone.utc), 1, 1.11, -73.978087, 40.72925, -73.996122, 40.736948, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'aIu9bRoZrcYNYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 45, tzinfo=datetime.timezone.utc), 1, 1.42, -73.988522, 40.737123, -73.97231, 40.746675, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'nxx2dS3q8CRc4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 55, tzinfo=datetime.timezone.utc), 1, 1.26, -73.994077, 40.724653, -73.989957, 40.737982, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'rhYDNhmU4Mv8gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 44, tzinfo=datetime.timezone.utc), 1, 1.41, -73.980523, 40.784042, -73.964617, 40.792657, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'iffAfkqJzp6fxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 30, tzinfo=datetime.timezone.utc), 1, 1.68, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Rl6K8UduCmkQaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 5, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 5, 23, tzinfo=datetime.timezone.utc), 6, 1.64, -73.990783, 40.735515, -73.996003, 40.755987, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'oFXYaFWkJ1cn+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 28, tzinfo=datetime.timezone.utc), 1, 1.43, -73.91892, 40.759118, -73.932357, 40.771463, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '82H7VMSQXSzDjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 13, tzinfo=datetime.timezone.utc), 1, 1.55, -74.001268, 40.722473, -73.98771, 40.738763, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'nWbcKNxUVOb6Rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 56, tzinfo=datetime.timezone.utc), 1, 1.24, 0.0, 0.0, -74.004903, 40.741293, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'ZIlGIIAHqxBBEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 50, tzinfo=datetime.timezone.utc), 1, 1.33, -73.998437, 40.764578, -73.991608, 40.751393, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'xbVkpBoCwNxTHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 14, tzinfo=datetime.timezone.utc), 5, 1.71, -73.939112, 40.810772, -73.9475, 40.790598, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'bcRVwCyeQ9QiiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 16, tzinfo=datetime.timezone.utc), 5, 1.71, -73.99426, 40.740873, -73.981768, 40.75864, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'DItWc8t+GD++0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 16, tzinfo=datetime.timezone.utc), 5, 1.4, -73.964995, 40.791645, -73.949727, 40.780518, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'SM7q7UMTJ8YllA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 28, tzinfo=datetime.timezone.utc), 1, 1.5, -73.962252, 40.77048, -73.977822, 40.762557, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'OwrJTyMKItDsMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 14, tzinfo=datetime.timezone.utc), 2, 1.35, -73.959602, 40.771792, -73.975013, 40.761732, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'sTB5s0W9fgz4iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 3, tzinfo=datetime.timezone.utc), 2, 1.39, -73.969125, 40.768428, -73.988303, 40.779182, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'hvjj7j1DWzomPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 19, tzinfo=datetime.timezone.utc), 1, 1.5, -74.006197, 40.734158, -73.991155, 40.751037, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'kyGzxUHZLJN++A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 2, 2, tzinfo=datetime.timezone.utc), 2, 1.58, -74.00642, 40.732922, -73.993227, 40.752468, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'PwdMWf+Tl9nOGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 3, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 3, 42, tzinfo=datetime.timezone.utc), 1, 1.32, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'X3qORk7AtP8V6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 17, tzinfo=datetime.timezone.utc), 1, 1.04, -73.988472, 40.693618, -73.981065, 40.68779, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'XRYXPFD30JHHOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 53, tzinfo=datetime.timezone.utc), 5, 1.89, -73.977538, 40.764365, -73.955755, 40.776602, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'xMD0XfxH/iN/2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 39, tzinfo=datetime.timezone.utc), 5, 1.29, -73.989217, 40.76373, -73.980703, 40.751217, 'Credit', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '/FinZ7MnaKXEdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 42, tzinfo=datetime.timezone.utc), 1, 1.19, -73.984105, 40.755815, -73.98332, 40.746237, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'rsWrQLZIVxUqHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 16, tzinfo=datetime.timezone.utc), 1, 1.42, -73.947108, 40.775718, -73.940603, 40.792415, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'lXDwYXjUuV+gfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.83, -73.98649, 40.733848, -73.993835, 40.74124, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'jE0jGwOi58PXcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 49, tzinfo=datetime.timezone.utc), 3, 1.17, -73.984147, 40.756892, -73.96694, 40.754007, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'QJOoS8aQqAriqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 2, tzinfo=datetime.timezone.utc), 1, 0.13, -73.973257, 40.76119, -73.97757, 40.77276, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'H0lgsCTM2DKWEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 12, tzinfo=datetime.timezone.utc), 1, 1.52, -73.992708, 40.742903, -73.980487, 40.757643, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'emdhz5SNGM4OvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 20, tzinfo=datetime.timezone.utc), 2, 1.2, -73.980703, 40.76476, -73.996235, 40.760825, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'hm8qNZfi7NvXGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 11, tzinfo=datetime.timezone.utc), 2, 1.56, -73.95868, 40.764217, -73.951823, 40.782177, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'UWG2KN9rCu4grQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 45, tzinfo=datetime.timezone.utc), 3, 1.52, -73.988927, 40.7728, -73.996027, 40.786762, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'os1B5k90PKafYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 1, 54, tzinfo=datetime.timezone.utc), 2, 1.55, -73.993067, 40.727567, -74.001143, 40.742927, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'rzyJlFUCSzArtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 44, tzinfo=datetime.timezone.utc), 4, 1.8, -73.989865, 40.729323, -73.974245, 40.752392, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'MI+qbGmuMUifRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 9, tzinfo=datetime.timezone.utc), 3, 1.54, -73.98342, 40.743678, -73.976402, 40.764853, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '2fCgn0jxZKs89g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 13, tzinfo=datetime.timezone.utc), 1, 1.41, -73.979735, 40.746507, -73.986795, 40.729848, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'diKMMu5ZRHfcxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 25, tzinfo=datetime.timezone.utc), 1, 1.26, -73.972712, 40.747695, -73.991047, 40.750567, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'y6x3x5LnPXzyrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 28, tzinfo=datetime.timezone.utc), 1, 1.07, -73.983052, 40.756678, -73.988482, 40.748588, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '7+VXnjEq5aPSkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 11, tzinfo=datetime.timezone.utc), 2, 1.24, -73.98518, 40.759818, -73.981633, 40.747477, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 's9KiFjH0yETmNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 8, tzinfo=datetime.timezone.utc), 1, 1.46, -73.992397, 40.694377, -73.96939, 40.693117, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'aygcjHoc+luQ2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 27, tzinfo=datetime.timezone.utc), 4, 1.19, -73.964482, 40.807327, -73.952652, 40.816455, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Advipz0LGg0d6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 7, tzinfo=datetime.timezone.utc), 1, 1.44, -73.958322, 40.775717, -73.97378, 40.763517, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '6ciy1ggHrXJXig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 37, tzinfo=datetime.timezone.utc), 1, 1.38, -73.988675, 40.763115, -73.97818, 40.77465, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '63ASL9ZHPo4Yng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 23, tzinfo=datetime.timezone.utc), 1, 1.37, -73.980002, 40.734837, -73.982678, 40.71974, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'sJvXCFcFptTfuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 3, tzinfo=datetime.timezone.utc), 2, 1.61, -73.983262, 40.722085, -73.986708, 40.711845, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'KTcANyfpAo+1WA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 10, tzinfo=datetime.timezone.utc), 5, 1.54, -73.9547, 40.783773, -73.955782, 40.767762, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'sgykzOlwiMRKNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 19, tzinfo=datetime.timezone.utc), 5, 1.21, -73.999335, 40.739028, -73.998315, 40.724645, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'cX3l2J8A+stk1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 31, tzinfo=datetime.timezone.utc), 2, 1.56, -73.966013, 40.761187, -73.950378, 40.773022, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'wqWIZWJCEidOsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 16, tzinfo=datetime.timezone.utc), 2, 1.51, -73.985992, 40.751807, -73.995668, 40.736893, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '7GoTU4DFK8zbOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 7, tzinfo=datetime.timezone.utc), 3, 1.24, -73.987102, 40.724852, -74.00062, 40.735963, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '260heMvcNx9Cuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 14, tzinfo=datetime.timezone.utc), 5, 1.63, -73.995745, 40.726345, -73.977508, 40.738138, 'Credit', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'gmCIV+b9DnGk0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 43, tzinfo=datetime.timezone.utc), 1, 0.99, -73.954398, 40.763983, -73.967823, 40.762622, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'RdKdq2Mx01iFQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 6, tzinfo=datetime.timezone.utc), 5, 1.37, -74.002542, 40.750102, -73.993778, 40.738257, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'FHKBmXCo1BpUsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 0, tzinfo=datetime.timezone.utc), 1, 1.67, -73.932523, 40.707742, -73.953548, 40.699457, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'xbJZXHL+IuD0qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 49, tzinfo=datetime.timezone.utc), 2, 1.48, -73.988827, 40.75858, -74.003025, 40.744262, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'HX6drB5bw0QHyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 27, tzinfo=datetime.timezone.utc), 1, 1.54, -73.957172, 40.780175, -73.971363, 40.79258, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'gkILbZiPPTaGTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 56, tzinfo=datetime.timezone.utc), 2, 1.13, -73.988277, 40.74486, -73.973758, 40.736377, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'UTgbdEOKl2pYuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 10, tzinfo=datetime.timezone.utc), 5, 1.7, -73.982392, 40.772323, -73.972035, 40.788047, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'i530og+Z100TAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 35, tzinfo=datetime.timezone.utc), 3, 1.35, -73.962315, 40.634413, -73.941193, 40.632017, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'j1Ux6rc88xYQUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 7, tzinfo=datetime.timezone.utc), 2, 0.88, -73.991942, 40.725973, -74.000367, 40.719448, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'LADJXGvYKCPWVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 55, tzinfo=datetime.timezone.utc), 2, 1.36, -73.983037, 40.73785, -74.000135, 40.73974, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'NRl5qL0Fw6TVPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 53, tzinfo=datetime.timezone.utc), 1, 1.48, -73.986733, 40.75727, -73.983385, 40.745702, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'NtLUtxOaoheEBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 11, tzinfo=datetime.timezone.utc), 2, 0.84, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'zbi+qrpdiQt4Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 2, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 2, 36, tzinfo=datetime.timezone.utc), 1, 1.09, -74.00615, 40.743888, -74.006045, 40.743787, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'nCn8fSHyKr7V5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 23, tzinfo=datetime.timezone.utc), 6, 1.07, -73.990788, 40.734787, -74.002802, 40.730897, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'mTCefatyrBOexw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 54, tzinfo=datetime.timezone.utc), 5, 1.28, -73.985415, 40.763562, -73.990643, 40.7507, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'aJVOZvkrJyHzRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 53, tzinfo=datetime.timezone.utc), 2, 1.4, -73.979127, 40.749412, -73.994095, 40.736148, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'gbuWWcWjEADaqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 21, tzinfo=datetime.timezone.utc), 2, 1.39, -73.965753, 40.760082, -73.965645, 40.752983, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'YWGs8lUnEcf/Gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 2, 1.06, -73.998543, 40.734033, -74.00443, 40.722788, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'DpPrB6XJeDxaQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 3, tzinfo=datetime.timezone.utc), 1, 1.37, -74.002822, 40.73366, -73.983333, 40.726805, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'mCJBxSbjdJH3vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 32, tzinfo=datetime.timezone.utc), 2, 0.86, -73.972608, 40.758448, -73.98441, 40.761392, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '+4UaRXu/M8sb0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 25, tzinfo=datetime.timezone.utc), 1, 1.38, -73.994887, 40.755177, -74.001222, 40.73917, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'J3sCdzFVGu+q9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 51, tzinfo=datetime.timezone.utc), 1, 1.62, -73.969507, 40.757447, -73.9543, 40.777675, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Cd1AeFLiN0T6kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 5, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 5, 17, tzinfo=datetime.timezone.utc), 1, 1.76, -73.959312, 40.767262, -73.973087, 40.750245, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'XDZE4ddYG3GdZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 4, tzinfo=datetime.timezone.utc), 1, 1.33, -73.987125, 40.75075, -73.987107, 40.764827, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'GdSYEJqF4SjLLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 38, tzinfo=datetime.timezone.utc), 1, 1.46, -73.98623, 40.767053, -73.976977, 40.753845, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'KXfYEyGGsVHLGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 47, tzinfo=datetime.timezone.utc), 3, 1.17, -73.974202, 40.75623, -73.984432, 40.761635, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'DhS1LBNpzKF+Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 24, tzinfo=datetime.timezone.utc), 1, 1.06, -73.981457, 40.764275, -73.966965, 40.757033, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '2ztRWhO8f2b46g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 10, tzinfo=datetime.timezone.utc), 2, 1.3, -73.984875, 40.748588, -74.000695, 40.741738, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'MK9Uk7WGhC1gRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 48, tzinfo=datetime.timezone.utc), 2, 1.12, -73.981173, 40.760275, -73.977312, 40.748772, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'ZW9vJJRAH1q9cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 20, tzinfo=datetime.timezone.utc), 1, 1.81, -73.972297, 40.749822, -73.988858, 40.72689, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'Mu/KHzekjbEBuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 4, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 4, 57, tzinfo=datetime.timezone.utc), 1, 1.88, -73.986003, 40.762348, -73.99912, 40.739338, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'RsQatpT38ggWsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 26, tzinfo=datetime.timezone.utc), 3, 1.65, -73.981968, 40.774338, -73.966867, 40.789237, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'adG9ZC0l/FMaUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 27, tzinfo=datetime.timezone.utc), 5, 1.63, -73.948753, 40.777548, -73.938443, 40.797297, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'DGi8rOOrC+JLEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 58, tzinfo=datetime.timezone.utc), 1, 1.52, -73.965612, 40.75871, -73.955685, 40.771948, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'QtktumJD5Oizuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 14, tzinfo=datetime.timezone.utc), 4, 1.78, -73.975725, 40.749305, -73.958117, 40.764445, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'vUTEPws2pc7yyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 41, tzinfo=datetime.timezone.utc), 1, 1.45, -74.001118, 40.736603, -73.992095, 40.749053, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'uNbWD/LzfnL2gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 31, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978125, 40.763022, -73.977057, 40.753617, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'WPIYNTFr/lzAiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 3, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 3, 38, tzinfo=datetime.timezone.utc), 1, 1.61, -73.9809, 40.782618, -73.983487, 40.754398, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'jGeCUrIQrCAzKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 47, tzinfo=datetime.timezone.utc), 1, 1.04, -73.950985, 40.77477, -73.951138, 40.771737, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'WP+xdjRt7VVCvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 2, 12, tzinfo=datetime.timezone.utc), 1, 1.41, -74.00511, 40.751292, -73.988658, 40.757153, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '1cP4zBGB7m2Fyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 22, tzinfo=datetime.timezone.utc), 5, 1.55, -73.980897, 40.759338, -73.961807, 40.765137, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'jAX1xDIC9lHY0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 14, tzinfo=datetime.timezone.utc), 1, 1.73, -73.999287, 40.744022, -73.983262, 40.765833, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'SMlqPmVc/w1Kig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 30, tzinfo=datetime.timezone.utc), 5, 1.65, -73.98617, 40.726437, -73.979668, 40.745448, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'jVP2CYvNHZF0tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 2, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 2, 9, tzinfo=datetime.timezone.utc), 1, 1.22, -73.980868, 40.765272, -73.995838, 40.767247, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'uLi/92AgDlprqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 55, tzinfo=datetime.timezone.utc), 2, 1.33, -73.977775, 40.778847, -73.960798, 40.775538, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'qk1NuuQIsBx91w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 24, tzinfo=datetime.timezone.utc), 1, 1.55, -73.970262, 40.756457, -73.956347, 40.775588, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', '1V5fWOBCChlaGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 31, tzinfo=datetime.timezone.utc), 1, 1.23, -74.000125, 40.761508, -73.983983, 40.762552, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'yyGx/BNblLSkYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 5, tzinfo=datetime.timezone.utc), 5, 1.5, -74.011228, 40.72382, -74.015998, 40.709185, 'CASH', 6.1, 0.5, 0.0, 0.0, 6.6, '1705685115.6930006', 'AjMo0qRnNe3CCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 42, tzinfo=datetime.timezone.utc), 1, 1.03, -73.973385, 40.743785, -73.97384, 40.737742, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Iw5U7YomrSgikA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 1, tzinfo=datetime.timezone.utc), 1, 1.59, -73.965945, 40.763713, -73.94825, 40.776458, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'fOvUsgLPg7qSgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 32, tzinfo=datetime.timezone.utc), 1, 1.76, -73.994568, 40.755112, -73.996488, 40.759252, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'miFavbqHJ6hrmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 50, tzinfo=datetime.timezone.utc), 3, 1.36, -73.983323, 40.760383, -73.990097, 40.746942, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'o0/YXVPea7LqPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 18, tzinfo=datetime.timezone.utc), 1, 1.28, -73.980402, 40.782997, -73.989295, 40.76939, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '4K5TFEgyaoztGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 56, tzinfo=datetime.timezone.utc), 1, 1.43, -73.992883, 40.748033, -73.999098, 40.760997, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '2hJmbjgP2NFujw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 27, tzinfo=datetime.timezone.utc), 5, 1.38, -73.992698, 40.723763, -73.979653, 40.71489, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 's3uno0bvRWf9Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 0, tzinfo=datetime.timezone.utc), 2, 1.07, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '+Nqlv7YX+atwJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 32, tzinfo=datetime.timezone.utc), 5, 1.7, -73.954018, 40.790388, -73.967477, 40.769267, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '2XrfD804PT5tPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 4, tzinfo=datetime.timezone.utc), 5, 1.41, -73.844438, 40.72145, -73.828282, 40.708103, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'tEVB9aFYWTvVUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 7, tzinfo=datetime.timezone.utc), 1, 1.07, -74.001148, 40.718868, -74.004217, 40.707398, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'AL8maxDU+tqm0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 15, tzinfo=datetime.timezone.utc), 1, 1.18, -73.97508, 40.756843, -73.986, 40.745942, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '9sbL/ptdPxwkXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 41, tzinfo=datetime.timezone.utc), 1, 1.12, -73.989278, 40.746555, -73.978262, 40.76332, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '0GhQjhZ0w9g1Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.1, -73.984145, 40.759352, -73.98216, 40.772033, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'zmdTmbdi08ASWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 48, tzinfo=datetime.timezone.utc), 1, 1.39, -73.985718, 40.740987, -73.999795, 40.726485, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'mKG9ePWt/X4Yng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 28, tzinfo=datetime.timezone.utc), 5, 1.01, -73.949705, 40.796292, -73.940115, 40.7922, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '0OE0mpbNEqSwNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 55, tzinfo=datetime.timezone.utc), 1, 1.47, -73.980118, 40.765173, -73.984203, 40.759652, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'rS4xL4hHPNJ4Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 54, tzinfo=datetime.timezone.utc), 2, 1.38, -73.974885, 40.752247, -73.987363, 40.735998, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'nPBvjv+jSazNLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 59, tzinfo=datetime.timezone.utc), 5, 1.44, -74.006042, 40.73996, -74.004348, 40.725642, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '02NP68GIsZ89Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 20, tzinfo=datetime.timezone.utc), 1, 1.11, -73.998313, 40.755535, -73.98639, 40.76145, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'yifHC3L474f4fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 42, tzinfo=datetime.timezone.utc), 3, 1.21, -73.982203, 40.765458, -73.990823, 40.750867, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'tKO9nuQssHe2Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 52, tzinfo=datetime.timezone.utc), 1, 1.93, -74.007713, 40.725763, -73.995407, 40.750247, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '02hKDiGzGqskMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 24, tzinfo=datetime.timezone.utc), 1, 1.5, -73.9605, 40.769833, -73.94778, 40.788728, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Ur3gp6Me+eabhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 17, tzinfo=datetime.timezone.utc), 3, 1.05, -73.955038, 40.788655, -73.944643, 40.7799, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'LtxCs2oc2jx7ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 41, tzinfo=datetime.timezone.utc), 5, 1.08, -73.953715, 40.76649, -73.96584, 40.773592, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'cJ2R8jkahVE5WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 33, tzinfo=datetime.timezone.utc), 2, 1.4, -73.98033, 40.78044, -73.974458, 40.796595, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'cfKT9aZlvoHaIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 42, tzinfo=datetime.timezone.utc), 3, 0.99, -73.996977, 40.747252, -74.007672, 40.751632, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Ytfnu8HokNGspQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 20, tzinfo=datetime.timezone.utc), 5, 1.88, -73.961087, 40.80156, -73.96792, 40.79243, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'lH+HwrtBOchbXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 37, tzinfo=datetime.timezone.utc), 1, 1.45, -73.97673, 40.755025, -73.978447, 40.739272, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'VwBUS7A5jGLGBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 24, tzinfo=datetime.timezone.utc), 1, 1.27, -73.986012, 40.752105, -73.9791, 40.740265, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Or0IHJDWtdtwIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 48, tzinfo=datetime.timezone.utc), 1, 0.99, -73.969782, 40.752107, -73.960015, 40.762822, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'nhbG+I8mNu4EpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 2, tzinfo=datetime.timezone.utc), 2, 1.21, -73.955375, 40.773515, -73.952945, 40.779268, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'q+RLdjW7pWQ47A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 14, tzinfo=datetime.timezone.utc), 5, 1.3, -73.967322, 40.756943, -73.968028, 40.770402, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '2mnnqzzs3/vNUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 37, tzinfo=datetime.timezone.utc), 1, 1.41, -74.001095, 40.725558, -73.992937, 40.742612, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '6zSX+l050ahuQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 39, tzinfo=datetime.timezone.utc), 2, 1.57, -73.988132, 40.754365, -74.002222, 40.734497, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Ttx5726iYlvuKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 8, tzinfo=datetime.timezone.utc), 4, 1.24, -73.988618, 40.748853, -73.974275, 40.757255, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'f8/1syQwb/A3tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.12, -73.986275, 40.745985, -73.98003, 40.735123, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '80piphiArM0W1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 49, tzinfo=datetime.timezone.utc), 1, 1.12, -73.988408, 40.737633, -73.978192, 40.751555, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'QJRXWE7UIUN7QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 19, tzinfo=datetime.timezone.utc), 1, 1.27, -73.982032, 40.768923, -73.975562, 40.784625, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'w7hy42IZV+yI9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 52, tzinfo=datetime.timezone.utc), 2, 1.39, -73.990025, 40.757395, -73.995997, 40.744252, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '+tq14Ix2W7gpHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 21, tzinfo=datetime.timezone.utc), 1, 1.35, -73.979457, 40.788277, -73.963685, 40.794513, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'eRSzZ0iPldaG+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 58, tzinfo=datetime.timezone.utc), 5, 1.45, -73.963563, 40.802818, -73.9743, 40.788225, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'fuiK/enVKKKPFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 33, tzinfo=datetime.timezone.utc), 1, 1.25, -73.991863, 40.744823, -73.978372, 40.754425, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'fhrUDEIvYYS6LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 28, tzinfo=datetime.timezone.utc), 4, 1.03, -73.987017, 40.733442, -73.996257, 40.742642, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'MneaeP402Om8AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 17, tzinfo=datetime.timezone.utc), 1, 1.66, -73.978248, 40.754102, -73.96269, 40.772485, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'gi/HMuKDVtSBwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.07, -74.000608, 40.757938, -73.987038, 40.757133, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '1Ip5eF2p9f93yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 37, tzinfo=datetime.timezone.utc), 2, 1.16, -73.992803, 40.715138, -73.983545, 40.729895, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'gCipSUwtsYJrnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 49, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989668, 40.735388, -73.981808, 40.749663, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '7XF7/myMzPup3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 13, tzinfo=datetime.timezone.utc), 2, 1.04, -73.98928, 40.736153, -73.97974, 40.748822, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'm9lsV+DVTycoIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 34, tzinfo=datetime.timezone.utc), 2, 1.45, -73.99459, 40.755595, -73.999012, 40.739355, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'rvZdeJGcK9eKbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 16, tzinfo=datetime.timezone.utc), 1, 0.99, -74.013308, 40.704957, -74.011265, 40.71347, 'Credit', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'ifpiJEfLHF4fVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 28, tzinfo=datetime.timezone.utc), 2, 0.87, -73.991592, 40.7318, -73.99534, 40.739282, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'DIwNegy6mcWapQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 52, tzinfo=datetime.timezone.utc), 1, 0.73, -73.97354, 40.754863, -73.985187, 40.75794, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'LHrU3xpEVMpvRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 59, tzinfo=datetime.timezone.utc), 1, 1.12, -74.004082, 40.73958, -73.994643, 40.7504, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'O1ap0ZmmsBgXjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 58, tzinfo=datetime.timezone.utc), 2, 0.94, -73.977715, 40.753152, -73.99047, 40.751063, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'dvN06g81RM00dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 52, tzinfo=datetime.timezone.utc), 2, 1.1, -73.981322, 40.72512, -73.984693, 40.7153, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'f+mYWnR0RnfI4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 25, tzinfo=datetime.timezone.utc), 3, 0.98, -73.990307, 40.756445, -73.980688, 40.764525, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'IaDCQDpGx0n+Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 21, tzinfo=datetime.timezone.utc), 5, 0.92, -73.971448, 40.755447, -73.983322, 40.75613, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '3aBeS3TBr6RuoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 28, tzinfo=datetime.timezone.utc), 1, 1.38, -73.974187, 40.759817, -73.958775, 40.768297, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'VHP7+pioO8qlrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 6, tzinfo=datetime.timezone.utc), 1, 1.49, -73.954088, 40.787173, -73.96585, 40.768523, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'f0ND1n7xCNS3Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 23, tzinfo=datetime.timezone.utc), 1, 1.78, -73.994933, 40.760213, -73.976813, 40.776385, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '9zY3Nw6ryzMdSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 26, tzinfo=datetime.timezone.utc), 1, 1.11, -73.999243, 40.718947, -73.987918, 40.728255, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'rvYhTWG6cqhjDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 42, tzinfo=datetime.timezone.utc), 5, 0.75, -73.995078, 40.7499, -73.988767, 40.759342, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'lk0VoUjyBoEQEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 27, tzinfo=datetime.timezone.utc), 2, 1.18, -73.97929, 40.72657, -73.990393, 40.734768, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'Y8U3R9EiDVkJxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 53, tzinfo=datetime.timezone.utc), 5, 1.66, -73.961755, 40.779665, -73.979837, 40.765755, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '2tjWQcOw7ctnDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 42, tzinfo=datetime.timezone.utc), 5, 1.26, -73.979033, 40.784958, -73.978675, 40.77322, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'xkWDhvxz4Xv1qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 46, tzinfo=datetime.timezone.utc), 5, 1.02, -73.98578, 40.767398, -73.979642, 40.776315, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', '/IoT5qq/lzeckg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 49, tzinfo=datetime.timezone.utc), 1, 0.96, -73.989965, 40.73862, -73.987512, 40.72873, 'CASH', 6.1, 1.0, 0.0, 0.0, 7.1, '1705685115.6930006', 'H++He3DPIVrSMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 37, tzinfo=datetime.timezone.utc), 1, 2.16, -73.975773, 40.760705, -73.997162, 40.736633, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '036J+XiMAcAXCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 10, tzinfo=datetime.timezone.utc), 5, 1.67, -73.982627, 40.73541, -73.99853, 40.720752, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '9t2qcsd9qixkMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 38, tzinfo=datetime.timezone.utc), 1, 0.98, -73.992202, 40.726213, -73.97878, 40.71936, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'nroqHeKCwTVfuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 24, tzinfo=datetime.timezone.utc), 3, 2.0, -73.977028, 40.784713, -73.948627, 40.778028, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'uzI+4t9fOjM+zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 52, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989907, 40.741958, -73.992043, 40.725935, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'lfzeDZAu5Fumvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 21, tzinfo=datetime.timezone.utc), 2, 1.82, -73.979052, 40.755267, -73.988385, 40.742917, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'pMVrSpXM6ZDYfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 37, tzinfo=datetime.timezone.utc), 2, 1.94, -73.972063, 40.747345, -73.987452, 40.72525, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'bPSDffw3mgVD+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 59, tzinfo=datetime.timezone.utc), 2, 1.97, -73.986478, 40.761413, -73.979147, 40.785857, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'EZO7EXv/1CS35g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 27, tzinfo=datetime.timezone.utc), 2, 1.87, -73.996115, 40.724235, -73.998837, 40.742918, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '2UmXSb9y/tt7Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 1, tzinfo=datetime.timezone.utc), 1, 1.85, -73.983513, 40.729173, -73.984962, 40.748068, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'a1mzPLTalS3t6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 36, tzinfo=datetime.timezone.utc), 5, 2.11, -74.003455, 40.731995, -73.991923, 40.755163, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'fT8+0v8Oo7/aEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 39, tzinfo=datetime.timezone.utc), 1, 1.99, -73.994333, 40.745337, -73.968768, 40.74147, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'AQ5JYwct4iF1WA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 44, tzinfo=datetime.timezone.utc), 5, 2.25, -73.985652, 40.763072, -73.961875, 40.776722, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'oLso907ju4DmHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 53, tzinfo=datetime.timezone.utc), 1, 1.86, -73.921442, 40.811133, -73.904885, 40.83283, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'KcdkFNGtyk90UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 37, tzinfo=datetime.timezone.utc), 3, 2.31, -73.957092, 40.779995, -73.985078, 40.771893, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '0+P1tGm0x8VFvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 8, tzinfo=datetime.timezone.utc), 5, 1.88, -74.000548, 40.729918, -73.992095, 40.74884, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'eB3I3uYkxQVAJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 31, tzinfo=datetime.timezone.utc), 5, 1.95, -73.98237, 40.76434, -73.957278, 40.768405, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'SUUbWjB5fqba7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 4, 4, tzinfo=datetime.timezone.utc), 1, 2.02, -73.962218, 40.610573, -73.989313, 40.599362, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'hSS+w2oX6+PAiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 17, tzinfo=datetime.timezone.utc), 1, 1.98, -74.006705, 40.730738, -73.982922, 40.736345, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '/5s/sImkRlR9fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 27, tzinfo=datetime.timezone.utc), 1, 2.58, -73.980908, 40.729575, -73.960588, 40.761493, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'PekDb/bTDtvt0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 25, tzinfo=datetime.timezone.utc), 2, 2.08, -73.982612, 40.745717, -73.992428, 40.721015, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'n62ykxudAPCWGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 20, tzinfo=datetime.timezone.utc), 1, 2.35, -73.98323, 40.77774, -73.965357, 40.805853, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'dgPj29dzXB7RNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 31, tzinfo=datetime.timezone.utc), 5, 2.12, -73.993468, 40.733127, -73.976207, 40.750543, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'fAnSoBSmyN4SbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 13, tzinfo=datetime.timezone.utc), 1, 1.32, -74.004325, 40.730902, -73.99657, 40.718872, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'KC63XaGNXjly5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 0, 37, tzinfo=datetime.timezone.utc), 2, 2.67, -74.001308, 40.751495, -73.982942, 40.783437, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'pjxsBN0i3uaYYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 57, tzinfo=datetime.timezone.utc), 4, 1.66, -73.989692, 40.719422, -74.005615, 40.706067, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'C9Kh8ig/Fje5VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 1, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 9, tzinfo=datetime.timezone.utc), 1, 2.04, -73.979948, 40.677145, -73.995858, 40.694445, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'CPGOl09byaGhAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 47, tzinfo=datetime.timezone.utc), 1, 2.03, -73.96681, 40.753457, -73.960063, 40.776488, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'usibf++D4uqmBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 5, tzinfo=datetime.timezone.utc), 3, 1.94, -73.981855, 40.749578, -73.99076, 40.767687, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '2ydRS/Oj0iqa3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 15, tzinfo=datetime.timezone.utc), 1, 2.1, -73.990292, 40.738627, -73.987328, 40.761752, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'n0ETTcDgMjw0yQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 5, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 5, 28, tzinfo=datetime.timezone.utc), 2, 1.68, -73.959435, 40.774167, -73.951298, 40.77262, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'okIq73tuMLY4CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 34, tzinfo=datetime.timezone.utc), 1, 1.67, -73.99404, 40.751233, -73.992193, 40.735472, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'LZitF405k2hl8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 54, tzinfo=datetime.timezone.utc), 2, 1.26, -74.001712, 40.750827, -73.980998, 40.742137, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '/pahg3chhtm6dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 15, tzinfo=datetime.timezone.utc), 3, 1.78, -73.982477, 40.742533, -74.007363, 40.741788, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'RUW7MDIHPitNTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 43, tzinfo=datetime.timezone.utc), 5, 2.09, -73.958587, 40.778233, -73.964153, 40.756433, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'ZM/vYAY47dzC9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 2, tzinfo=datetime.timezone.utc), 1, 2.1, -73.978303, 40.745523, -73.956827, 40.766945, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'xAUF2BUIjEF6Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 34, tzinfo=datetime.timezone.utc), 1, 1.5, -74.003843, 40.734315, -73.98555, 40.723758, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'L/sYpHqz/sK/xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 1, tzinfo=datetime.timezone.utc), 2, 1.66, -74.005342, 40.73991, -73.979125, 40.731135, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '7KhEh+A7x+W9mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 47, tzinfo=datetime.timezone.utc), 1, 1.08, -73.982115, 40.731857, -73.990033, 40.741008, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'l+OLu1ru8lCiIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 29, tzinfo=datetime.timezone.utc), 1, 1.97, -73.981237, 40.741432, -73.990868, 40.760345, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'P9MSZqYzMXxibA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 54, tzinfo=datetime.timezone.utc), 1, 1.98, -73.989817, 40.743973, -74.017845, 40.747898, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'dsJNWTLW2gMUqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 19, tzinfo=datetime.timezone.utc), 1, 1.62, -73.989728, 40.729758, -73.974012, 40.749373, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '66oL76BG26L1Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 22, tzinfo=datetime.timezone.utc), 5, 1.67, -73.987745, 40.745078, -73.976045, 40.727938, 'Credit', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'TQO4UdA3e9TtmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 29, tzinfo=datetime.timezone.utc), 1, 2.31, -73.992173, 40.740183, -73.985418, 40.7588, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'ighd60pOTjntIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 2, tzinfo=datetime.timezone.utc), 5, 2.24, -74.001827, 40.730337, -73.975647, 40.741042, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '0joukfR83ZeJRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 37, tzinfo=datetime.timezone.utc), 5, 1.38, -73.967198, 40.75653, -73.988132, 40.759375, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '81eRH8aORDQPgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 27, tzinfo=datetime.timezone.utc), 1, 1.49, -73.98193, 40.732247, -74.004318, 40.742443, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'qOl/Lwcumkj8rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 0, tzinfo=datetime.timezone.utc), 3, 1.88, -73.983368, 40.676832, -73.989093, 40.6972, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'cG1pdcjNGj+VIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 23, tzinfo=datetime.timezone.utc), 1, 1.78, -73.898102, 40.859713, -73.89816, 40.85925, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'n1tzsxTlsdSdbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 53, tzinfo=datetime.timezone.utc), 1, 1.81, -73.988452, 40.774752, -73.962885, 40.762418, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'qq4muDI+NimJjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 2, tzinfo=datetime.timezone.utc), 5, 1.98, -73.9936, 40.749835, -73.97898, 40.737187, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'oWhx183t80mB0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 34, tzinfo=datetime.timezone.utc), 1, 2.42, -74.006425, 40.733192, -73.978287, 40.745317, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'rkF8YFyGjR+ytQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 42, tzinfo=datetime.timezone.utc), 2, 1.72, -74.005083, 40.7515, -73.982123, 40.740077, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'j2iD1lE4sMprWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 12, tzinfo=datetime.timezone.utc), 1, 1.51, -73.978105, 40.739985, -74.001258, 40.740763, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '9scOi/jxZe1ZZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 42, tzinfo=datetime.timezone.utc), 5, 1.97, -73.978378, 40.766765, -73.990983, 40.751128, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'okEDcB2cuD4uWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 57, tzinfo=datetime.timezone.utc), 5, 0.83, -73.983988, 40.761717, -73.970575, 40.756448, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'PQbdOMoDbnh+JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 33, tzinfo=datetime.timezone.utc), 1, 1.62, -73.974922, 40.74176, -73.980797, 40.729877, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'WIVqPqc0sP5P+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 35, tzinfo=datetime.timezone.utc), 3, 2.54, -73.952768, 40.776682, -73.975287, 40.748412, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '7A2uu3LKwKkT9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 58, tzinfo=datetime.timezone.utc), 1, 2.34, -74.002738, 40.728517, -73.989965, 40.756223, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'VGdU8BS23wWEsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 5, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 5, 16, tzinfo=datetime.timezone.utc), 5, 2.01, -73.997867, 40.740057, -74.000007, 40.762713, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '87iqofVOnyYnSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 48, tzinfo=datetime.timezone.utc), 2, 1.66, -73.986717, 40.745288, -74.00242, 40.729428, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'kXrq9uSEKWV+FQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 56, tzinfo=datetime.timezone.utc), 1, 2.23, -73.97708, 40.774853, -73.968403, 40.752573, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'ZJTpWduiwUhw0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 5, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 5, 45, tzinfo=datetime.timezone.utc), 1, 2.69, -73.965608, 40.776287, -73.990372, 40.747868, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'qvI5TCeoivQq4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 36, tzinfo=datetime.timezone.utc), 2, 1.88, -73.99534, 40.733763, -73.977938, 40.751738, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'JdYeEn5/U81Ctw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 56, tzinfo=datetime.timezone.utc), 5, 2.05, -74.000952, 40.725935, -74.00393, 40.747853, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '6rXytrNWAZ7Dcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 48, tzinfo=datetime.timezone.utc), 2, 2.05, -73.923102, 40.764275, -73.949917, 40.762185, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'zjuA/bGnN+jIiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 20, tzinfo=datetime.timezone.utc), 1, 2.14, -73.973658, 40.759868, -73.953918, 40.784477, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '1AftBga7bDMsmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 59, tzinfo=datetime.timezone.utc), 2, 2.12, -73.999738, 40.734372, -74.0088, 40.710233, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'wooKpDfID3reVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 36, tzinfo=datetime.timezone.utc), 5, 1.83, -73.967422, 40.760832, -73.947637, 40.775242, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'm4ubn0IHrm/CuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 57, tzinfo=datetime.timezone.utc), 1, 1.56, -73.996483, 40.763243, -73.972695, 40.756068, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'ftlQ+WmCj09X9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 15, tzinfo=datetime.timezone.utc), 1, 2.13, -74.002163, 40.75033, -73.978297, 40.76658, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '1oGH+vU0WR4Sag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 26, tzinfo=datetime.timezone.utc), 1, 2.48, -74.000633, 40.735767, -73.990408, 40.762045, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'WAQtbP6Efydeqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 27, tzinfo=datetime.timezone.utc), 2, 2.13, -74.004893, 40.735327, -73.981122, 40.741475, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'f/TBg8PYA+XysQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 32, tzinfo=datetime.timezone.utc), 5, 2.35, -73.974412, 40.762612, -73.94996, 40.784128, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'hNqsmI0fuMbdHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 27, tzinfo=datetime.timezone.utc), 1, 1.75, -73.97336, 40.751062, -73.985557, 40.731647, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'oXbyUeqVbDtp+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.35, -73.98663, 40.76356, -73.990928, 40.750467, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '2TFEzEWDbAS7mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 57, tzinfo=datetime.timezone.utc), 2, 1.57, -74.00372, 40.732177, -73.987402, 40.720297, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'g/+xgh3d+Ajvvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 19, tzinfo=datetime.timezone.utc), 1, 1.7, -73.987922, 40.732138, -73.97718, 40.751192, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '0PCWMFtx7xPtOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 4, tzinfo=datetime.timezone.utc), 1, 1.98, -73.982288, 40.761977, -73.986598, 40.742585, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'OUJtZ+K247XFDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 5, tzinfo=datetime.timezone.utc), 1, 1.52, -74.004522, 40.734005, -73.989775, 40.749958, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'rvk1IP6vWQLMow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 17, tzinfo=datetime.timezone.utc), 1, 1.9, -73.988885, 40.721598, -73.960948, 40.709347, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'mXn+eq/lWrJ3og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 47, tzinfo=datetime.timezone.utc), 2, 1.55, -73.988245, 40.723215, -73.999717, 40.734408, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'XCzsRGuVoI879Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 34, tzinfo=datetime.timezone.utc), 2, 2.17, -73.971753, 40.749702, -73.956138, 40.77168, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'sfKqB/sL8nhMiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 2, 36, tzinfo=datetime.timezone.utc), 1, 2.17, -73.989062, 40.72296, -74.00631, 40.739628, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'lFzedE4D9Tqo+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 55, tzinfo=datetime.timezone.utc), 5, 2.1, -73.986443, 40.737285, -74.00872, 40.718167, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'yitEnvQA8Uw9xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 47, tzinfo=datetime.timezone.utc), 2, 1.56, -73.997227, 40.714282, -73.985785, 40.735012, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'CDBNtUMwfuaqxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 7, tzinfo=datetime.timezone.utc), 1, 2.42, -73.990613, 40.732152, -73.983687, 40.750938, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 's/fA9eQ8RljXpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 17, tzinfo=datetime.timezone.utc), 1, 2.29, -73.945065, 40.778617, -73.938887, 40.805082, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'vZM42fg+iighJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 30, tzinfo=datetime.timezone.utc), 3, 1.68, -74.006393, 40.743907, -73.992757, 40.730735, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'jVbksGKT3M+UIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 22, tzinfo=datetime.timezone.utc), 5, 1.79, -73.997882, 40.741188, -73.997883, 40.722247, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'he33yjdOLCGUYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 26, tzinfo=datetime.timezone.utc), 1, 1.93, -74.018065, 40.764337, -74.010433, 40.760953, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '+t9Skcjd4Ndkdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 8, tzinfo=datetime.timezone.utc), 1, 2.38, -73.966188, 40.770982, -73.95225, 40.799685, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '9L7EBBYu3sCd2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 55, tzinfo=datetime.timezone.utc), 1, 1.15, -73.976547, 40.78567, -73.988028, 40.774825, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'YvYI19iuD1OROA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 16, tzinfo=datetime.timezone.utc), 1, 1.87, -73.979607, 40.727445, -74.000055, 40.743355, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'FYIk9AmWJ9ksMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 18, tzinfo=datetime.timezone.utc), 1, 2.08, -73.969472, 40.749383, -73.962767, 40.773153, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'iMFAE7EGK96Fag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 33, tzinfo=datetime.timezone.utc), 1, 1.96, -73.972445, 40.756727, -73.992495, 40.737428, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'n3AKp9VJPleuXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 47, tzinfo=datetime.timezone.utc), 5, 1.88, -74.008512, 40.734453, -73.982263, 40.739895, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'jTKEfLO9B7TZpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 35, tzinfo=datetime.timezone.utc), 5, 1.85, -73.979002, 40.740498, -74.000415, 40.730148, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', 'ooo8nXVSHyapJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 47, tzinfo=datetime.timezone.utc), 1, 2.6, -74.013343, 40.744178, -74.000353, 40.741883, 'CASH', 7.7, 0.5, 0.0, 0.0, 8.2, '1705685115.6930006', '8o5i8nft28VlHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 10, tzinfo=datetime.timezone.utc), 2, 0.8, -73.97372, 40.752203, -73.972752, 40.761275, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'dkd0FiyYr5miIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 3, tzinfo=datetime.timezone.utc), 1, 1.67, -73.960317, 40.77888, -73.977523, 40.772748, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'jIScLKbsah8w3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 58, tzinfo=datetime.timezone.utc), 1, 1.54, -73.986952, 40.732353, -73.996953, 40.744617, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'wmja0dvg/nSJcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.09, -73.970348, 40.761858, -73.982943, 40.77173, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'y2ayPVs62R0lAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 6, tzinfo=datetime.timezone.utc), 6, 2.19, -73.968592, 40.76739, -73.983412, 40.783623, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'm2YV99JA5H1DHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 46, tzinfo=datetime.timezone.utc), 2, 1.56, -73.974155, 40.757365, -73.958233, 40.773752, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'MrEpkMVX02hT4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 54, tzinfo=datetime.timezone.utc), 1, 1.77, -73.977062, 40.753128, -73.986245, 40.737713, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'tRqjcNR8BWawGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 8, tzinfo=datetime.timezone.utc), 1, 1.88, -73.982128, 40.755503, -73.986747, 40.734135, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'fyTaDuSIU4TKqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 15, tzinfo=datetime.timezone.utc), 1, 1.5, -73.960005, 40.77912, -73.971463, 40.762105, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'zVkwZcJ11s/aSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 4, tzinfo=datetime.timezone.utc), 1, 1.9, -73.98965, 40.741437, -73.968767, 40.749262, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'qEZZsS3Zn0VFKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 2, tzinfo=datetime.timezone.utc), 1, 2.24, -73.993503, 40.732677, -73.96942, 40.75197, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'mfa7pL/8X/o2/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 24, tzinfo=datetime.timezone.utc), 2, 1.44, -74.005573, 40.740865, -73.986798, 40.729665, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'l0gTUoH3FCjsnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 10, tzinfo=datetime.timezone.utc), 1, 2.2, -73.946395, 40.785272, -73.968165, 40.762357, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '3yJvtjz9G2S+cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 2, tzinfo=datetime.timezone.utc), 1, 1.42, -73.981642, 40.759765, -73.975892, 40.748815, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'zpGTzGRC+DQTZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 9, tzinfo=datetime.timezone.utc), 5, 1.78, -73.994242, 40.736627, -73.990267, 40.723333, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'OM4cFF45oMTAqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 11, tzinfo=datetime.timezone.utc), 2, 1.79, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '0KX+SDy8N+ZYPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 33, tzinfo=datetime.timezone.utc), 1, 1.26, -73.979505, 40.744442, -73.994362, 40.740428, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'qftOObUsH6ajiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 47, tzinfo=datetime.timezone.utc), 2, 1.43, -73.987232, 40.740642, -74.003993, 40.733462, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'QRCIeQKu+U27qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 52, tzinfo=datetime.timezone.utc), 3, 1.58, -73.986835, 40.75195, -73.9909, 40.734162, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'a7w8bEcaLyErVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 44, tzinfo=datetime.timezone.utc), 1, 2.5, -73.980978, 40.759178, -73.955613, 40.773402, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '45YUviqmgTlkxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 32, tzinfo=datetime.timezone.utc), 5, 1.85, -73.978258, 40.752913, -73.989158, 40.737983, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'SAeZR7SZf3x5SA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 52, tzinfo=datetime.timezone.utc), 2, 1.36, -73.954857, 40.777608, -73.968273, 40.765548, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'Wa5tt/eslmyccg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.58, -73.98372, 40.761417, -73.962797, 40.76419, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'NLLt7knkHFr7GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 49, tzinfo=datetime.timezone.utc), 1, 1.37, -73.970133, 40.762055, -73.989048, 40.76678, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'VUajn+NsFmhOww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 55, tzinfo=datetime.timezone.utc), 3, 1.31, -73.986133, 40.762443, -73.976785, 40.752245, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'dBuX7hzdEElcdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 43, tzinfo=datetime.timezone.utc), 1, 1.6, -73.97893, 40.751645, -73.959782, 40.762792, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '35E9iWuw4QoLUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 52, tzinfo=datetime.timezone.utc), 1, 2.29, -73.947305, 40.7481, -73.941872, 40.725892, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'w3VWVpVneIgfaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 17, tzinfo=datetime.timezone.utc), 5, 1.75, -73.9798, 40.783762, -73.955173, 40.777138, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '+dUpexluDBFRng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 6, tzinfo=datetime.timezone.utc), 5, 1.54, -73.974177, 40.74307, -73.995858, 40.742665, 'Credit', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'rZHO38yYNFUf7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 19, tzinfo=datetime.timezone.utc), 1, 1.56, -73.954377, 40.764132, -73.979122, 40.77194, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'i7SUjzprxlu2xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 17, tzinfo=datetime.timezone.utc), 5, 1.56, -73.95143, 40.786188, -73.968505, 40.797893, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'T2rrgkBJVminCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 5, tzinfo=datetime.timezone.utc), 2, 2.01, -73.973332, 40.764177, -73.982028, 40.740895, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'X8meuzNq0wheQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 56, tzinfo=datetime.timezone.utc), 5, 1.33, -73.986462, 40.739927, -74.005345, 40.74822, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'KgkIHzo6+mO02A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.89, -73.98272, 40.777372, -73.971875, 40.799702, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'EDL4de/prsRCsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 59, tzinfo=datetime.timezone.utc), 2, 1.53, -73.977663, 40.742178, -73.977823, 40.725987, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'reh/Ddacy5oUcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 27, tzinfo=datetime.timezone.utc), 1, 1.51, -73.983113, 40.744337, -73.969833, 40.764848, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'd63ApEakyG4gzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 46, tzinfo=datetime.timezone.utc), 2, 1.22, -73.973585, 40.760557, -73.9902, 40.759912, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'Dq5YOLHMIkGZ6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 48, tzinfo=datetime.timezone.utc), 1, 0.81, -73.983583, 40.771053, -73.991482, 40.759995, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'b51b2ZPejogJkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 58, tzinfo=datetime.timezone.utc), 2, 2.09, -74.000285, 40.727193, -73.985312, 40.752992, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'cDD42XW2QJiuWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 45, tzinfo=datetime.timezone.utc), 1, 1.6, -73.956057, 40.78166, -73.971433, 40.765265, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'BPjnTgdmU7gbrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 42, tzinfo=datetime.timezone.utc), 1, 1.97, -73.982388, 40.757595, -73.978097, 40.75149, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'SzP3Ov4QqCszeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 2, tzinfo=datetime.timezone.utc), 1, 1.59, -73.974552, 40.762028, -73.979637, 40.744775, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'uk7dAPwW1P8ltg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 55, tzinfo=datetime.timezone.utc), 1, 2.4, -73.990473, 40.76666, -73.963683, 40.776867, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'FgykttzsHFhkRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 50, tzinfo=datetime.timezone.utc), 2, 1.45, -73.999547, 40.753998, -73.978738, 40.75255, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'rsimB7/DDWMoMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 32, tzinfo=datetime.timezone.utc), 1, 2.05, -73.9852, 40.758997, -73.994057, 40.735212, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '2g3dYg7SK6r1Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 48, tzinfo=datetime.timezone.utc), 1, 1.98, -73.991958, 40.74938, -73.983868, 40.762858, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'qpAvKjWNM1kKAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 9, tzinfo=datetime.timezone.utc), 1, 1.69, -73.973985, 40.764845, -73.991505, 40.749938, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', '7ZRgdb4UHt6MyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 8, tzinfo=datetime.timezone.utc), 2, 1.93, -74.002423, 40.740773, -73.976775, 40.742487, 'CASH', 7.7, 1.0, 0.0, 0.0, 8.7, '1705685115.6930006', 'yFCjlDfAOJCCPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), 1, 2.08, -73.966648, 40.761615, -73.987643, 40.779377, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'keol/J1gJSWLVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 47, tzinfo=datetime.timezone.utc), 1, 2.51, -73.978467, 40.777852, -73.99458, 40.747738, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'jUpN1fUemSHStQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 5, tzinfo=datetime.timezone.utc), 2, 2.73, -73.967385, 40.761717, -73.992668, 40.742933, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '9mSnVUuoWJtOSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 15, tzinfo=datetime.timezone.utc), 3, 2.77, -73.98332, 40.781323, -73.991142, 40.75024, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'oVkm33EK3xlB6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 25, tzinfo=datetime.timezone.utc), 1, 2.44, -73.982912, 40.757413, -74.007948, 40.745307, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'cOJzriNHWpeEyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 59, tzinfo=datetime.timezone.utc), 1, 2.11, -73.993988, 40.741787, -73.970588, 40.762397, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'yWFfXc9pLGiPfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 35, tzinfo=datetime.timezone.utc), 2, 2.16, -73.984113, 40.749257, -73.981312, 40.766435, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'y+C2KG4a7GF+/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 52, tzinfo=datetime.timezone.utc), 5, 2.73, -73.949395, 40.77093, -73.985138, 40.767657, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'dt01tKpenafFYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 42, tzinfo=datetime.timezone.utc), 1, 2.9, -74.006578, 40.741487, -73.977073, 40.767538, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'UYV8OEee0vuuQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 8, tzinfo=datetime.timezone.utc), 4, 2.4, -73.986852, 40.73811, -73.970243, 40.761085, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'sxRQmVgPOUp6XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 51, tzinfo=datetime.timezone.utc), 1, 3.08, -73.989923, 40.756358, -73.956008, 40.767715, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'YbptNJhGIX6G5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 18, 56, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 13, 44, tzinfo=datetime.timezone.utc), 1, 1.2, -73.977588, 40.763812, -73.990325, 40.75152, 'Cash', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '/WIHnlDNuiQGZg', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 18, tzinfo=datetime.timezone.utc), 1, 2.51, -73.970478, 40.793865, -73.956988, 40.770658, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'o3ln7C84wZapQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 1, tzinfo=datetime.timezone.utc), 3, 2.54, -73.992698, 40.734108, -73.980123, 40.763972, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'KmLgq2ZvXHtneA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 46, tzinfo=datetime.timezone.utc), 2, 2.83, -73.957183, 40.76839, -73.9836, 40.738043, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '+PPR5Te383hk6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 36, tzinfo=datetime.timezone.utc), 6, 2.21, -73.966208, 40.762023, -73.991208, 40.750033, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Mz48uqaSGxLaeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 1, tzinfo=datetime.timezone.utc), 1, 2.49, -73.978543, 40.78563, -73.967733, 40.760885, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'zR/Oo0FeQve3gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 5, tzinfo=datetime.timezone.utc), 1, 2.92, -73.99329, 40.749792, -74.007365, 40.716075, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '8T8GdXwBG2TdOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 54, tzinfo=datetime.timezone.utc), 2, 2.12, -73.995068, 40.73956, -74.002785, 40.760483, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'VCMqJRS3niDafw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 28, tzinfo=datetime.timezone.utc), 2, 2.69, -73.969148, 40.764282, -73.966838, 40.793527, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'tc1Jw6c9hSIlbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 12, tzinfo=datetime.timezone.utc), 5, 2.8, -74.002813, 40.715248, -73.99113, 40.749075, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'PU9O/6by7stwbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 6, tzinfo=datetime.timezone.utc), 1, 2.75, -73.967955, 40.802825, -73.946405, 40.777033, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'QbYW7TBnVHWPVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 34, tzinfo=datetime.timezone.utc), 5, 1.92, -73.955498, 40.77672, -73.974595, 40.756578, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '7tsHITCvBSOiYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 50, tzinfo=datetime.timezone.utc), 1, 2.35, -73.978925, 40.757652, -74.001648, 40.735402, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'U6M0hNEyeqObYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 54, tzinfo=datetime.timezone.utc), 1, 2.52, -73.980068, 40.726973, -74.006853, 40.747935, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ENDjGZCCAhKhuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 0, tzinfo=datetime.timezone.utc), 1, 2.6, -73.96072, 40.769878, -73.94746, 40.747963, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ufaGhLERF9iXcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 0, tzinfo=datetime.timezone.utc), 5, 1.46, -73.99871, 40.75775, -73.99871, 40.75775, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '2LGFvUmpyeCjWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 18, tzinfo=datetime.timezone.utc), 5, 2.56, -73.986313, 40.76167, -73.943638, 40.758552, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'JWKcJNvcGAalGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 18, tzinfo=datetime.timezone.utc), 1, 3.48, -74.009503, 40.713677, -73.985327, 40.758997, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'xM/0l1Lne/dcNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 26, tzinfo=datetime.timezone.utc), 1, 0.78, -73.995375, 40.749727, -73.981867, 40.744032, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'RP1yDJmT1rrb4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 49, tzinfo=datetime.timezone.utc), 2, 3.02, -74.007535, 40.731925, -74.015418, 40.708602, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'VpAE0FZTwcptpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 44, tzinfo=datetime.timezone.utc), 1, 1.31, -73.985932, 40.740735, -73.994028, 40.751153, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ONIVfWNPwTYtXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 36, tzinfo=datetime.timezone.utc), 2, 2.54, -74.003462, 40.748573, -73.973352, 40.764547, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '7UxLEGIDWdLQ5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 9, tzinfo=datetime.timezone.utc), 1, 1.71, -73.972002, 40.757863, -73.992492, 40.748205, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'CQP9GkiyFR3N7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 59, tzinfo=datetime.timezone.utc), 1, 2.82, -73.952262, 40.777145, -73.979947, 40.749147, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '1dtF5XlX5GJp6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 50, tzinfo=datetime.timezone.utc), 1, 2.52, -73.985412, 40.753112, -73.980195, 40.783648, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '1v+bylLd2O/X7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 0, tzinfo=datetime.timezone.utc), 2, 1.81, -73.969093, 40.766632, -73.983423, 40.744187, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'I311Sb0OBWXv2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 19, tzinfo=datetime.timezone.utc), 1, 1.31, -73.991627, 40.749245, -73.970827, 40.746855, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'f/nO4jL7a+X2JQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), 1, 1.73, -73.981083, 40.77955, -73.97202, 40.763852, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'bYxCy/UiK6aNQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 58, tzinfo=datetime.timezone.utc), 2, 2.83, -74.015568, 40.705725, -73.991328, 40.7448, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ygGiBrck/9fcRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 7, tzinfo=datetime.timezone.utc), 3, 1.83, -73.989883, 40.762143, -73.966168, 40.761887, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'tdSS/JwQ75Tcjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 19, tzinfo=datetime.timezone.utc), 3, 2.27, -73.966752, 40.77257, -73.98101, 40.75063, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'J6qnMDs49uY0zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 51, tzinfo=datetime.timezone.utc), 1, 3.29, -73.960765, 40.76128, -73.955367, 40.771877, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'hjksHBce7IGPPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.49, -73.985123, 40.763558, -73.974487, 40.786515, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Fc1iKwtuq5u+Qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 22, 30, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 42, 36, tzinfo=datetime.timezone.utc), 1, 3.2, -73.981151, 40.744247, -73.948999, 40.774128, 'Cash', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'bmPoohDM1ll25Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 30, tzinfo=datetime.timezone.utc), 1, 2.77, -73.993342, 40.762498, -73.961698, 40.777643, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'EaBR0vVCirOqwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 32, tzinfo=datetime.timezone.utc), 5, 2.07, -73.95164, 40.766318, -73.974822, 40.752668, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'frVC7qBH8zRlrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 32, tzinfo=datetime.timezone.utc), 2, 2.6, -73.979537, 40.735707, -73.967342, 40.766413, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Rj69w/osUZu2jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 43, tzinfo=datetime.timezone.utc), 3, 1.86, -73.990193, 40.751578, -73.981068, 40.765238, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Tlc3Z5JpfhYHuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 11, tzinfo=datetime.timezone.utc), 2, 3.14, -73.978912, 40.762202, -73.967807, 40.800167, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'uvSuidR5B/sq1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 56, tzinfo=datetime.timezone.utc), 1, 1.41, -73.977382, 40.784212, -73.955363, 40.773578, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'AdzzylHdS2AC0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 43, tzinfo=datetime.timezone.utc), 1, 3.14, -73.961942, 40.80572, -73.987485, 40.769918, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'DD3TOl4nv/EIbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 8, tzinfo=datetime.timezone.utc), 1, 2.62, -73.948478, 40.78244, -73.98367, 40.78072, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'tADga0FKEqQkBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 4, tzinfo=datetime.timezone.utc), 2, 2.03, -73.994345, 40.728522, -73.990992, 40.750117, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ADE+BRpqJd8g6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 42, tzinfo=datetime.timezone.utc), 1, 2.99, -73.996013, 40.686853, -74.007172, 40.7118, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'mfhzR2T07wJKWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 11, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 28, 40, tzinfo=datetime.timezone.utc), 1, 2.5, -73.977765, 40.752564, -73.997313, 40.766651, 'Cash', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'tdu479bqz2IKDg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 37, tzinfo=datetime.timezone.utc), 1, 2.54, -73.981997, 40.752558, -73.997375, 40.766353, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'E0OUGO2WVyomMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 17, tzinfo=datetime.timezone.utc), 1, 1.73, -73.991983, 40.750375, -73.981095, 40.764588, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'HUnZDShl4uG3yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 46, tzinfo=datetime.timezone.utc), 5, 3.24, -73.94738, 40.779852, -73.976087, 40.75393, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '4alIx18Aue/vlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 51, tzinfo=datetime.timezone.utc), 1, 1.76, -73.994535, 40.734642, -73.975133, 40.7486, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'oMG2kOOr97rR+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 58, tzinfo=datetime.timezone.utc), 1, 2.0, -73.978908, 40.777382, -73.958752, 40.760877, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'nBT5oROLFhziPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 22, tzinfo=datetime.timezone.utc), 1, 2.66, -73.961692, 40.771073, -73.98804, 40.743752, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'IjjhZ5a3EhrkEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 5, tzinfo=datetime.timezone.utc), 1, 1.74, -73.98108, 40.767602, -73.9625, 40.77812, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'W9YjCzGTTT8QFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 41, tzinfo=datetime.timezone.utc), 5, 2.71, -73.973763, 40.794717, -73.982415, 40.763678, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'yQHdRA4vTfuedQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 29, tzinfo=datetime.timezone.utc), 5, 2.1, -73.954895, 40.769288, -73.96619, 40.789465, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'TS02cwTeIbPOxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 28, tzinfo=datetime.timezone.utc), 1, 2.45, -73.993452, 40.736302, -73.969128, 40.75837, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'oBK/uwcF0Z8l4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 36, tzinfo=datetime.timezone.utc), 2, 3.58, -74.016223, 40.709903, -73.974773, 40.718575, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'eMr1sCBdzBdPqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 16, tzinfo=datetime.timezone.utc), 2, 1.96, -73.986107, 40.757502, -73.964735, 40.763808, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'nSHPGoA9OTTQdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 39, tzinfo=datetime.timezone.utc), 1, 2.88, -73.976022, 40.792273, -73.99548, 40.759635, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'bAaCpCJjJT8ZoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 26, tzinfo=datetime.timezone.utc), 2, 1.1, -73.937328, 40.797723, -73.94808, 40.795333, 'Credit', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'sqXbQmWnN2bTzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 27, tzinfo=datetime.timezone.utc), 2, 2.09, -74.006403, 40.733188, -73.9784, 40.721557, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ZoAMGy5l6MT9Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 40, tzinfo=datetime.timezone.utc), 1, 2.76, -74.000745, 40.742273, -74.006232, 40.707997, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'A1BwFHG9juMyAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 43, tzinfo=datetime.timezone.utc), 1, 2.46, -73.972077, 40.761458, -73.991838, 40.731243, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'xstq7pipnwXdMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 28, tzinfo=datetime.timezone.utc), 1, 1.59, -73.959358, 40.762978, -73.975697, 40.753385, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'RVpv+umIl6IMSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 31, tzinfo=datetime.timezone.utc), 1, 2.53, -73.995185, 40.754883, -74.007303, 40.727363, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Ns16pGVJ8HUKJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 43, tzinfo=datetime.timezone.utc), 3, 2.45, -73.973943, 40.764288, -73.946317, 40.780653, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '5SuCuHtZpQRA3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 29, tzinfo=datetime.timezone.utc), 1, 2.34, -73.992318, 40.75829, -73.970133, 40.756968, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'ClIdIRQYhCAyVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 43, tzinfo=datetime.timezone.utc), 1, 1.39, -73.958998, 40.764095, -73.980693, 40.773175, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'P3eHuW1qIlmtzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 5, tzinfo=datetime.timezone.utc), 2, 1.59, -73.955313, 40.773602, -73.97937, 40.783662, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'UBvs7Sv0l3Uq8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 9, tzinfo=datetime.timezone.utc), 1, 2.46, -73.968762, 40.75965, -73.969948, 40.785993, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'd1pa6Fndbdli3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 6, tzinfo=datetime.timezone.utc), 2, 2.66, -73.990587, 40.700657, -73.988377, 40.718095, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '079gadgxLyeV9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 38, tzinfo=datetime.timezone.utc), 5, 1.69, -74.004432, 40.734803, -73.984538, 40.742283, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'rAuBvRbmxPWH6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 30, tzinfo=datetime.timezone.utc), 1, 2.46, -73.955555, 40.779673, -73.984733, 40.768485, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Hg/4g6VQ54eG5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 52, tzinfo=datetime.timezone.utc), 1, 2.85, -73.977892, 40.685082, -73.99341, 40.722437, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'Tjq/dS2BcQrHEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 54, tzinfo=datetime.timezone.utc), 1, 2.76, -73.96093, 40.595132, -73.967375, 40.634537, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'GxXdEZQIDDtX6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 6, 58, tzinfo=datetime.timezone.utc), 1, 2.33, -73.996252, 40.750602, -73.973445, 40.756345, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'WWyUY5AhErGZGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 31, tzinfo=datetime.timezone.utc), 1, 2.49, -73.986893, 40.725297, -73.9947, 40.750458, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'WScDlkR5d77raw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 15, tzinfo=datetime.timezone.utc), 1, 2.74, -74.004187, 40.721925, -73.989463, 40.754275, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'k2fc5UPOJbGd3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 0, tzinfo=datetime.timezone.utc), 2, 2.29, -73.974712, 40.756142, -73.959142, 40.783237, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', '01cCk8aNAE1PCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 52, tzinfo=datetime.timezone.utc), 2, 2.7, -73.99161, 40.74891, -73.977403, 40.772658, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685115.6930006', 'NlNwtCHC/m7rIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 9, tzinfo=datetime.timezone.utc), 5, 2.51, -74.000803, 40.727235, -73.976493, 40.751337, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'NQPsNtGQsDcUSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 35, tzinfo=datetime.timezone.utc), 1, 2.81, -73.978923, 40.772317, -73.988212, 40.740255, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'mPJBEBpth7Axhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 38, tzinfo=datetime.timezone.utc), 5, 2.35, -73.965208, 40.759355, -73.997698, 40.763902, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'k9xY3McuVYecEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 28, tzinfo=datetime.timezone.utc), 1, 2.11, -73.989675, 40.729613, -74.0026, 40.749992, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'hDGTrexdwRn3eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 1, 2.52, -74.006242, 40.739728, -73.979835, 40.761323, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '7ruz+aLoCzyTzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 3, tzinfo=datetime.timezone.utc), 4, 3.23, -74.010685, 40.718763, -73.988565, 40.748488, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'G4UYXKFv8dGNBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 26, tzinfo=datetime.timezone.utc), 1, 2.58, -73.985162, 40.75522, -73.979247, 40.787187, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'GwEL48x30wOW0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 57, tzinfo=datetime.timezone.utc), 1, 1.46, -73.987468, 40.735938, -73.987883, 40.722583, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'ynVyn8KEpXLJJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 53, tzinfo=datetime.timezone.utc), 5, 2.85, -73.985293, 40.778605, -74.00599, 40.74298, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '/Id1NKCYQE3PSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), 5, 2.86, -74.003327, 40.732638, -73.979252, 40.762755, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'EaaFT4/2iA9/rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 48, tzinfo=datetime.timezone.utc), 1, 3.15, -73.966603, 40.75318, -73.972882, 40.785698, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'q+ebJbKUtClezw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 46, tzinfo=datetime.timezone.utc), 3, 2.69, -74.00792, 40.751418, -73.98677, 40.728208, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'AGvveIVha0s2XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 27, tzinfo=datetime.timezone.utc), 1, 2.89, -73.954495, 40.769933, -73.977575, 40.752017, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'pOe0prNN10derw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), 2, 3.25, -73.961182, 40.765052, -73.971723, 40.797067, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'ftbmuacagHd1Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 41, tzinfo=datetime.timezone.utc), 1, 2.88, -73.98215, 40.727888, -73.969805, 40.760618, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'I+taGzX7k+L5dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 56, tzinfo=datetime.timezone.utc), 1, 2.72, -73.972967, 40.75272, -73.996212, 40.723612, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'Jdgu4oJoHetm6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 40, tzinfo=datetime.timezone.utc), 1, 3.18, -73.99415, 40.75115, -73.957215, 40.77005, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'rH/vhQFn3qgANQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 24, tzinfo=datetime.timezone.utc), 1, 2.79, -73.967682, 40.792695, -73.956155, 40.766947, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'IjQpZFxbfG3Q4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 58, tzinfo=datetime.timezone.utc), 1, 2.68, -74.002372, 40.73314, -73.974903, 40.741783, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '1LHhc7LVLr0FsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 49, tzinfo=datetime.timezone.utc), 1, 2.38, -73.972027, 40.743907, -73.992875, 40.763123, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'rnAg+JlypwHtQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 34, tzinfo=datetime.timezone.utc), 5, 3.2, -73.968382, 40.761932, -73.977895, 40.726907, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'i9CrRPE4qlAW5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 46, tzinfo=datetime.timezone.utc), 1, 2.97, -73.961345, 40.76044, -73.982965, 40.756195, 'Credit', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'TlT/fVoGF6H50g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 26, tzinfo=datetime.timezone.utc), 3, 2.73, -73.97723, 40.75394, -73.974408, 40.783128, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'Jm8mJuBOBTQ1cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 13, tzinfo=datetime.timezone.utc), 2, 2.67, -73.988452, 40.73729, -73.978583, 40.765493, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'N30CIFJx7DvlUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 29, tzinfo=datetime.timezone.utc), 2, 2.95, -73.932212, 40.707757, -73.964248, 40.76084, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'A67402xv7bQMfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 5, tzinfo=datetime.timezone.utc), 1, 3.56, -73.965807, 40.75463, -73.932997, 40.799405, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'Pf59Lw2Zc+s1Tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 0, tzinfo=datetime.timezone.utc), 1, 2.87, -73.932112, 40.74491, -73.9759, 40.763887, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'hm21aJLDB509FQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 1, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 2, 7, tzinfo=datetime.timezone.utc), 1, 3.37, -73.966372, 40.761298, -73.92236, 40.757628, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'slD066f5Afe93A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), 1, 3.21, -73.965075, 40.761278, -73.926313, 40.762218, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'cBymwRB67egR4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 3, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 3, 33, tzinfo=datetime.timezone.utc), 1, 3.6, -73.983643, 40.72965, -73.950775, 40.774677, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'L+/8tg0nYVCBMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 1, tzinfo=datetime.timezone.utc), 5, 2.57, -73.972378, 40.750117, -73.999908, 40.73035, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'ZGOZvisQht0KUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 52, tzinfo=datetime.timezone.utc), 1, 2.74, -73.96679, 40.759122, -73.998227, 40.745235, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '849sH9pZ8XWk7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 48, tzinfo=datetime.timezone.utc), 5, 2.73, -73.98183, 40.76882, -73.953893, 40.786445, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'zPEY8aVBF1ROIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 43, tzinfo=datetime.timezone.utc), 1, 2.7, -74.00519, 40.737588, -74.0111, 40.703412, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'Ef/iNebq8EqBFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 26, tzinfo=datetime.timezone.utc), 1, 1.38, -74.007843, 40.751595, -73.999388, 40.738837, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'XnqHD/tS0RfJcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 18, tzinfo=datetime.timezone.utc), 2, 2.33, -73.987183, 40.760092, -73.983998, 40.737848, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'fR/8kGghURMxKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 20, tzinfo=datetime.timezone.utc), 1, 3.35, -74.003643, 40.722362, -73.980805, 40.764252, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'J3PupqJXjHPviA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 33, tzinfo=datetime.timezone.utc), 1, 2.67, -73.994312, 40.739182, -73.985217, 40.715488, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'zJbfHIKBq6XY0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 11, tzinfo=datetime.timezone.utc), 1, 3.43, -73.993588, 40.74212, -73.973795, 40.782988, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'FP1T3OEWMJOh8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 24, tzinfo=datetime.timezone.utc), 2, 2.35, -73.979208, 40.752413, -74.003767, 40.74749, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '+PAKh7+BxRJp2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 2, 39, tzinfo=datetime.timezone.utc), 1, 3.01, -73.983833, 40.765728, -73.963698, 40.798012, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'j/Y6hTmjPo0TRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 12, tzinfo=datetime.timezone.utc), 5, 3.18, -73.985652, 40.763433, -73.964863, 40.804193, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'PXEqvcMf6SiTOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 48, tzinfo=datetime.timezone.utc), 1, 2.37, -73.98298, 40.73902, -73.992302, 40.762477, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '2AuIonAjMnmLFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 47, tzinfo=datetime.timezone.utc), 5, 2.12, -74.008615, 40.715913, -73.992707, 40.731665, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '/AYZJ/wESu/+OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 3, tzinfo=datetime.timezone.utc), 1, 2.58, -73.97751, 40.74904, -73.988638, 40.719375, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'rj8QblRMb0FKLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 33, tzinfo=datetime.timezone.utc), 5, 2.6, -73.872228, 40.773877, -73.892775, 40.752873, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'XGM2Uq8kCOowKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 10, tzinfo=datetime.timezone.utc), 1, 3.05, -73.98558, 40.758805, -73.951818, 40.781, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'xzso1HjRMxrvvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 7, tzinfo=datetime.timezone.utc), 5, 2.84, -73.993815, 40.751723, -74.004375, 40.721735, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'XUnuHNWTVPhKXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 25, tzinfo=datetime.timezone.utc), 5, 2.8, -73.978923, 40.76136, -74.006232, 40.739555, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'cDXhrt7GW2sT+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 25, tzinfo=datetime.timezone.utc), 1, 2.76, -73.990873, 40.728267, -73.987363, 40.757993, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'J/33DVzsFG76SA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 21, tzinfo=datetime.timezone.utc), 1, 2.51, -73.991833, 40.727208, -74.004175, 40.716358, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'FvE1PNyPwwxrwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), 1, 1.72, -74.008578, 40.719823, -73.987362, 40.722437, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'KBm5FapkxOIWIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 5, tzinfo=datetime.timezone.utc), 5, 3.08, -73.959523, 40.813812, -73.978438, 40.777255, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'vTf0Z9WAgKsiCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 28, tzinfo=datetime.timezone.utc), 1, 3.24, -73.993132, 40.743533, -73.95827, 40.758583, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'S+Tpk1SbhCp4Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 4, tzinfo=datetime.timezone.utc), 5, 2.6, -73.960253, 40.769565, -73.981273, 40.737117, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'Pge4gufhWMe1qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 6, tzinfo=datetime.timezone.utc), 1, 2.57, -74.006507, 40.739778, -73.978065, 40.764197, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'WhgLybjcKfIXgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 2, tzinfo=datetime.timezone.utc), 5, 2.56, -73.979838, 40.765662, -74.005043, 40.73993, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'B5LqHtRKbrQodg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 4, tzinfo=datetime.timezone.utc), 5, 3.41, -73.983375, 40.738733, -73.950393, 40.7749, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', '9aIqa9DPxA+3yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 7, tzinfo=datetime.timezone.utc), 1, 3.52, -73.981748, 40.730945, -73.95062, 40.775767, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685115.6930006', 'f1EPACJNp15KLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 57, tzinfo=datetime.timezone.utc), 1, 2.58, -73.95029, 40.78469, -73.981028, 40.774185, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'pLjfjoP8ar9FHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), 6, 1.6, -73.984762, 40.767908, -73.964962, 40.75512, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'MXE4qSveYkPYNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 40, tzinfo=datetime.timezone.utc), 2, 3.22, -73.990268, 40.756128, -73.968957, 40.79175, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'zP8j5GQGdcG5dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 38, tzinfo=datetime.timezone.utc), 1, 1.59, -73.982065, 40.77826, -73.97066, 40.762367, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'RBCakieA81KsPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 27, tzinfo=datetime.timezone.utc), 1, 1.83, -73.969135, 40.757852, -73.98102, 40.77109, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'm8TBzd00tD2tJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 13, tzinfo=datetime.timezone.utc), 5, 1.62, -73.86998, 40.957988, -74.004912, 40.734002, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'nxjGhfC6V9Zcqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 49, tzinfo=datetime.timezone.utc), 1, 2.61, -73.98624, 40.777278, -73.977162, 40.788057, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'rJStK2ONKLLZeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 56, tzinfo=datetime.timezone.utc), 1, 2.09, -73.959188, 40.771805, -73.974072, 40.791305, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '4ygtEKywk95A5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 41, tzinfo=datetime.timezone.utc), 2, 2.71, -73.970698, 40.75195, -73.948813, 40.782905, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '8MC/9yw8dEE71g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 32, tzinfo=datetime.timezone.utc), 5, 1.73, -73.955682, 40.764063, -73.97788, 40.757315, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'jMzdRJ5VXtUFWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 48, tzinfo=datetime.timezone.utc), 1, 2.98, -73.977487, 40.763858, -73.98319, 40.731517, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'ZNL9oMSQFO7viQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 12, tzinfo=datetime.timezone.utc), 3, 1.94, -73.980835, 40.768608, -73.976085, 40.756037, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '+it3ugs1bJhWhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 30, tzinfo=datetime.timezone.utc), 1, 1.91, -73.9635, 40.77518, -73.985193, 40.759502, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '4w8fIVddgMJb+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 34, tzinfo=datetime.timezone.utc), 2, 3.16, -73.977125, 40.742945, -73.948585, 40.777855, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '6iWISEVLw1IpkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 44, tzinfo=datetime.timezone.utc), 2, 1.57, -73.990318, 40.751138, -73.98033, 40.765297, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'Nig9Lm5u80P2ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 37, tzinfo=datetime.timezone.utc), 2, 2.44, -73.970683, 40.75594, -73.946108, 40.78051, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'L8AuDi7r2aK83w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 57, tzinfo=datetime.timezone.utc), 2, 1.43, -73.978107, 40.746025, -73.987552, 40.755177, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'fRXQ2RqGv11nRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 10, tzinfo=datetime.timezone.utc), 1, 2.12, -73.97579, 40.789193, -73.946305, 40.772742, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'vKBF5UTHy4EYdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.15, -73.962865, 40.775445, -73.973623, 40.764343, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'N2FmnB2Kc4SOOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 37, tzinfo=datetime.timezone.utc), 1, 2.56, -73.980532, 40.764883, -74.005517, 40.737002, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'v3kKGsYLf8MsJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 58, tzinfo=datetime.timezone.utc), 2, 2.76, -73.982882, 40.7308, -73.983347, 40.76052, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'JzY/+U1Di2QxNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 29, tzinfo=datetime.timezone.utc), 1, 2.79, -73.954147, 40.779152, -73.965042, 40.806395, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'DO/8q7P2wzBHag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 48, tzinfo=datetime.timezone.utc), 1, 1.74, -73.974802, 40.761282, -73.993573, 40.744957, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '4RTTMzJL04nN5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 33, tzinfo=datetime.timezone.utc), 2, 2.66, -73.989623, 40.747162, -73.999787, 40.722033, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'ynTu9oSFwFCwBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 12, tzinfo=datetime.timezone.utc), 1, 3.07, -73.996775, 40.709148, -73.971552, 40.74384, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'USXUCYqso6k4wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.98, -73.99941, 40.731277, -73.978593, 40.742502, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'yIe+uB9Zu1g11w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 22, tzinfo=datetime.timezone.utc), 5, 2.37, -73.997112, 40.72202, -74.005323, 40.746322, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', '2IyupxRL+Z7LTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 48, tzinfo=datetime.timezone.utc), 5, 2.17, -73.936312, 40.798908, -73.957028, 40.783192, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685115.6930006', 'Wya7zmh+IO3krQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 10, 11, tzinfo=datetime.timezone.utc), 1, 2.8, -74.005407, 40.727977, -73.998027, 40.745855, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'Sd4pXS3nbgxj2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 48, tzinfo=datetime.timezone.utc), 2, 2.35, -73.99319, 40.751895, -73.988217, 40.732912, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'w6L72Yw2KnJ0CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 57, tzinfo=datetime.timezone.utc), 1, 3.13, -73.98636, 40.734873, -73.954383, 40.764025, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '6CoQmC/9O7FNsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 39, tzinfo=datetime.timezone.utc), 3, 3.89, -73.991892, 40.744223, -73.953502, 40.786993, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'ZqMhoIH7S13E7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 0, tzinfo=datetime.timezone.utc), 1, 3.37, -73.999245, 40.725032, -73.974862, 40.763413, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'hIsteelLdVlXgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 10, tzinfo=datetime.timezone.utc), 1, 3.35, -73.953162, 40.767817, -73.96659, 40.799937, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'Ru/NF9GbcErY1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 28, tzinfo=datetime.timezone.utc), 1, 2.77, -73.987187, 40.739768, -73.981693, 40.768405, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'UmGkuZxaNJTzsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 12, tzinfo=datetime.timezone.utc), 2, 3.06, -73.987655, 40.737932, -74.009348, 40.704293, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'wB5j71QE10JLLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 52, tzinfo=datetime.timezone.utc), 1, 2.99, -73.985642, 40.757927, -74.002558, 40.719728, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'lu4/l12E2vGdbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 6, tzinfo=datetime.timezone.utc), 1, 3.24, -73.99465, 40.755833, -74.011285, 40.714133, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'hWoXNpIvdnqUPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 11, 47, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 6, 39, tzinfo=datetime.timezone.utc), 2, 2.9, -73.978102, 40.75236, -74.005569, 40.726293, 'Cash', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'Br/e/FmgsBUDLg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 26, tzinfo=datetime.timezone.utc), 2, 4.25, -73.985918, 40.757453, -74.016843, 40.70513, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'touvH7iDSSb+wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 14, tzinfo=datetime.timezone.utc), 1, 2.83, -73.974633, 40.742125, -73.983125, 40.769782, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'asRj7qObM4RKyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 46, tzinfo=datetime.timezone.utc), 2, 2.46, -73.95426, 40.784245, -73.97451, 40.757447, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'oRV7gQ3R3elRaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 39, tzinfo=datetime.timezone.utc), 1, 3.86, -73.941497, 40.807407, -73.952603, 40.765707, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'AoRt5rITTiDumg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 7, tzinfo=datetime.timezone.utc), 1, 3.94, -73.97137, 40.792005, -73.968212, 40.754823, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'Ipq3gysN+mIXJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 7, tzinfo=datetime.timezone.utc), 1, 1.47, -73.982515, 40.771715, -73.992422, 40.75395, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'nMYX8AWo578y6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 8, tzinfo=datetime.timezone.utc), 1, 2.95, -73.98855, 40.737402, -73.96398, 40.773882, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'I7j5G9PGHfM6Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.2, -73.987578, 40.750568, -73.981915, 40.768272, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'qbI5pbfjpnTy/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 39, tzinfo=datetime.timezone.utc), 2, 3.01, -73.965323, 40.801055, -73.95028, 40.778958, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'h20P9ggl5MHxlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 15, tzinfo=datetime.timezone.utc), 1, 3.03, -73.995112, 40.739717, -73.982875, 40.776085, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'qWlU3HLSb+Nfjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 40, tzinfo=datetime.timezone.utc), 1, 3.06, -73.995398, 40.759603, -73.956245, 40.788233, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'ESzn9aONrXYPGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 42, tzinfo=datetime.timezone.utc), 1, 3.3, -74.010848, 40.717008, -74.002865, 40.760438, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'IQcbccVqfAgiyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 11, tzinfo=datetime.timezone.utc), 5, 3.89, -73.959035, 40.783335, -73.995577, 40.74657, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'nYpPJhqevuGN0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 18, tzinfo=datetime.timezone.utc), 1, 2.0, -74.000308, 40.761467, -73.970543, 40.756032, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'I6Cy3swHXwLHxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 39, tzinfo=datetime.timezone.utc), 1, 4.37, -73.974238, 40.737233, -74.004997, 40.708748, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'JTErn8SscGXFxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 1, tzinfo=datetime.timezone.utc), 5, 2.65, -73.995225, 40.743847, -73.965647, 40.762823, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'Xsae9n7TcvPW9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 42, tzinfo=datetime.timezone.utc), 1, 2.81, -73.954923, 40.786007, -73.97962, 40.76733, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'YceNGfQ6iWniVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 3, tzinfo=datetime.timezone.utc), 2, 2.63, -73.972628, 40.780977, -73.991797, 40.74988, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'A3/+NwdrAGJzIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 9, tzinfo=datetime.timezone.utc), 1, 1.99, -73.975142, 40.787617, -73.99484, 40.7702, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'TLXLCSOA8Wv0Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 1, tzinfo=datetime.timezone.utc), 1, 1.45, -73.971782, 40.755993, -73.990157, 40.760675, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'kURciTHgQ99oIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 13, tzinfo=datetime.timezone.utc), 1, 3.38, -73.952967, 40.776542, -73.990123, 40.75162, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'KxacnQrOhDyK/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 31, tzinfo=datetime.timezone.utc), 1, 3.33, -73.986773, 40.745385, -73.959158, 40.783278, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '1fCQDLUqUwVTrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 13, tzinfo=datetime.timezone.utc), 1, 2.37, -73.954857, 40.773678, -73.98028, 40.754682, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'L/N+mG1WtCsBNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 20, tzinfo=datetime.timezone.utc), 1, 2.82, -73.944497, 40.77961, -73.970848, 40.751748, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'FJw0LS2fT8m84Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 32, tzinfo=datetime.timezone.utc), 2, 3.34, -73.981133, 40.751193, -73.982858, 40.78505, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '9DFhJwkpspzhbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 4, tzinfo=datetime.timezone.utc), 2, 2.47, -73.980892, 40.639923, -73.988083, 40.646385, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'pDygtuzp8yHVtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 15, tzinfo=datetime.timezone.utc), 5, 2.12, -73.945882, 40.773438, -73.967838, 40.787303, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'tDL/PcS3BgNhrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 47, tzinfo=datetime.timezone.utc), 1, 2.56, -73.965025, 40.766692, -73.978107, 40.737398, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '+QYaH1rHKllipg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 32, tzinfo=datetime.timezone.utc), 1, 4.35, -74.009832, 40.711965, -73.971908, 40.746055, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '+UA3s63TySO5sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 55, tzinfo=datetime.timezone.utc), 5, 3.5, -73.964478, 40.760355, -74.000028, 40.726755, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'wmBMqOGNtCJ1vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 58, tzinfo=datetime.timezone.utc), 1, 3.43, -73.947963, 40.789902, -73.984308, 40.758833, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'xEVPIrYJfC6VTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 28, tzinfo=datetime.timezone.utc), 1, 2.48, -73.990023, 40.762353, -73.976843, 40.739123, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '7zffvIJ+7fuzQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 0, tzinfo=datetime.timezone.utc), 2, 3.2, -73.997805, 40.720777, -73.991432, 40.740702, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'g8yGbVWeLBCb3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 13, tzinfo=datetime.timezone.utc), 1, 2.16, -73.972713, 40.78081, -73.978555, 40.75711, 'Credit', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'biqA2OGOCX2U3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 44, tzinfo=datetime.timezone.utc), 5, 3.61, -73.972915, 40.754925, -73.939203, 40.79898, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '2etLES6pGiFfWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 10, tzinfo=datetime.timezone.utc), 2, 3.81, -73.87229, 40.773845, -73.924178, 40.766227, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'p+piUCwhIx5FTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 37, tzinfo=datetime.timezone.utc), 5, 3.27, -73.9686, 40.757565, -73.999962, 40.725492, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'hzb56zs48D4+AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 15, 53, tzinfo=datetime.timezone.utc), 5, 3.87, -74.012893, 40.710118, -73.988967, 40.757798, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'AGAtjHE7VeywJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 27, tzinfo=datetime.timezone.utc), 5, 3.54, -73.95993, 40.798242, -73.942477, 40.839903, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '56XXrlWHLMnScQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 48, tzinfo=datetime.timezone.utc), 2, 3.23, -73.949907, 40.780365, -73.986357, 40.75635, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'OKJVm4cSSziN9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 46, tzinfo=datetime.timezone.utc), 2, 2.96, -73.954807, 40.769862, -73.975982, 40.745762, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'GhlGdoTxA1V6Ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 35, tzinfo=datetime.timezone.utc), 5, 4.2, -73.981293, 40.724963, -73.988422, 40.702458, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '9sd9j8tpzc2LFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 43, tzinfo=datetime.timezone.utc), 1, 2.79, -73.982375, 40.768282, -73.9916, 40.735155, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'ZJfXeVIMRg64Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 33, tzinfo=datetime.timezone.utc), 1, 3.4, -74.000013, 40.728175, -74.002163, 40.727847, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '3kNxkTWOKTTCrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 52, tzinfo=datetime.timezone.utc), 3, 4.37, -73.96572, 40.762528, -73.98477, 40.721833, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', '8puia1FDVELmmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 42, tzinfo=datetime.timezone.utc), 5, 3.74, -74.003568, 40.747512, -74.011743, 40.702813, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685115.6930006', 'fQVf7z2xUeG+nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 9, tzinfo=datetime.timezone.utc), 2, 3.37, -74.008722, 40.71895, -73.984875, 40.76286, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'yym4a7St1QpirQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 57, tzinfo=datetime.timezone.utc), 2, 3.19, -73.995928, 40.71642, -73.97532, 40.755932, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'Ql1H9gZgGCDhwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 39, tzinfo=datetime.timezone.utc), 4, 3.27, -73.983743, 40.765392, -73.979707, 40.733355, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'a9fADogLMcj8pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 12, tzinfo=datetime.timezone.utc), 2, 3.43, -73.968437, 40.762087, -73.993565, 40.721232, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'gMQRRNRjeQ7qQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 15, tzinfo=datetime.timezone.utc), 1, 3.42, -73.991503, 40.726842, -73.981208, 40.763792, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'WqrXlBXyXbuu9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 41, tzinfo=datetime.timezone.utc), 1, 3.97, -73.972513, 40.754688, -73.989733, 40.714095, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '+4wI4yzYYqgLPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 0, tzinfo=datetime.timezone.utc), 2, 3.04, -73.983872, 40.721613, -73.991885, 40.700053, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'LiDNMTpnb6ilmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 37, tzinfo=datetime.timezone.utc), 1, 3.75, -73.990287, 40.733938, -73.960788, 40.780092, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '1aZYYnpILou2TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 59, tzinfo=datetime.timezone.utc), 3, 3.46, -73.971608, 40.757188, -73.967618, 40.79381, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '3UDufz/sqHDFpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 4, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 4, 49, tzinfo=datetime.timezone.utc), 1, 3.66, -73.983285, 40.721333, -73.974225, 40.687277, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'USAWn5kJp6O1OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 52, tzinfo=datetime.timezone.utc), 1, 3.25, -73.96488, 40.808563, -73.983172, 40.771558, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'enYKyD8V1EU2Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 30, tzinfo=datetime.timezone.utc), 5, 4.38, -73.872075, 40.773827, -73.854222, 40.732845, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'sxtZVc2fiSA28A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 25, tzinfo=datetime.timezone.utc), 1, 3.68, -73.977307, 40.76079, -73.991967, 40.721655, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '2ZRfjgVCQHq0yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 41, tzinfo=datetime.timezone.utc), 5, 3.49, -73.986618, 40.759412, -73.945035, 40.775887, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'Tg2R29Q1Bw0O8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 43, tzinfo=datetime.timezone.utc), 5, 3.73, -73.987948, 40.728225, -73.966597, 40.691613, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'zWB1Qq3z9uYrBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 30, tzinfo=datetime.timezone.utc), 1, 3.51, -73.948967, 40.809273, -73.973908, 40.752952, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '8b56sFDTEHmofA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 4, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 57, tzinfo=datetime.timezone.utc), 1, 4.4, -73.978563, 40.745138, -73.919898, 40.741323, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'bE7QFS6SDmpHdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 28, tzinfo=datetime.timezone.utc), 2, 3.05, -73.982573, 40.769228, -74.006812, 40.735612, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '/mSC7UQw2pgEGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 1, tzinfo=datetime.timezone.utc), 1, 3.56, -73.962542, 40.709948, -74.00716, 40.705852, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'l5NLnPyXmSfUSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 2, tzinfo=datetime.timezone.utc), 2, 3.92, -74.005558, 40.707893, -73.946778, 40.7143, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '89EbhT3hvEQ/Hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 5, 3, tzinfo=datetime.timezone.utc), 1, 3.9, -73.979072, 40.763292, -73.91841, 40.745092, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '3asj9u5Dxjm6sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 13, tzinfo=datetime.timezone.utc), 1, 3.08, -73.999572, 40.728395, -73.997568, 40.761073, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '8CVjb3NmsgEwYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 3, 0.4, -73.948778, 40.777577, -73.981697, 40.740737, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '+2aCXGABcMzc6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 22, tzinfo=datetime.timezone.utc), 2, 3.95, -73.993337, 40.74221, -73.973652, 40.791875, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'hqoBFDYV2nGpHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 4, tzinfo=datetime.timezone.utc), 2, 3.18, -73.981845, 40.763582, -74.006712, 40.735743, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '8c0hO9BnvFSZBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 22, tzinfo=datetime.timezone.utc), 1, 3.42, -73.950618, 40.771495, -73.991533, 40.76489, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'WftaZA7xav++bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 48, tzinfo=datetime.timezone.utc), 5, 3.2, -73.987378, 40.71843, -73.972295, 40.695355, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'S6xRixNpyBkn8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 20, tzinfo=datetime.timezone.utc), 1, 3.52, -73.95529, 40.690613, -73.903628, 40.682037, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'zllDz5W2tKOqJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 5, tzinfo=datetime.timezone.utc), 3, 3.54, -73.982733, 40.769285, -73.999038, 40.732383, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'fYNJmoxgS6zwSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 4, tzinfo=datetime.timezone.utc), 2, 3.21, -73.982238, 40.771853, -73.960052, 40.76769, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'hFJuuHnQb21UMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 4, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 30, tzinfo=datetime.timezone.utc), 2, 4.22, -73.987648, 40.76043, -73.945303, 40.799323, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'j8rt3PqsxmNwDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 1, 39, tzinfo=datetime.timezone.utc), 2, 3.8, -73.989682, 40.757777, -73.947268, 40.78018, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '3IMm7rYD/rzABw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 39, tzinfo=datetime.timezone.utc), 5, 3.61, -73.98659, 40.722238, -73.973735, 40.687693, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '6r91Oc1HOEoBdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 11, tzinfo=datetime.timezone.utc), 3, 3.48, -73.983708, 40.766172, -73.929535, 40.756603, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', '4EkFfA15vONU6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 50, tzinfo=datetime.timezone.utc), 1, 3.24, -74.003747, 40.722518, -73.979527, 40.763512, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'QLfH8S3fbo6g8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 12, tzinfo=datetime.timezone.utc), 1, 4.1, -73.988432, 40.737543, -73.96958, 40.785087, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'GTo8v5mi+dosEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 0, tzinfo=datetime.timezone.utc), 3, 3.34, -73.989378, 40.740607, -74.014955, 40.716308, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'yLGJ8L70bAVTJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 47, tzinfo=datetime.timezone.utc), 5, 3.64, -74.004313, 40.707723, -73.985852, 40.731148, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'viOG+K+KewCWdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 54, tzinfo=datetime.timezone.utc), 1, 3.15, -73.99332, 40.74732, -74.007132, 40.708217, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'QqyG6efvRKvfTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 13, tzinfo=datetime.timezone.utc), 1, 4.25, -73.989482, 40.719082, -73.957765, 40.766532, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'WLuqgl4a8VZj5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 42, tzinfo=datetime.timezone.utc), 2, 3.15, -74.00517, 40.740837, -73.972228, 40.756537, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'BTS4omHE+mzbbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 29, tzinfo=datetime.timezone.utc), 4, 4.13, -73.990255, 40.76101, -73.942678, 40.786067, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'FgQEI2BfkaHgag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 18, tzinfo=datetime.timezone.utc), 1, 3.76, -73.993617, 40.729112, -73.969113, 40.694805, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'CE5jGgi88fMHsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 39, tzinfo=datetime.timezone.utc), 1, 4.33, -73.86298, 40.769295, -73.993015, 40.693095, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'yaz6PgGnc9jpkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 40, tzinfo=datetime.timezone.utc), 2, 3.79, -74.006443, 40.714093, -73.97381, 40.683198, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'cVxqfPSFiZimug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 41, tzinfo=datetime.timezone.utc), 2, 3.78, -73.987143, 40.756557, -73.950142, 40.789645, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'd87JH5kxYVAgQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 40, tzinfo=datetime.timezone.utc), 4, 4.23, -73.982018, 40.77394, -73.94912, 40.827592, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685115.6930006', 'cz14VkOYtqXwdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 31, tzinfo=datetime.timezone.utc), 5, 1.69, -73.964163, 40.768832, -73.981177, 40.750697, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'WW6whoa/BXMZFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 46, tzinfo=datetime.timezone.utc), 5, 3.89, -74.016262, 40.714702, -73.98856, 40.756597, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'Hx4QJ5o+jfCqIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 4, tzinfo=datetime.timezone.utc), 2, 2.91, -73.975327, 40.760982, -73.99241, 40.72514, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'ZmP9krHT+/0nsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 43, tzinfo=datetime.timezone.utc), 1, 2.97, -73.97745, 40.78948, -73.980493, 40.759075, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'rRJl/nV9Z+bp/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 35, tzinfo=datetime.timezone.utc), 1, 1.51, -73.97288, 40.757185, -73.991433, 40.750188, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', '2F0ARRFRyodwvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 9, tzinfo=datetime.timezone.utc), 5, 1.9, -73.95859, 40.764475, -73.983865, 40.760867, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'jWNJyFohjN1Lsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 32, tzinfo=datetime.timezone.utc), 1, 3.5, -73.974682, 40.750385, -73.98171, 40.784507, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'UM2WKxgrZfECFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 52, tzinfo=datetime.timezone.utc), 1, 2.36, -73.955423, 40.765888, -73.978207, 40.782653, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'nRMUMRcRPkL4HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 10, tzinfo=datetime.timezone.utc), 2, 3.82, -73.967705, 40.762907, -73.966207, 40.804635, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'LicZOkSjWXQyvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 24, tzinfo=datetime.timezone.utc), 1, 3.52, -73.961077, 40.76938, -73.96118, 40.806372, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', '2ov6Px1Z7hiOQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 12, tzinfo=datetime.timezone.utc), 2, 0.32, -73.95065, 40.771622, -73.985342, 40.763642, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'ZedlSo9l66//+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 7, tzinfo=datetime.timezone.utc), 2, 2.8, -73.967332, 40.77236, -73.995928, 40.744192, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'U/KtRFUX7khvtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 39, tzinfo=datetime.timezone.utc), 2, 2.1, -73.971202, 40.75769, -73.99342, 40.750072, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'iMJjiXOdDXATxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 43, tzinfo=datetime.timezone.utc), 3, 1.27, -73.991998, 40.74955, -73.986218, 40.759215, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'fXu7EfD8L4b0gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 48, tzinfo=datetime.timezone.utc), 1, 1.89, -73.954383, 40.78415, -73.972497, 40.76091, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685115.6930006', 'QAKeLLbRqA8+IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 58, tzinfo=datetime.timezone.utc), 1, 4.55, -73.781848, 40.644767, -73.79524, 40.679342, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '6jEIMq8P+I2L5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 3, tzinfo=datetime.timezone.utc), 1, 3.48, -73.990042, 40.757353, -73.951772, 40.781817, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'rbD6rFM2e1rLcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 39, tzinfo=datetime.timezone.utc), 1, 4.04, -73.99448, 40.745403, -74.01428, 40.70436, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'P0n84S2Fa4F5Sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.57, -73.975665, 40.748953, -73.97625, 40.7758, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '8XqqHVDHwyeNSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 55, tzinfo=datetime.timezone.utc), 1, 3.86, -73.97381, 40.784317, -73.987838, 40.738387, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'y1BMlt5mTKiVmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 42, tzinfo=datetime.timezone.utc), 1, 3.58, -73.968737, 40.753642, -74.00598, 40.735428, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '4/M3UlW76aXpkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 50, tzinfo=datetime.timezone.utc), 5, 3.75, 0.0, 0.0, 0.0, 0.0, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '0/1ltzoTTBkZPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 10, 27, tzinfo=datetime.timezone.utc), 1, 4.37, -73.95099, 40.777612, -73.928317, 40.759743, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'I++ErzwOhwpAdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 59, tzinfo=datetime.timezone.utc), 1, 3.85, -74.000033, 40.721385, -73.978255, 40.765793, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'pYor4jqzYd/Kcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 16, 36, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 53, 51, tzinfo=datetime.timezone.utc), 1, 4.5, -74.008271, 40.72179, -73.965488, 40.75665, 'Cash', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'ZWvz05FwZshsmQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 34, tzinfo=datetime.timezone.utc), 1, 3.84, -73.960183, 40.770333, -74.002203, 40.748553, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'JUww9cbXf+hzOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 48, tzinfo=datetime.timezone.utc), 1, 4.56, -73.96161, 40.760228, -73.99987, 40.729418, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '8guLwPhBNcBtYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 37, tzinfo=datetime.timezone.utc), 5, 5.32, -73.970762, 40.751785, -74.008787, 40.704158, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'xLna2hcChEvI2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 11, tzinfo=datetime.timezone.utc), 5, 3.22, -73.966435, 40.760998, -73.985958, 40.744247, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'V9y8HOloCIFbBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 19, tzinfo=datetime.timezone.utc), 1, 4.39, -73.98646, 40.745678, -74.00327, 40.70632, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'sVdEZizsnJy6ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 14, tzinfo=datetime.timezone.utc), 2, 3.86, -73.987368, 40.76064, -73.945648, 40.78872, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'RIwkw8QnCwCQAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 51, tzinfo=datetime.timezone.utc), 5, 3.06, -73.973622, 40.750672, -74.005343, 40.728265, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'pk1M9GIGJQUbZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 44, tzinfo=datetime.timezone.utc), 1, 3.47, -73.990962, 40.765937, -73.991662, 40.729905, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'D8CGxZNvpM0sAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 2, tzinfo=datetime.timezone.utc), 2, 3.61, -73.980215, 40.783847, -73.978928, 40.744492, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', '9/lN6XPUET4ccQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 39, tzinfo=datetime.timezone.utc), 1, 4.83, -73.972872, 40.793148, -73.99473, 40.750422, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'rllaCUuvW0LTeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 42, tzinfo=datetime.timezone.utc), 5, 3.11, -73.988568, 40.723305, -73.97178, 40.7599, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'Ez8XsXuIyW7Pvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 56, tzinfo=datetime.timezone.utc), 1, 3.85, -73.994545, 40.7313, -73.954033, 40.764037, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685115.6930006', 'uD5b1Oidy89TVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 10, tzinfo=datetime.timezone.utc), 2, 3.33, -73.993327, 40.720028, -73.938682, 40.700408, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'DlCkQxIFlDpkXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 4, 14, tzinfo=datetime.timezone.utc), 2, 4.66, -74.00437, 40.742365, -73.956097, 40.771485, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'z8TOQfEdllgMqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 44, tzinfo=datetime.timezone.utc), 1, 4.27, -73.950702, 40.779478, -73.987952, 40.727078, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '2tNaGqAZRhMwYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 36, tzinfo=datetime.timezone.utc), 1, 4.5, -74.008273, 40.736372, -73.955247, 40.765603, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '0xE3GSyXqzIAug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 1, 3.86, -73.978447, 40.762585, -74.009128, 40.716567, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'Uj1nB66cwjD+yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 28, tzinfo=datetime.timezone.utc), 5, 4.17, -73.99083, 40.72764, -73.971725, 40.676105, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'AY41I45bTi/hGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 16, tzinfo=datetime.timezone.utc), 3, 2.96, -74.003732, 40.74831, -74.01083, 40.718902, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '8Cx3/jsnFk5ieA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 53, tzinfo=datetime.timezone.utc), 1, 0.4, -73.9877, 40.732585, -74.01726, 40.705168, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'o6po40BgPkfw0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 24, tzinfo=datetime.timezone.utc), 5, 3.7, 0.0, 0.0, 0.0, 0.0, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'LZ+nNRvXQSRzOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 16, tzinfo=datetime.timezone.utc), 2, 4.71, -73.991958, 40.764437, -74.01586, 40.705525, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '2Ry3eWY7/mv6VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 36, tzinfo=datetime.timezone.utc), 2, 4.52, -73.960127, 40.781993, -73.994382, 40.726753, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'M2Viv1ZorFd1iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 55, tzinfo=datetime.timezone.utc), 5, 4.05, -73.979228, 40.7239, -73.948652, 40.726007, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'XCaCRSRMPO7tzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 41, tzinfo=datetime.timezone.utc), 1, 2.69, -73.972862, 40.753297, -73.95289, 40.771987, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'USJzF+0a9Y2jrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 25, tzinfo=datetime.timezone.utc), 5, 3.79, -73.962492, 40.77885, -74.003952, 40.747597, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'ZxBqQYn0zCSrYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 2, 45, tzinfo=datetime.timezone.utc), 5, 4.27, -73.991813, 40.725993, -73.97207, 40.670337, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'nIKzYpBMQj8duQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 44, tzinfo=datetime.timezone.utc), 6, 4.98, -73.98298, 40.771772, -74.017027, 40.711322, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '7gUUo83W7wKwrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 23, tzinfo=datetime.timezone.utc), 1, 4.81, -73.966243, 40.773857, -73.908658, 40.760898, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'vn2U/Abrb20sJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 49, tzinfo=datetime.timezone.utc), 4, 4.63, -73.951503, 40.784922, -73.933582, 40.763325, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'SilcmLawrRRL1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 10, tzinfo=datetime.timezone.utc), 1, 5.1, -74.00149, 40.730888, -73.948693, 40.778203, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'STWcDSnsLvf7tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 46, tzinfo=datetime.timezone.utc), 1, 2.39, -74.005597, 40.740468, -73.982368, 40.765058, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'vgqAs0S2Nh9p+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 31, tzinfo=datetime.timezone.utc), 5, 4.84, -73.977645, 40.786877, -74.011055, 40.728957, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', '+/qQ4hKUDKwYAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 49, tzinfo=datetime.timezone.utc), 1, 5.37, -73.978515, 40.737957, -73.921285, 40.76332, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'ZTd7heCyaXnfLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 50, tzinfo=datetime.timezone.utc), 1, 3.23, -73.980987, 40.763308, -74.003692, 40.729192, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'GHH7H7qgyfKXng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 46, tzinfo=datetime.timezone.utc), 1, 4.08, -73.96405, 40.771155, -74.005552, 40.731408, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'uppPXfdK8UnzEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), 3, 4.12, -73.978815, 40.788035, -73.96728, 40.74991, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685115.6930006', 'JHT4t93DE4WgCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 37, tzinfo=datetime.timezone.utc), 2, 3.84, -73.996282, 40.716368, -73.979787, 40.761932, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'dOiaaQMjpOIPTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 9, tzinfo=datetime.timezone.utc), 2, 3.02, -73.945867, 40.774233, -73.980567, 40.754332, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', '1v5fbTYYI9BA4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 52, tzinfo=datetime.timezone.utc), 1, 3.49, -73.966503, 40.80426, -73.967893, 40.768412, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'azGnFk8Matpd0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 23, tzinfo=datetime.timezone.utc), 3, 3.65, -73.991245, 40.75559, -74.009127, 40.709482, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', '47RFKAcMSDP+vA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 16, tzinfo=datetime.timezone.utc), 2, 2.91, -73.955208, 40.774427, -73.991948, 40.759895, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'afzsVLpWK5zSXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 38, tzinfo=datetime.timezone.utc), 1, 3.11, -73.993335, 40.727728, -73.976, 40.764428, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'iiGjff5mSLQ5zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 7, tzinfo=datetime.timezone.utc), 1, 3.76, -73.99848, 40.760772, -74.01606, 40.711343, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'J663NF3M6kfAUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 31, tzinfo=datetime.timezone.utc), 1, 4.42, -74.01521, 40.715913, -73.988113, 40.763095, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'QP+mmQJ2wJUSZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 55, tzinfo=datetime.timezone.utc), 1, 4.56, -73.947672, 40.790458, -73.937697, 40.753367, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 't3m8ODB3QRB49A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 30, tzinfo=datetime.timezone.utc), 1, 4.39, -73.958103, 40.764892, -73.958278, 40.81056, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'b3IBzRxGTG6zOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 42, tzinfo=datetime.timezone.utc), 5, 3.84, -73.960065, 40.762128, -73.996148, 40.736113, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'jWr2VZUCtpRruA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 45, tzinfo=datetime.timezone.utc), 1, 3.13, -73.963175, 40.781935, -73.963175, 40.781935, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'N0s16x7pHmp5ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 43, tzinfo=datetime.timezone.utc), 2, 4.07, -74.016105, 40.714667, -73.983912, 40.749818, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'usL9FNU8nD4cnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 15, tzinfo=datetime.timezone.utc), 1, 0.53, -74.010937, 40.701912, -73.965775, 40.754252, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', '7VRrLzW1gdz5jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 46, tzinfo=datetime.timezone.utc), 1, 4.92, -73.977922, 40.753437, -74.006802, 40.706587, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'm8jT1RCuGlSxEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 19, tzinfo=datetime.timezone.utc), 5, 4.85, -73.954373, 40.78974, -73.979455, 40.738985, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685115.6930006', 'DQYDlVE9fVG/6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 33, tzinfo=datetime.timezone.utc), 3, 4.07, -73.96646, 40.773257, -74.006498, 40.737988, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'SMC8gShy5YAwWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 14, tzinfo=datetime.timezone.utc), 1, 4.48, -73.971425, 40.76365, -74.009097, 40.716913, 'Credit', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'BgCH9cyvN1YN8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 35, tzinfo=datetime.timezone.utc), 4, 4.32, -73.978987, 40.744608, -73.964887, 40.791422, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'HaV6QPXsl8/4hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 23, tzinfo=datetime.timezone.utc), 2, 6.12, -73.953468, 40.767233, -74.005502, 40.70571, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'V4PIFKLs8aFEvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 56, tzinfo=datetime.timezone.utc), 1, 2.72, -73.973677, 40.784463, -73.991823, 40.75, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', '2VnCCAVjFFxnAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 21, tzinfo=datetime.timezone.utc), 1, 5.31, -73.986182, 40.77248, -74.003565, 40.715927, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'fHjcNwT1Eouv4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 22, tzinfo=datetime.timezone.utc), 1, 5.74, -73.981177, 40.747027, -73.988533, 40.701128, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'tS3IpyD8rc98lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 59, tzinfo=datetime.timezone.utc), 1, 4.59, -73.969252, 40.79824, -74.00667, 40.744008, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'SWcPqVkHa7BUGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 44, tzinfo=datetime.timezone.utc), 1, 3.55, -73.94949, 40.785052, -73.983343, 40.761803, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'vzIHtIyi1mkAuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 17, tzinfo=datetime.timezone.utc), 4, 3.89, -73.970013, 40.79721, -73.992747, 40.747958, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'y/IFjLcJpES7xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 20, tzinfo=datetime.timezone.utc), 5, 4.95, -73.990817, 40.766085, -73.914207, 40.746118, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'pGzmcSpxkODM0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 44, tzinfo=datetime.timezone.utc), 1, 3.35, -73.966072, 40.760518, -74.006832, 40.748968, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'mQvOdcTkz0l3MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 34, tzinfo=datetime.timezone.utc), 5, 4.02, -73.936503, 40.767628, -73.926063, 40.741998, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'Tiq3PyxGOG0b5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 27, tzinfo=datetime.timezone.utc), 5, 4.84, -73.980833, 40.729782, -73.985543, 40.780453, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'eTUhDeZlvzV2tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 20, tzinfo=datetime.timezone.utc), 3, 4.0, -73.98854, 40.753612, -73.952695, 40.791583, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'L2VuPpTJOmOaCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 14, tzinfo=datetime.timezone.utc), 1, 4.1, -73.982435, 40.739755, -73.953783, 40.789602, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'h7wUFKOycmQcZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 24, tzinfo=datetime.timezone.utc), 5, 4.49, -73.969723, 40.757082, -73.950607, 40.80999, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'HLjgCcGQItYSIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 17, tzinfo=datetime.timezone.utc), 1, 4.9, -74.015462, 40.71819, -73.974552, 40.759002, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685115.6930006', 'IBZ+IAo37rHpMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 50, tzinfo=datetime.timezone.utc), 1, 6.36, -73.9682, 40.768315, -73.983063, 40.739063, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'OE8J37GldNLBuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), 1, 4.84, -74.003747, 40.723643, -73.965787, 40.677607, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'RetqaWna28DaPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 15, tzinfo=datetime.timezone.utc), 2, 3.79, -73.731447, 40.589165, -73.736218, 40.57829, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'd/kgE+6cExmlMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 2, 48, tzinfo=datetime.timezone.utc), 1, 6.41, -73.967403, 40.80333, -74.0034, 40.737507, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'KpCecp7YMDv8fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 19, tzinfo=datetime.timezone.utc), 1, 6.75, -73.8721, 40.774095, -73.95, 40.717952, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'MdD1tMG4EtwF7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 11, tzinfo=datetime.timezone.utc), 2, 6.36, -73.978277, 40.760287, -73.985203, 40.687033, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'otKBSaDHzZCKdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 15, tzinfo=datetime.timezone.utc), 1, 5.96, -73.965472, 40.710612, -74.00483, 40.740678, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'qgvEP7lDZND4Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 2, 8, tzinfo=datetime.timezone.utc), 5, 5.27, -73.991, 40.727912, -73.946612, 40.77684, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'a9rN32rrCltwCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 26, tzinfo=datetime.timezone.utc), 1, 5.86, -73.976778, 40.748423, -73.907207, 40.776235, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', '1qHrFB6DWUt8xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 43, tzinfo=datetime.timezone.utc), 3, 5.99, -73.998165, 40.760975, -73.994378, 40.697793, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', '39Rv9+mA1Q80sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 4, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 4, 45, tzinfo=datetime.timezone.utc), 5, 6.14, -74.0003, 40.730925, -73.916882, 40.70298, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'mqIoRLFPCs8Ymg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 6, tzinfo=datetime.timezone.utc), 1, 5.54, -73.995797, 40.726665, -73.94146, 40.676795, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'gVY4yLCFiodvDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 52, tzinfo=datetime.timezone.utc), 5, 5.1, -74.001857, 40.735813, -73.95882, 40.780963, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'lOCSAUsCc9tQUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 32, tzinfo=datetime.timezone.utc), 1, 5.94, 0.0, 0.0, 0.0, 0.0, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685115.6930006', 'ABrqPMX4EfsQyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 20, tzinfo=datetime.timezone.utc), 5, 6.72, 0.0, 0.0, 0.0, 0.0, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'ZLHqU/uFwWXtNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 31, tzinfo=datetime.timezone.utc), 3, 6.33, -73.988777, 40.742648, -73.992343, 40.666222, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'EiWP31dbTOYC9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 51, tzinfo=datetime.timezone.utc), 5, 7.57, -73.956857, 40.766415, -73.989877, 40.701357, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', '5UoF8SBpN49p0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 59, tzinfo=datetime.timezone.utc), 1, 5.62, -73.98546, 40.761342, -73.917145, 40.77554, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'xClxRAs3PmX3Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 4, tzinfo=datetime.timezone.utc), 5, 7.01, -73.989895, 40.767218, -73.969867, 40.69307, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', '0dYw372SDGvIgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 30, tzinfo=datetime.timezone.utc), 1, 4.96, -74.000412, 40.7477, -73.951432, 40.779207, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'ca1BpcsBXPSM2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 20, tzinfo=datetime.timezone.utc), 2, 6.25, -74.004495, 40.721548, -73.991727, 40.680673, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'ABYO1jfIpT2QIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 20, tzinfo=datetime.timezone.utc), 5, 5.55, -73.981298, 40.781005, -74.011575, 40.707755, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'mJMC5O+xoBRObw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 4, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 5, 11, tzinfo=datetime.timezone.utc), 1, 7.12, -73.990303, 40.758208, -73.949877, 40.826913, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', '8GZo37+xCGusbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 51, tzinfo=datetime.timezone.utc), 5, 7.56, -73.986352, 40.761362, -73.992565, 40.695957, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'RQs+0foIDOrAzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 8, tzinfo=datetime.timezone.utc), 2, 6.0, -74.005307, 40.73341, -73.983782, 40.740397, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'wZiNdBK97D/L6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 55, tzinfo=datetime.timezone.utc), 5, 7.41, -73.789793, 40.647748, -73.867632, 40.693782, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', '2G55QIBtN27jUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 5, tzinfo=datetime.timezone.utc), 1, 7.34, -73.975888, 40.748758, -73.94173, 40.826905, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'dHg6oNU809VMVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 31, tzinfo=datetime.timezone.utc), 1, 6.18, -73.978383, 40.789092, -73.984972, 40.724358, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685115.6930006', 'ly2JWMlI2X3ZIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 0, tzinfo=datetime.timezone.utc), 2, 6.72, -74.005595, 40.738067, -73.974768, 40.655172, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'VsE/biLWReaCCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 26, tzinfo=datetime.timezone.utc), 1, 8.0, -73.971755, 40.75034, -73.966395, 40.67595, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'dM586GXtVe1Viw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 14, tzinfo=datetime.timezone.utc), 1, 8.77, -74.002295, 40.730043, -74.020472, 40.63485, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'NSK/OiGsgk+S4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 17, tzinfo=datetime.timezone.utc), 1, 8.32, -74.005692, 40.740033, -73.913125, 40.765167, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'rZMGDwmbucxwKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 5, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 6, 4, tzinfo=datetime.timezone.utc), 3, 8.7, -74.003758, 40.732268, -74.014447, 40.634447, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'DEivb6UoYbxgnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 48, tzinfo=datetime.timezone.utc), 5, 6.85, -74.006088, 40.733093, -73.9941, 40.749083, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'BHjyOq/fYTHQcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 13, tzinfo=datetime.timezone.utc), 2, 5.28, -73.976587, 40.739608, -73.959517, 40.798767, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685115.6930006', 'wgmrtzAAaB3EVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 21, tzinfo=datetime.timezone.utc), 1, 8.28, -73.973958, 40.789183, -73.996608, 40.692418, 'CASH', 22.9, 0.5, 0.0, 0.0, 23.4, '1705685115.6930006', 'iYzWMqEA8494kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 27, tzinfo=datetime.timezone.utc), 1, 6.97, -73.986377, 40.756132, -73.914453, 40.808018, 'CASH', 22.9, 0.5, 0.0, 0.0, 23.4, '1705685115.6930006', 'ucE7mPfPJZUI+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 47, tzinfo=datetime.timezone.utc), 5, 11.11, -73.870908, 40.773723, -73.798355, 40.644407, 'CASH', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685115.6930006', 'W9o4I8fPzJkLdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 20, tzinfo=datetime.timezone.utc), 2, 9.54, -73.994485, 40.744537, -73.941663, 40.843228, 'Credit', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685115.6930006', 'pum22UkBfKqntw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 2, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 2, 32, tzinfo=datetime.timezone.utc), 2, 10.52, -73.995352, 40.715952, -73.937472, 40.829142, 'Credit', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685115.6930006', 'iPlyNSsacgg+fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 3, 8, tzinfo=datetime.timezone.utc), 1, 10.42, -74.002222, 40.734448, -74.028112, 40.625942, 'CASH', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685115.6930006', 'KFVhHhCN1PVhhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 38, tzinfo=datetime.timezone.utc), 1, 10.11, -73.99978, 40.734395, -73.876593, 40.760237, 'CASH', 26.9, 0.5, 0.0, 0.0, 27.4, '1705685115.6930006', 'wfQsxUUbn8o02w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 4, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 56, tzinfo=datetime.timezone.utc), 1, 8.26, -73.990728, 40.724488, -73.969142, 40.797928, 'CASH', 26.9, 0.5, 0.0, 0.0, 27.4, '1705685115.6930006', 'V9iHbnNKggCsXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), 2, 12.17, -73.992735, 40.753757, -73.855062, 40.840613, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685115.6930006', 'mosrQ2NCasoMtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 11, tzinfo=datetime.timezone.utc), 1, 9.65, -73.999505, 40.71766, -73.957932, 40.803503, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685115.6930006', 'pwaxc1k7E88/VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), 1, 12.69, -73.964297, 40.764593, -73.866687, 40.852965, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685115.6930006', 'eGoA/J80tCgZ2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 58, tzinfo=datetime.timezone.utc), 1, 13.07, -73.98994, 40.756693, -73.93913, 40.618787, 'CASH', 30.9, 0.5, 0.0, 0.0, 31.4, '1705685115.6930006', 'gQKwRtZX9X4CYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 29, tzinfo=datetime.timezone.utc), 5, 12.06, -74.004772, 40.706643, -73.954372, 40.576823, 'CASH', 30.9, 0.5, 0.0, 0.0, 31.4, '1705685115.6930006', 'PYCjUqOnQiOvtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 27, tzinfo=datetime.timezone.utc), 5, 10.16, -73.862855, 40.768797, -73.966702, 40.794107, 'CASH', 28.9, 0.0, 0.0, 4.15, 33.05, '1705685115.6930006', 'EuuhGbhf3tY5XA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 34, tzinfo=datetime.timezone.utc), 1, 14.72, -74.009293, 40.711667, -73.8721, 40.773288, 'CASH', 32.9, 0.0, 0.0, 4.15, 37.05, '1705685115.6930006', 'VfJqb7em8dC/og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 43, tzinfo=datetime.timezone.utc), 1, 16.46, -73.98433, 40.724955, -73.98586, 40.594298, 'CASH', 36.9, 0.0, 0.0, 4.15, 41.05, '1705685115.6930006', 'sdH3UI3RIySbnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 49, tzinfo=datetime.timezone.utc), 1, 16.59, -73.86344, 40.769753, -74.00767, 40.704853, 'CASH', 36.9, 0.0, 0.0, 4.15, 41.05, '1705685115.6930006', 'IeVaPTRutbHsGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 50, tzinfo=datetime.timezone.utc), 2, 16.58, -73.990612, 40.756188, -73.980322, 40.614912, 'CASH', 42.9, 0.0, 0.0, 4.15, 47.05, '1705685115.6930006', 'Pacnytpd6+csVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n"
          ]
        },
        {
          "output_type": "stream",
          "name": "stderr",
          "text": [
            "IOPub data rate exceeded.\n",
            "The notebook server will temporarily stop sending output\n",
            "to the client in order to avoid crashing it.\n",
            "To change this limit, set the config variable\n",
            "`--NotebookApp.iopub_data_rate_limit`.\n",
            "\n",
            "Current values:\n",
            "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n",
            "NotebookApp.rate_limit_window=3.0 (secs)\n",
            "\n"
          ]
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 17, tzinfo=datetime.timezone.utc), 1, 2.84, -74.005807, 40.750723, -73.997445, 40.722468, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685115.6930006', 'tc7K8R57nSvDxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 14, tzinfo=datetime.timezone.utc), 5, 4.07, -73.943685, 40.776642, -73.97432, 40.736957, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685115.6930006', 'Jxc+szilH2GnqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 34, tzinfo=datetime.timezone.utc), 1, 2.14, -73.965217, 40.765917, -73.984425, 40.747647, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685115.6930006', 'urERH+DY6nxlBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 3, tzinfo=datetime.timezone.utc), 5, 2.88, -73.96442, 40.756257, -73.972647, 40.785728, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685115.6930006', 'c0xeNN8AiGPutg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 11, tzinfo=datetime.timezone.utc), 1, 2.73, -73.961005, 40.777872, -73.978707, 40.746092, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685115.6930006', 'Q5Os1lVpCkDMrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 1, tzinfo=datetime.timezone.utc), 1, 4.89, -73.987807, 40.700877, -73.983262, 40.734522, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685115.6930006', 'aSD918cWRVVgnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 41, tzinfo=datetime.timezone.utc), 5, 4.1, -73.949467, 40.785187, -73.98948, 40.743132, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685115.6930006', 'FdSF0F7LTxa7Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 6, tzinfo=datetime.timezone.utc), 5, 4.86, -73.999493, 40.727538, -73.960197, 40.758098, 'Credit', 13.7, 1.0, 1.0, 0.0, 15.7, '1705685115.6930006', 'IBiFpDKh+MXiRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 55, tzinfo=datetime.timezone.utc), 5, 3.33, -73.979162, 40.776817, -73.994562, 40.738185, 'Credit', 13.7, 1.0, 1.0, 0.0, 15.7, '1705685115.6930006', 'mbDmdmu9CJHFBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 28, tzinfo=datetime.timezone.utc), 1, 5.82, -73.916777, 40.743182, -73.99657, 40.737232, 'Credit', 16.9, 0.5, 1.0, 0.0, 18.4, '1705685115.6930006', 'D1HUjwkp5KyMHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 4, tzinfo=datetime.timezone.utc), 5, 4.1, -73.975338, 40.777217, -74.005298, 40.72853, 'Credit', 16.9, 1.0, 1.0, 0.0, 18.9, '1705685115.6930006', 'AxjIzzEfzfecWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 16, tzinfo=datetime.timezone.utc), 5, 5.92, -73.949167, 40.781278, -74.002043, 40.739703, 'Credit', 16.1, 0.0, 1.0, 0.0, 17.1, '1705685115.6930006', '9XI7p+NPfeLtdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), 1, 4.69, -73.993605, 40.76229, -73.991643, 40.738462, 'Credit', 18.1, 0.0, 1.0, 0.0, 19.1, '1705685115.6930006', 'QLsu7AH4try4Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 39, tzinfo=datetime.timezone.utc), 1, 6.26, -73.9502, 40.80229, -74.008343, 40.746692, 'Credit', 18.1, 1.0, 1.0, 0.0, 20.1, '1705685115.6930006', 'czIvA2vbUxgJZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 42, tzinfo=datetime.timezone.utc), 1, 6.48, -73.968413, 40.750645, -73.94839, 40.821617, 'Credit', 18.1, 1.0, 1.0, 0.0, 20.1, '1705685115.6930006', 'gfsLrt9VxzsN8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 43, tzinfo=datetime.timezone.utc), 2, 0.93, -73.965072, 40.766685, -73.979332, 40.771735, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'qGRF0c4j5DxKOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 47, tzinfo=datetime.timezone.utc), 5, 0.92, -73.980522, 40.75087, -73.990748, 40.74374, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'btmF8Qv4Pb1h3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 27, tzinfo=datetime.timezone.utc), 5, 0.79, -73.954093, 40.790168, -73.956972, 40.781042, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', '69NhbXVdFhb0tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 29, tzinfo=datetime.timezone.utc), 2, 0.72, -73.990253, 40.746448, -73.98369, 40.755663, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'aAS+vI5T1WSvog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 39, tzinfo=datetime.timezone.utc), 5, 0.7, -73.980925, 40.773412, -73.98934, 40.769552, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'ntswj3QzeBshGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 12, tzinfo=datetime.timezone.utc), 2, 0.89, -73.994847, 40.734438, -73.992083, 40.743925, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'hz4GXZ1OheOgMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 8, tzinfo=datetime.timezone.utc), 1, 0.17, -73.970322, 40.758378, -73.973697, 40.75761, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'TZqpcZQuUMJgQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 36, tzinfo=datetime.timezone.utc), 5, 0.75, -73.998627, 40.721233, -73.991838, 40.727015, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'YFaH45ma9YPPFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 12, tzinfo=datetime.timezone.utc), 1, 0.81, -74.008948, 40.713772, -74.011315, 40.723667, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'VijP1L6SEKuVlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 6, tzinfo=datetime.timezone.utc), 1, 0.69, -73.961378, 40.768862, -73.954743, 40.777672, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'rpzKCFLZ7UaFrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 49, tzinfo=datetime.timezone.utc), 1, 0.93, -73.96637, 40.76878, -73.956188, 40.767387, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'w2Banavp6hfOtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 10, tzinfo=datetime.timezone.utc), 1, 0.95, -73.996893, 40.733275, -74.004817, 40.725537, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'EHAu5SYkayrUpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 47, tzinfo=datetime.timezone.utc), 5, 0.96, -73.960215, 40.761947, -73.954773, 40.773313, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'rchdp9Yu0pgKTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 9, tzinfo=datetime.timezone.utc), 2, 1.04, -73.957595, 40.801438, -73.968112, 40.792065, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', '7D3mDy8OhEgH9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 31, tzinfo=datetime.timezone.utc), 1, 0.84, -73.980125, 40.743137, -73.976812, 40.750843, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'CDL6Y9N39+h4hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), 1, 0.73, -74.005853, 40.72603, -73.997727, 40.719317, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'aUNumqRZTuupEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 15, tzinfo=datetime.timezone.utc), 1, 0.93, -73.960613, 40.769693, -73.949902, 40.776015, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'RMn9yVLxhhqrgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 6, 22, tzinfo=datetime.timezone.utc), 1, 1.23, -73.986023, 40.727477, -73.975365, 40.74245, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'TAJczo3wru8+JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 17, tzinfo=datetime.timezone.utc), 1, 0.98, -73.982437, 40.751237, -73.992428, 40.758362, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685115.6930006', 'cF1kCV8ztB82Hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 36, tzinfo=datetime.timezone.utc), 1, 1.16, -73.947295, 40.78412, -73.957755, 40.769565, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'WD4k5FMBlEReew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 5, 38, tzinfo=datetime.timezone.utc), 1, 1.0, -73.99001, 40.756282, -73.975203, 40.756135, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'DQ9f7dNzizxIkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 24, tzinfo=datetime.timezone.utc), 1, 1.25, -73.990828, 40.734778, -74.002065, 40.719232, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'BFpAZ4Ry9r+tkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 51, tzinfo=datetime.timezone.utc), 3, 0.88, -73.981518, 40.737277, -73.989245, 40.726257, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'a6kz92nlSbDA8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 59, tzinfo=datetime.timezone.utc), 5, 0.96, -73.975522, 40.789623, -73.967752, 40.801975, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'UBPikZq/yaEvLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 51, tzinfo=datetime.timezone.utc), 2, 0.72, -73.992315, 40.725048, -73.996783, 40.715497, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'FOYDK0zcDc9Cjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 35, tzinfo=datetime.timezone.utc), 1, 1.0, -73.946593, 40.667157, -73.958982, 40.733215, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'FtlJH8fGb+5K7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 38, tzinfo=datetime.timezone.utc), 5, 0.59, -73.983888, 40.740578, -73.995757, 40.736115, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'A2ES0R0r0tGssA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 18, tzinfo=datetime.timezone.utc), 5, 0.77, -73.989107, 40.720403, -73.989557, 40.712653, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'kTjNYHPCuodS1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 3, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 24, tzinfo=datetime.timezone.utc), 1, 0.93, -74.007513, 40.740107, -74.00267, 40.74999, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'Z58+Nm4CakhkhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 47, tzinfo=datetime.timezone.utc), 1, 1.2, -73.993098, 40.75786, -74.003797, 40.743075, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 'Sj8vnpdUedU6Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 42, tzinfo=datetime.timezone.utc), 1, 1.32, -73.994108, 40.746083, -74.005168, 40.728868, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', '/4CBUG1DydQUjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 54, tzinfo=datetime.timezone.utc), 1, 0.96, -73.969918, 40.797315, -73.965625, 40.80911, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', '5y0kOhmkGb2KKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 17, tzinfo=datetime.timezone.utc), 5, 0.93, -73.992018, 40.725382, -73.980932, 40.72959, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685115.6930006', 't7FKLI9efkEx0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 37, tzinfo=datetime.timezone.utc), 1, 0.93, -73.98112, 40.781078, -73.974388, 40.791658, 'Credit', 4.9, 1.0, 1.0, 0.0, 6.9, '1705685115.6930006', '+uZz/b2r9b/g5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.37, -73.987693, 40.728508, -74.005562, 40.726037, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'JBDLPixBgRWHCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 8, tzinfo=datetime.timezone.utc), 2, 1.36, -74.008488, 40.732525, -73.996163, 40.748762, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'hWB3FXJXS+b8Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 38, tzinfo=datetime.timezone.utc), 2, 1.74, -74.005088, 40.719315, -73.991147, 40.736798, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', '2Yhs3nRZTT/OEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 4, tzinfo=datetime.timezone.utc), 1, 1.42, -73.986368, 40.743598, -73.974237, 40.75526, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', '98bq8p7P1Scq5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 49, 1, tzinfo=datetime.timezone.utc), 2, 1.8, -73.98851, 40.75353, -73.981695, 40.770604, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', '9O+Vt0GNC/FZAA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 13, tzinfo=datetime.timezone.utc), 1, 0.99, -73.972173, 40.747307, -73.987125, 40.752553, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'l1+3NtFfYYyHEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 18, tzinfo=datetime.timezone.utc), 1, 1.65, -73.979762, 40.755705, -73.984902, 40.736707, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'jKzyeuj1qWah+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 29, tzinfo=datetime.timezone.utc), 2, 0.81, -73.975665, 40.749317, -73.982223, 40.755787, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'gFWjwzHazIKNyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 41, tzinfo=datetime.timezone.utc), 1, 1.48, -73.99114, 40.727732, -73.996045, 40.742743, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'FBtPPDuJierrvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.82, -73.954652, 40.789375, -73.971777, 40.766293, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'AxpIcEA1QjBpjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 33, tzinfo=datetime.timezone.utc), 1, 1.63, -73.971128, 40.764377, -73.956837, 40.784097, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', 'pNH/WZp8VTt2xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 34, tzinfo=datetime.timezone.utc), 1, 1.42, -73.982878, 40.738805, -73.99813, 40.735315, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685115.6930006', '0VPDBCXTwj7njg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 53, tzinfo=datetime.timezone.utc), 3, 1.9, -73.958992, 40.799637, -73.979198, 40.784675, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', '+xO/7IspyOWI6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 40, tzinfo=datetime.timezone.utc), 2, 1.85, -73.954233, 40.787337, -73.978217, 40.786363, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'MW3jHlsyMgxkDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 24, tzinfo=datetime.timezone.utc), 1, 1.59, -73.962797, 40.758518, -73.947033, 40.776057, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', '4/au31Lqs75Yfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 50, tzinfo=datetime.timezone.utc), 5, 1.51, -73.970832, 40.748558, -73.977792, 40.763627, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'j/SwTNTwHfmPMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 25, tzinfo=datetime.timezone.utc), 2, 2.3, -73.94814, 40.770455, -73.974187, 40.746297, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', '2HOoYVVK6vXTjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 16, tzinfo=datetime.timezone.utc), 5, 1.68, -73.991112, 40.770762, -73.979318, 40.755428, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'oJliI1nzoqe+nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 23, tzinfo=datetime.timezone.utc), 2, 1.23, -73.994583, 40.721253, -73.975723, 40.718918, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'L9RFm5+oJLUNkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.59, -73.976283, 40.780748, -73.962148, 40.770712, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', '9pfECe+Hck+xOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 35, tzinfo=datetime.timezone.utc), 1, 1.85, -73.975897, 40.751417, -73.996255, 40.736288, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'hEzB/DwN73qLag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 28, tzinfo=datetime.timezone.utc), 2, 1.65, -73.970092, 40.758332, -73.953497, 40.767215, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'IId1oY3a02zQ+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 26, tzinfo=datetime.timezone.utc), 1, 2.15, -73.9871, 40.733352, -73.972687, 40.75957, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685115.6930006', 'TrTAMuT6aCu3kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 43, tzinfo=datetime.timezone.utc), 2, 2.02, -73.988092, 40.759682, -73.960835, 40.75724, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'FJjiWgSbKvZGeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 27, tzinfo=datetime.timezone.utc), 1, 2.05, -74.00404, 40.750985, -73.984618, 40.759985, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'iDuYf05GcoOPhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 41, tzinfo=datetime.timezone.utc), 1, 1.92, -73.969518, 40.767875, -73.97179, 40.775282, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'a8+RgxLhedJIUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 14, tzinfo=datetime.timezone.utc), 1, 2.25, -73.976953, 40.763592, -73.953605, 40.780193, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'TGjx/RkDHztl3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 52, tzinfo=datetime.timezone.utc), 1, 2.19, -73.999742, 40.752923, -73.980577, 40.772928, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'loSZdO9y0d177g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 29, tzinfo=datetime.timezone.utc), 2, 2.02, -74.000838, 40.746347, -73.981225, 40.729003, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'c54oAuwORrNtBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 42, tzinfo=datetime.timezone.utc), 2, 1.87, -73.96971, 40.753145, -73.985132, 40.72915, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', '71k4kCAsCJtvOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 31, tzinfo=datetime.timezone.utc), 4, 1.31, -73.997693, 40.727555, -73.981555, 40.724578, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'Sn2GTS6tU9MCsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 24, tzinfo=datetime.timezone.utc), 5, 1.8, -74.011267, 40.702735, -74.01581, 40.715172, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685115.6930006', 'MG99vWBmKNB/aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 41, tzinfo=datetime.timezone.utc), 1, 0.19, -73.988575, 40.753515, -74.00515, 40.729455, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'tR4sipdPqFA5Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 24, tzinfo=datetime.timezone.utc), 2, 2.07, -73.974638, 40.746397, -73.985798, 40.726778, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'Fg2vY2bjhi95mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 31, tzinfo=datetime.timezone.utc), 5, 1.52, -74.235548, 40.772248, -74.239548, 40.776728, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'QsXJ8MAWTIJPhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 27, tzinfo=datetime.timezone.utc), 2, 1.28, -73.897295, 40.754247, -73.897295, 40.754247, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'sbR1aLxEDmSpZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 6, tzinfo=datetime.timezone.utc), 5, 1.9, -73.978598, 40.75892, -73.980258, 40.77542, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'rkVUTw4e+uA4vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 9, tzinfo=datetime.timezone.utc), 5, 1.83, -73.974813, 40.742013, -73.997812, 40.741387, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685115.6930006', 'xEN+rF/s9/QAlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 48, tzinfo=datetime.timezone.utc), 2, 2.36, -73.975538, 40.733145, -73.981138, 40.757977, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'NVXNIe82wRKITQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 23, tzinfo=datetime.timezone.utc), 4, 2.61, -73.953875, 40.806502, -73.961225, 40.776798, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'VqiIA4hYzDIG0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 57, tzinfo=datetime.timezone.utc), 1, 1.92, -73.985957, 40.740105, -73.9673, 40.761397, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'W8mmhAxeWFgYhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 28, tzinfo=datetime.timezone.utc), 5, 2.5, -73.972185, 40.786617, -73.997815, 40.7609, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'dpfyvNtJWuLR7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 25, tzinfo=datetime.timezone.utc), 1, 2.51, -73.970487, 40.796698, -73.976495, 40.765685, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'DfFbcF/0pzsctw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 48, tzinfo=datetime.timezone.utc), 2, 2.91, -73.983325, 40.721368, -74.007193, 40.705417, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'LurjcVXjcxGTVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.56, -74.001478, 40.724108, -73.988953, 40.73678, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'nqEfFXgRv7YEvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 46, tzinfo=datetime.timezone.utc), 5, 2.07, -73.967847, 40.75766, -73.990622, 40.74528, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'Z9UhGFzQdz4yhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.97, -73.966605, 40.75341, -73.983002, 40.76932, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'D+v48lKxMm75fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 35, tzinfo=datetime.timezone.utc), 5, 2.13, -73.978085, 40.725332, -73.988137, 40.745685, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'zqtfersvkhwERQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 0, tzinfo=datetime.timezone.utc), 1, 2.16, -73.977708, 40.764738, -73.95617, 40.784417, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'ymIDhlpcisMOwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 16, tzinfo=datetime.timezone.utc), 1, 2.65, -73.982295, 40.776962, -74.007702, 40.751625, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685115.6930006', 'V5ptIz19uQt4hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 14, tzinfo=datetime.timezone.utc), 1, 2.7, -74.006045, 40.717085, -73.979565, 40.74363, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', '1IGb5Nua9AlFxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 5, tzinfo=datetime.timezone.utc), 2, 2.62, -73.989732, 40.7141, -74.005368, 40.739923, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'o7ObA+A61Ayr4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 35, tzinfo=datetime.timezone.utc), 1, 2.56, -73.9914, 40.749825, -73.988918, 40.722728, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'cxDZI3FxSMyLsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 2, tzinfo=datetime.timezone.utc), 1, 2.99, -73.940803, 40.712168, -73.987682, 40.71953, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'Slsq8vP817pOBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 47, tzinfo=datetime.timezone.utc), 1, 2.81, -73.973013, 40.785123, -73.943253, 40.810685, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'feVJNNGUOR+UJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 15, tzinfo=datetime.timezone.utc), 5, 1.52, -73.973428, 40.764053, -73.992712, 40.758157, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'qTSLxBpAH7AHKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 58, tzinfo=datetime.timezone.utc), 5, 2.64, -73.990975, 40.769515, -73.957582, 40.776013, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685115.6930006', 'qud+M4YSxuF2tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 55, tzinfo=datetime.timezone.utc), 5, 4.33, -73.973827, 40.743522, -74.01084, 40.701907, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685115.6930006', '6JTyPjC6VlKp8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 6, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 22, 58, tzinfo=datetime.timezone.utc), 2, 2.7, -73.981235, 40.763671, -73.98027, 40.73412, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685115.6930006', '0ShIB+rjhuhhAg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 50, tzinfo=datetime.timezone.utc), 1, 3.22, -73.974698, 40.777965, -73.976662, 40.743663, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685115.6930006', 'YWAvppV3jnnbNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 53, tzinfo=datetime.timezone.utc), 5, 2.8, -73.98782, 40.716323, -73.997733, 40.745012, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685115.6930006', 'gfMtmdkss/BQuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 0, tzinfo=datetime.timezone.utc), 1, 3.16, -73.981992, 40.770978, -73.948682, 40.781435, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685115.6930006', '45XhCL0SP5Sw8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 19, tzinfo=datetime.timezone.utc), 1, 3.7, -74.005843, 40.748407, -74.010162, 40.705113, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685115.6930006', 'tKOOJuX/QB21yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 1, tzinfo=datetime.timezone.utc), 1, 2.91, -73.996212, 40.753337, -73.998118, 40.719697, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685115.6930006', 'dghbguYIxtTIWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 11, tzinfo=datetime.timezone.utc), 2, 1.83, -73.97019, 40.764472, -73.994868, 40.7594, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685115.6930006', 'L1MNjmURcd5NIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 17, tzinfo=datetime.timezone.utc), 3, 3.85, -73.993327, 40.752263, -74.010858, 40.713177, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685115.6930006', '/lkeyocXoJGlig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 19, tzinfo=datetime.timezone.utc), 1, 3.48, -74.001032, 40.736842, -73.972045, 40.758873, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685115.6930006', 'ffVIYaLvI3+Q8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 18, tzinfo=datetime.timezone.utc), 1, 3.47, -73.966248, 40.767947, -73.997193, 40.725013, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685115.6930006', 'AWxsc3clgVwzzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 26, tzinfo=datetime.timezone.utc), 1, 4.59, -73.946515, 40.779985, -73.980933, 40.729425, 'Credit', 13.3, 1.0, 1.0, 0.0, 15.3, '1705685115.6930006', 'X+W+c9BLKzr2EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 29, tzinfo=datetime.timezone.utc), 1, 7.36, -73.998622, 40.756047, -73.943253, 40.839495, 'Credit', 18.1, 0.5, 1.0, 0.0, 19.6, '1705685115.6930006', 'S38IHj8c/x9Xvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 51, tzinfo=datetime.timezone.utc), 1, 10.34, -73.872247, 40.773872, -73.992568, 40.758262, 'Credit', 33.7, 1.0, 1.0, 0.0, 35.7, '1705685115.6930006', 'bK7rVFWiA7t93Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 52, tzinfo=datetime.timezone.utc), 1, 6.54, -73.953292, 40.76745, -74.01135, 40.703985, 'Credit', 15.3, 0.0, 1.0, 0.0, 16.3, '1705685115.6930006', '7WY/OL8vvsn0xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 37, tzinfo=datetime.timezone.utc), 5, 5.84, -74.00768, 40.705242, -73.976365, 40.760413, 'Credit', 15.3, 0.0, 1.0, 0.0, 16.3, '1705685115.6930006', 'J5DZ5IqdMmrPnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 42, tzinfo=datetime.timezone.utc), 2, 3.86, -74.000178, 40.721553, -73.97432, 40.762882, 'Credit', 15.3, 1.0, 1.0, 0.0, 17.3, '1705685115.6930006', 'G7FXTYAhQpbvYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 32, tzinfo=datetime.timezone.utc), 5, 6.47, 0.0, 0.0, 0.0, 0.0, 'Credit', 17.3, 0.0, 1.0, 0.0, 18.3, '1705685115.6930006', 'THOf5gLL55j6Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 49, tzinfo=datetime.timezone.utc), 4, 0.56, -73.969062, 40.753357, -73.975928, 40.749078, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685115.6930006', 'pCbV/6+P8gMGHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 1, tzinfo=datetime.timezone.utc), 1, 0.23, -73.987723, 40.752522, -73.992212, 40.749913, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685115.6930006', 'nQKkXbqeGde7Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 35, tzinfo=datetime.timezone.utc), 1, 0.3, -73.955995, 40.782005, -73.953923, 40.78481, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685115.6930006', '7MbxoZzT1Bgdow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 19, tzinfo=datetime.timezone.utc), 2, 0.52, -73.977805, 40.761135, -73.984412, 40.759857, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685115.6930006', 'YjlCVPf+4uCYXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 9, tzinfo=datetime.timezone.utc), 1, 0.4, -73.966408, 40.767147, -73.962125, 40.770277, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685115.6930006', 'Y0bCAJb5JDKLVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 6, tzinfo=datetime.timezone.utc), 2, 0.57, -73.984943, 40.771207, -73.985347, 40.778123, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685115.6930006', 'JB9MqznxC82Z9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 56, tzinfo=datetime.timezone.utc), 1, 0.51, -73.975315, 40.751558, -73.970235, 40.749142, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685115.6930006', 'k/a4OOGy63MFXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 51, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99966, 40.753787, -73.999527, 40.761403, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', '1N6uFRC8QodAOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.75, -74.003882, 40.725693, -74.002872, 40.733933, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', 'psLxUEg/3tIBxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 27, tzinfo=datetime.timezone.utc), 1, 0.54, -73.9898, 40.764637, -73.987312, 40.764063, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', 'SN8A4VQtJD2IZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 36, tzinfo=datetime.timezone.utc), 2, 0.6, -73.978725, 40.736922, -73.975937, 40.744082, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', 'Y6TmwX6FawhEfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 21, tzinfo=datetime.timezone.utc), 5, 0.62, -73.969258, 40.766813, -73.963442, 40.774445, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', 'tgtDlT5+IZz3MQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 31, tzinfo=datetime.timezone.utc), 2, 0.5, -73.950815, 40.78599, -73.953027, 40.78035, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685115.6930006', 'd8JIqRsxdYn3Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 37, tzinfo=datetime.timezone.utc), 1, 1.03, -73.959022, 40.781003, -73.961633, 40.771157, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'blWEQY4OajE3WA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 47, tzinfo=datetime.timezone.utc), 1, 1.34, -73.987303, 40.761368, -73.983598, 40.775878, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'eSWgYWY5j4fDdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 22, tzinfo=datetime.timezone.utc), 1, 0.75, -73.979877, 40.76537, -73.977638, 40.773733, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '330TGXDJr2oNPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 59, tzinfo=datetime.timezone.utc), 2, 1.2, -73.97325, 40.757645, -73.990035, 40.750977, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'bK1jjRwWEjJAVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 0, tzinfo=datetime.timezone.utc), 1, 1.1, -73.955465, 40.788678, -73.950438, 40.798147, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '+sz4dSgmiRxGDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 12, tzinfo=datetime.timezone.utc), 1, 1.2, -73.99056, 40.751267, -73.988118, 40.738507, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'sTl3A9Jcrwe9LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 10, tzinfo=datetime.timezone.utc), 3, 1.27, -73.994325, 40.746033, -73.97994, 40.750205, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'Pue4ALXod+rZ2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 7, 8, tzinfo=datetime.timezone.utc), 1, 1.12, -74.004708, 40.734005, -73.990263, 40.742723, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'VvtCLOKzk+VItQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 28, tzinfo=datetime.timezone.utc), 5, 1.11, -73.979878, 40.775823, -73.990128, 40.762073, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '2TJ7L/QS8S2aqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 18, 28, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 34, 5, tzinfo=datetime.timezone.utc), 4, 1.2, -73.954684, 40.783967, -73.960341, 40.770236, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '9GhH3fJDwuvMZg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 19, tzinfo=datetime.timezone.utc), 1, 0.88, -73.990853, 40.755932, -73.980715, 40.759207, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '8rVLBHT8W5utfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 53, tzinfo=datetime.timezone.utc), 5, 0.86, -73.944058, 40.776043, -73.95539, 40.77302, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', '9NUrm4q5sU2QOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.33, -73.95542, 40.779577, -73.96762, 40.762995, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'plyuKdoRHd989A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 54, tzinfo=datetime.timezone.utc), 1, 1.08, -73.983635, 40.721595, -73.991987, 40.730063, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'SXgaPMVrV9vd6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 14, tzinfo=datetime.timezone.utc), 5, 1.38, -73.999222, 40.74429, -73.984193, 40.754817, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685115.6930006', 'jsnJfC5hdHXt1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.29, -73.998673, 40.744605, -73.996835, 40.75998, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'syQPXNlPHUgKyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 35, tzinfo=datetime.timezone.utc), 1, 1.66, -73.953763, 40.782052, -73.96724, 40.761405, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', '3mzVP5W1QkLJ2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.33, -73.99215, 40.747377, -73.979638, 40.737408, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'wiN8TIM8VR042Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989868, 40.762227, -73.990605, 40.750997, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'YStxXxjvETXwiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.35, -73.958557, 40.784158, -73.975348, 40.789605, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'aVIZ57O+SBcoKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 1, tzinfo=datetime.timezone.utc), 1, 0.0, -74.008665, 40.711695, -74.008665, 40.711695, 'Credit', 6.2, 0.0, 1.0, 0.0, 7.2, '1705685115.6930006', 'W1As7gD+dPEe0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.13, -73.977843, 40.761317, -73.977342, 40.772553, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'yblHcFMRXF02EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 17, tzinfo=datetime.timezone.utc), 2, 1.08, -73.999865, 40.738277, -73.992585, 40.727167, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', '/tLSt+jPckSAaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 3, 4, tzinfo=datetime.timezone.utc), 1, 1.34, -73.978988, 40.72411, -73.999415, 40.730223, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'TQcxxjtEIfnmmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 27, tzinfo=datetime.timezone.utc), 1, 1.22, -73.989777, 40.734283, -73.976147, 40.741072, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', '2qk8TNWfi/fG/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 29, tzinfo=datetime.timezone.utc), 1, 1.27, -73.972598, 40.796358, -73.969747, 40.783777, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'qXd51deO6ADzzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 38, tzinfo=datetime.timezone.utc), 2, 1.18, -73.988618, 40.73735, -73.977652, 40.75179, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'N06BUQ3hd7Dkgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.05, -73.995017, 40.732525, -74.003322, 40.722892, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'jYETBGYvniNX/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 34, tzinfo=datetime.timezone.utc), 1, 0.76, -73.980575, 40.764753, -73.96793, 40.760007, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'QcwkMxLQRlp6Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 29, tzinfo=datetime.timezone.utc), 1, 1.2, -73.990827, 40.724443, -73.996867, 40.737672, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'tWqTclCIJUvMcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 37, tzinfo=datetime.timezone.utc), 2, 1.12, -74.007682, 40.725037, -74.010533, 40.714475, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'ARC/12VQOcJVaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 44, tzinfo=datetime.timezone.utc), 1, 1.52, -73.9762, 40.755435, -73.988938, 40.742022, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'KB0LI1vEOl3mcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 45, tzinfo=datetime.timezone.utc), 3, 1.44, -73.96164, 40.768388, -73.947255, 40.784177, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685115.6930006', 'IeX6aK4gznZmnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 8, tzinfo=datetime.timezone.utc), 1, 1.46, -73.976242, 40.739945, -73.96291, 40.758185, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'dxw1PKbFoyzlnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 11, tzinfo=datetime.timezone.utc), 1, 1.46, -73.99535, 40.739483, -73.9885, 40.755008, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'yEsZx3q5DXxWOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 5, tzinfo=datetime.timezone.utc), 1, 1.09, -73.980295, 40.73033, -73.984497, 40.718913, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'w1wLNVlq3ICIhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 18, tzinfo=datetime.timezone.utc), 1, 1.36, -73.974565, 40.74173, -73.962407, 40.758982, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'Ck7BtKKkoF1m9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 25, tzinfo=datetime.timezone.utc), 5, 1.42, -74.007375, 40.727275, -74.002063, 40.745102, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'aNhMTA5p2zbZsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.14, -73.996615, 40.747815, -73.994888, 40.76045, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', 'AIk7AMSjOIFmpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 14, tzinfo=datetime.timezone.utc), 5, 1.33, -74.006478, 40.749605, -74.005983, 40.7345, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685115.6930006', '3/mdZvVZcKCAZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 32, tzinfo=datetime.timezone.utc), 1, 1.71, -73.991135, 40.723955, -73.978768, 40.744907, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'qTbJ7iUAVNEenA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 42, tzinfo=datetime.timezone.utc), 2, 1.82, -73.982635, 40.774632, -73.997385, 40.756308, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'VKDfy9XXddPp/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 41, tzinfo=datetime.timezone.utc), 1, 1.53, -73.97537, 40.760422, -73.989362, 40.740905, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'n4GDsCNBnr8sRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 20, tzinfo=datetime.timezone.utc), 2, 1.46, -73.991015, 40.750018, -73.97013, 40.749582, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'PEBYT+cJwgE31w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.53, -74.006963, 40.739722, -73.99227, 40.751388, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'iJ0CCfM0sOziAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 50, tzinfo=datetime.timezone.utc), 1, 1.72, -73.99498, 40.72511, -73.991937, 40.744182, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'Wbbpu+fP5vHxsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 26, tzinfo=datetime.timezone.utc), 1, 1.82, -73.974715, 40.75258, -73.989527, 40.730063, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'aKseOSl0JKJx1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 43, tzinfo=datetime.timezone.utc), 5, 1.18, -73.985382, 40.731827, -73.99779, 40.72149, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'lXT4hzHXp5NG8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 48, tzinfo=datetime.timezone.utc), 1, 2.0, -73.957613, 40.769757, -73.976185, 40.744323, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', '2c+QywFwG4lclA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 8, tzinfo=datetime.timezone.utc), 5, 1.72, -73.998273, 40.721167, -74.001518, 40.737335, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'drlDw8kD6Yajig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 30, tzinfo=datetime.timezone.utc), 5, 1.78, -73.97589, 40.795402, -73.95903, 40.814813, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', 'jmoEYYu5ab3iEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 12, tzinfo=datetime.timezone.utc), 5, 2.14, -73.976135, 40.749118, -73.953715, 40.77083, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685115.6930006', '9kKukzjX93iajw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 8, tzinfo=datetime.timezone.utc), 5, 1.47, -73.97311, 40.764367, -73.9786, 40.776465, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685115.6930006', 'Tplfbe9Fa/NSuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 1, tzinfo=datetime.timezone.utc), 6, 1.78, -73.987195, 40.738975, -73.972605, 40.761252, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685115.6930006', 'hSIBOLf6wpxCZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 7, tzinfo=datetime.timezone.utc), 4, 1.35, -74.000372, 40.737175, -73.98209, 40.739277, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685115.6930006', 'R5xcwHv/yxJaPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 25, tzinfo=datetime.timezone.utc), 6, 2.08, -74.008338, 40.721218, -73.995882, 40.748828, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685115.6930006', 'Fj+1EUVG9UxR2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 55, tzinfo=datetime.timezone.utc), 1, 1.52, -74.005712, 40.733133, -73.994302, 40.732832, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685115.6930006', 'jrTZ4fmAGdXWKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 18, tzinfo=datetime.timezone.utc), 5, 2.42, -74.006358, 40.707967, -73.99116, 40.732948, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'nOD2F2AskehpJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 55, tzinfo=datetime.timezone.utc), 1, 1.23, -73.970063, 40.753107, -73.984092, 40.746198, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'ouX62ZeOAUyYsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 59, tzinfo=datetime.timezone.utc), 1, 1.84, -73.955058, 40.766075, -73.97363, 40.747928, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'cNYBSUmnbGo0Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 55, tzinfo=datetime.timezone.utc), 1, 2.68, -73.772615, 40.661502, -73.764882, 40.670598, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'VYg0ZFwsABlHHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 52, tzinfo=datetime.timezone.utc), 1, 2.7, -73.961638, 40.764385, -73.991085, 40.74207, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'AczdntbmEaVtHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 1, tzinfo=datetime.timezone.utc), 5, 2.24, -74.007753, 40.707152, -74.00306, 40.734415, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'EctuwNdDGLJbvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 41, tzinfo=datetime.timezone.utc), 2, 1.96, -73.994802, 40.739828, -73.982712, 40.731507, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'u1C+csMzIbmYtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 54, tzinfo=datetime.timezone.utc), 5, 2.74, -73.9756, 40.733097, -73.979162, 40.761933, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'zQX+mLedzHctXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 25, tzinfo=datetime.timezone.utc), 1, 1.98, -73.986173, 40.740247, -73.975308, 40.76358, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'Rv2uTZnsMwEw8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 34, tzinfo=datetime.timezone.utc), 3, 1.8, -73.980132, 40.785482, -73.956438, 40.778968, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685115.6930006', 'TU1d/XxDYTp62Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 28, tzinfo=datetime.timezone.utc), 1, 2.68, -73.971722, 40.74416, -74.008213, 40.73551, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', '1tkN0IRMdO0JzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 59, tzinfo=datetime.timezone.utc), 5, 2.72, -73.983103, 40.771102, -73.957357, 40.78601, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', 'UKgGxEDsCyYRzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 55, tzinfo=datetime.timezone.utc), 1, 2.87, -73.979752, 40.743375, -73.953542, 40.779575, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', 'rEqD1zD0CNE7nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 37, tzinfo=datetime.timezone.utc), 2, 2.64, -73.988953, 40.773388, -74.007915, 40.740137, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', 'JbdkeVai0XpA+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 22, tzinfo=datetime.timezone.utc), 1, 2.1, -74.00535, 40.736188, -73.979013, 40.744302, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', 'GwfeBk05t3Vcig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 20, tzinfo=datetime.timezone.utc), 2, 2.26, -74.005675, 40.7264, -73.994448, 40.73877, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', '/ULKG0p+8xc0Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 17, tzinfo=datetime.timezone.utc), 1, 1.98, -73.978787, 40.745168, -74.001502, 40.734787, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', 'C0EwJtoXgF8pdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 58, tzinfo=datetime.timezone.utc), 1, 2.66, -74.010505, 40.711488, -73.997928, 40.746222, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685115.6930006', '7LjrpZ5YB+MARg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 58, tzinfo=datetime.timezone.utc), 2, 1.76, -73.97935, 40.730065, -74.008062, 40.740335, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685115.6930006', 'ao4vsUpYZLfPWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 0, tzinfo=datetime.timezone.utc), 1, 1.83, -73.991542, 40.74983, -73.978343, 40.766573, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685115.6930006', '2uZCsHkkQl6Hgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 39, tzinfo=datetime.timezone.utc), 1, 1.41, -73.97221, 40.757468, -73.989037, 40.754343, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685115.6930006', 'dDHwQYSq0XTcJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 31, tzinfo=datetime.timezone.utc), 1, 2.27, -73.985768, 40.759922, -73.975302, 40.788672, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685115.6930006', 'Q7c0cJP8gsFJQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 10, tzinfo=datetime.timezone.utc), 5, 2.83, -73.94472, 40.779402, -73.972598, 40.752597, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685115.6930006', 'hwZOntcxIhhPDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 36, tzinfo=datetime.timezone.utc), 1, 2.93, -73.985315, 40.723487, -73.985955, 40.754903, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685115.6930006', 'O9DAx0qBqiRdBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 41, tzinfo=datetime.timezone.utc), 2, 2.72, -73.98931, 40.777437, -73.96786, 40.754275, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685115.6930006', 'nj6BLmqIMzNn0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 37, tzinfo=datetime.timezone.utc), 1, 3.61, -73.948768, 40.773768, -73.98203, 40.73589, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685115.6930006', '711fKS3fRqFCwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 27, tzinfo=datetime.timezone.utc), 1, 3.43, -73.944907, 40.808742, -73.947055, 40.771803, 'Credit', 10.9, 0.5, 1.0, 0.0, 12.4, '1705685115.6930006', '/9EHufVODeIN8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 11, tzinfo=datetime.timezone.utc), 2, 3.17, -73.972037, 40.757912, -74.002902, 40.724568, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685115.6930006', 'vOeIJvfZWYffHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 1, tzinfo=datetime.timezone.utc), 1, 3.64, -74.001735, 40.719373, -73.991673, 40.764972, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685115.6930006', 'mHeUpNBeMbR09g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 4, tzinfo=datetime.timezone.utc), 1, 3.15, -73.979953, 40.775117, -73.941197, 40.801973, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685115.6930006', 'umOsujGFUR8UHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 13, tzinfo=datetime.timezone.utc), 1, 3.01, -74.00594, 40.748535, -73.972598, 40.75884, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'x5pCLl8j3jb5Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 33, tzinfo=datetime.timezone.utc), 1, 2.77, -73.974628, 40.760658, -73.972168, 40.789837, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'cfDbZ/3BLsWbsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 0, tzinfo=datetime.timezone.utc), 1, 2.12, -74.008818, 40.731893, -73.987135, 40.748023, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'GADfaS2q4ZA2+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), 1, 3.87, -74.00152, 40.73101, -73.961798, 40.7683, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'gVNYvh/v/RgedQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 6, tzinfo=datetime.timezone.utc), 1, 3.49, -73.98218, 40.752877, -73.947345, 40.772682, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', '49bDqXL4UpyThg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 51, tzinfo=datetime.timezone.utc), 1, 3.64, -74.012072, 40.707522, -73.991233, 40.750262, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'wdc5tLPF8bcBRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 21, tzinfo=datetime.timezone.utc), 1, 3.24, -73.968695, 40.757727, -73.997717, 40.743262, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'iKhch3JBzpB8kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 36, tzinfo=datetime.timezone.utc), 1, 2.7, -73.957055, 40.77466, -73.9838, 40.766322, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685115.6930006', 'xSAVtxc0AJwe4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 4, tzinfo=datetime.timezone.utc), 5, 3.84, -73.96019, 40.762262, -73.916547, 40.764535, 'Credit', 12.9, 0.5, 1.0, 0.0, 14.4, '1705685115.6930006', 'FxOUEWpgzs5VLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 9, tzinfo=datetime.timezone.utc), 1, 3.37, -73.95304, 40.772418, -73.976853, 40.788373, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685115.6930006', '8EhXIt+lfnh95g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 2, tzinfo=datetime.timezone.utc), 5, 4.8, -73.982062, 40.77067, -74.010215, 40.720008, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685115.6930006', '+U8C2Kdep7e7pQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 48, tzinfo=datetime.timezone.utc), 1, 3.24, -73.95856, 40.769095, -73.986995, 40.748653, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685115.6930006', 'gIhjNG2fv68Vhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 35, tzinfo=datetime.timezone.utc), 5, 6.87, -73.966628, 40.757615, -74.01512, 40.714532, 'Credit', 17.3, 0.5, 1.0, 0.0, 18.8, '1705685115.6930006', 'F1TYh4N4JXxO/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 21, 13, tzinfo=datetime.timezone.utc), 1, 5.51, -73.958888, 40.768035, -74.00315, 40.731425, 'Credit', 19.3, 0.5, 1.0, 0.0, 20.8, '1705685115.6930006', 'VUWH9+ojESAP/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 8, tzinfo=datetime.timezone.utc), 2, 1.75, -73.998403, 40.740443, -74.00506, 40.719073, 'Credit', 6.5, 0.0, 1.25, 0.0, 7.75, '1705685115.6930006', 'DuVzkpBAMP2ssg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 42, tzinfo=datetime.timezone.utc), 1, 1.46, -73.971792, 40.760188, -73.95667, 40.775168, 'Credit', 6.5, 0.0, 1.25, 0.0, 7.75, '1705685115.6930006', 'OayjhOsUuXx9CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 45, tzinfo=datetime.timezone.utc), 5, 2.39, -73.954505, 40.78095, -73.982263, 40.76972, 'Credit', 8.5, 0.0, 1.25, 0.0, 9.75, '1705685115.6930006', '7aAqac1mwlaA7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 37, tzinfo=datetime.timezone.utc), 1, 1.53, -73.993557, 40.756932, -74.00845, 40.745372, 'Credit', 8.5, 1.0, 1.25, 0.0, 10.75, '1705685115.6930006', 'G1MB2zHufiRHFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 1, tzinfo=datetime.timezone.utc), 1, 4.48, -73.974567, 40.742837, -74.010978, 40.703107, 'Credit', 12.5, 0.0, 1.25, 0.0, 13.75, '1705685115.6930006', '/URp2lNGDde1mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 35, tzinfo=datetime.timezone.utc), 5, 1.16, -73.982312, 40.774537, -73.97929, 40.788587, 'Credit', 5.3, 0.0, 1.25, 0.0, 6.55, '1705685115.6930006', 'aQqNsrWSrYaS4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 50, tzinfo=datetime.timezone.utc), 1, 1.23, -73.993012, 40.744663, -74.005465, 40.737555, 'Credit', 5.3, 0.5, 1.25, 0.0, 7.05, '1705685115.6930006', 'M/VoDGcBiztmyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 1, tzinfo=datetime.timezone.utc), 5, 1.37, -73.976338, 40.74425, -73.989907, 40.728742, 'Credit', 5.3, 1.0, 1.25, 0.0, 7.55, '1705685115.6930006', 'Q0nYrPBrX8VG+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 13, tzinfo=datetime.timezone.utc), 1, 2.51, -73.98815, 40.732142, -73.98148, 40.76002, 'Credit', 8.1, 0.0, 1.25, 0.0, 9.35, '1705685115.6930006', 'zdg0q754Mk2SnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 37, tzinfo=datetime.timezone.utc), 5, 1.55, -73.99452, 40.745018, -73.99132, 40.728023, 'Credit', 7.7, 0.0, 1.25, 0.0, 8.95, '1705685115.6930006', 'jpnteGlsQWwF4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 43, tzinfo=datetime.timezone.utc), 3, 2.03, -73.988132, 40.749363, -73.962842, 40.758607, 'Credit', 7.3, 0.0, 1.25, 0.0, 8.55, '1705685115.6930006', 'j7nPhCBhvcDX2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 39, tzinfo=datetime.timezone.utc), 5, 1.63, -74.003683, 40.732108, -73.989778, 40.716877, 'Credit', 7.3, 0.5, 1.25, 0.0, 9.05, '1705685115.6930006', 'thUdYpk7RcI9mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 35, tzinfo=datetime.timezone.utc), 1, 3.17, -73.951675, 40.825058, -73.933537, 40.79475, 'Credit', 11.3, 0.5, 1.25, 0.0, 13.05, '1705685115.6930006', 'VZ4aJQ/RfZV9KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 36, tzinfo=datetime.timezone.utc), 1, 1.09, -73.982398, 40.745867, -73.994675, 40.738982, 'Credit', 4.9, 0.0, 1.25, 0.0, 6.15, '1705685115.6930006', 'tSCxd3hmMqDGPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 49, tzinfo=datetime.timezone.utc), 1, 2.4, -74.006085, 40.734863, -74.007187, 40.71287, 'Credit', 8.9, 0.5, 1.25, 0.0, 10.65, '1705685115.6930006', 'TbsegkNyVFBcKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 33, tzinfo=datetime.timezone.utc), 1, 3.43, -73.979902, 40.781058, -73.988263, 40.743227, 'Credit', 10.9, 0.0, 1.25, 0.0, 12.15, '1705685115.6930006', '5xfA5L6ueXMJAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 1, tzinfo=datetime.timezone.utc), 5, 1.09, -73.998888, 40.734203, -73.98347, 40.72619, 'Credit', 5.7, 0.0, 1.25, 0.0, 6.95, '1705685115.6930006', 'w22prI3EH5mT/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.69, -73.992643, 40.737307, -74.002877, 40.739503, 'Credit', 4.5, 0.0, 1.5, 0.0, 6.0, '1705685115.6930006', 'SUlFbenAqzWqgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 25, tzinfo=datetime.timezone.utc), 1, 0.69, -73.980113, 40.749078, -73.989228, 40.754633, 'Credit', 4.5, 0.0, 1.5, 0.0, 6.0, '1705685115.6930006', 'AJVxjd2iDpDdfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 7, 1, 0, 3, tzinfo=datetime.timezone.utc), 1, 0.59, -73.988105, 40.720262, -73.99707, 40.72075, 'Credit', 4.5, 0.5, 1.5, 0.0, 6.5, '1705685115.6930006', 'tcYYx0oGSVAMNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 35, tzinfo=datetime.timezone.utc), 5, 0.71, -73.965727, 40.769625, -73.967165, 40.771948, 'Credit', 4.5, 0.5, 1.5, 0.0, 6.5, '1705685115.6930006', 'bRnnT87Q9HFX3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 57, tzinfo=datetime.timezone.utc), 2, 0.56, -73.990227, 40.740815, -73.9831, 40.742783, 'Credit', 4.5, 1.0, 1.5, 0.0, 7.0, '1705685115.6930006', '4hApNLeJyZeF9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 2, tzinfo=datetime.timezone.utc), 1, 0.84, -73.992082, 40.72588, -73.983127, 40.719155, 'Credit', 4.5, 1.0, 1.5, 0.0, 7.0, '1705685115.6930006', 'CFtrBJYlCZnaTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 40, tzinfo=datetime.timezone.utc), 1, 0.99, -73.991365, 40.717175, -74.002552, 40.718718, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', '6hTLS4H9r40wBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 13, tzinfo=datetime.timezone.utc), 2, 1.31, -74.00027, 40.720662, -74.004648, 40.707097, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'iBvF7s9HXuRmLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 45, tzinfo=datetime.timezone.utc), 1, 1.43, -73.975702, 40.789288, -73.982113, 40.773548, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 's2ZacnjHHen4yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 33, tzinfo=datetime.timezone.utc), 1, 1.64, -74.000703, 40.737482, -74.004903, 40.715927, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'PUQ66dJEjdrDuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 47, tzinfo=datetime.timezone.utc), 1, 1.81, -73.993923, 40.751502, -73.971297, 40.759555, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'lHjdfKdbgH8elw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 54, tzinfo=datetime.timezone.utc), 5, 0.88, -73.993137, 40.731727, -74.008813, 40.732678, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'DKVNS0jhPQGriw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 39, tzinfo=datetime.timezone.utc), 1, 0.84, -73.980633, 40.733877, -73.98907, 40.744515, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'XuXSWcP3nJi3Jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), 1, 1.34, -73.978097, 40.783105, -73.959115, 40.775115, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'EkX9MDOnQ3uU1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 28, tzinfo=datetime.timezone.utc), 1, 1.35, -74.01452, 40.718157, -74.012678, 40.702537, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685115.6930006', 'lS3L9x1pz4S3kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 20, tzinfo=datetime.timezone.utc), 5, 1.43, -73.983975, 40.7423, -73.988093, 40.756657, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685115.6930006', 'NBLxJQmIAOCmLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 49, tzinfo=datetime.timezone.utc), 1, 1.52, -73.987853, 40.750532, -73.989582, 40.768045, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685115.6930006', '6sgr5lWcLZxXnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 29, tzinfo=datetime.timezone.utc), 3, 1.59, -73.973153, 40.748113, -73.986813, 40.735758, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685115.6930006', 'eI9a+c7JweewEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 3, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 3, 23, tzinfo=datetime.timezone.utc), 1, 1.74, -73.992432, 40.728095, -74.006518, 40.743297, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685115.6930006', 'FaDKVBjlxJf6CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 7, tzinfo=datetime.timezone.utc), 2, 1.61, -73.975135, 40.752807, -73.959592, 40.770912, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685115.6930006', 'aj5fVxWCS2vH6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 8, tzinfo=datetime.timezone.utc), 1, 1.83, -74.001988, 40.74044, -74.007213, 40.717973, 'Credit', 6.5, 1.0, 1.5, 0.0, 9.0, '1705685115.6930006', 'uavBSwUJAhY7/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 42, tzinfo=datetime.timezone.utc), 5, 1.9, -73.955288, 40.773445, -73.972512, 40.749647, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'Wuf2oxTERublzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 47, tzinfo=datetime.timezone.utc), 1, 2.34, -73.985972, 40.735445, -73.979503, 40.76151, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'fx+2NuWi2Ps85w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 46, tzinfo=datetime.timezone.utc), 5, 2.01, -73.965313, 40.759142, -73.990497, 40.751297, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'mg5pY7/0pSGdCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 15, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 16, 7, tzinfo=datetime.timezone.utc), 2, 1.1, -73.973543, 40.743967, -73.987399, 40.74963, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'n2hi5DHAzWp7RA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), 1, 1.97, -73.984835, 40.769262, -73.979218, 40.749762, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'siZjKMJUbS8EbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 59, tzinfo=datetime.timezone.utc), 2, 2.15, -73.982762, 40.72283, -73.982133, 40.746058, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'EBXIE6uer3znNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.95, -73.96299, 40.762553, -73.976822, 40.738952, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'vY1p2+ZG1YL84w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 4, tzinfo=datetime.timezone.utc), 2, 2.37, -73.991605, 40.77031, -73.991933, 40.744613, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685115.6930006', 'A7qYSQ/9ha++Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 11, tzinfo=datetime.timezone.utc), 1, 2.84, -73.945713, 40.777995, -73.971593, 40.746363, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685115.6930006', '329cxHU6/s2SPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 36, tzinfo=datetime.timezone.utc), 4, 2.63, -73.96135, 40.764677, -73.988588, 40.739532, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685115.6930006', 'Az50OPrqBB3sLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 8, tzinfo=datetime.timezone.utc), 1, 1.86, -73.983548, 40.738093, -74.002515, 40.718935, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685115.6930006', 'kTiLPZx895RhRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 22, tzinfo=datetime.timezone.utc), 5, 2.15, -73.97686, 40.758877, -73.954117, 40.775487, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685115.6930006', 'BbAlUqzwlJiyHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 40, tzinfo=datetime.timezone.utc), 1, 2.54, -74.00837, 40.720782, -73.995515, 40.753112, 'Credit', 8.5, 1.0, 1.5, 0.0, 11.0, '1705685115.6930006', '6XrZfLVAAWGiVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 45, tzinfo=datetime.timezone.utc), 1, 2.01, -73.991412, 40.72968, -73.979268, 40.755207, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685115.6930006', '3R92FOwHhRw6Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 58, tzinfo=datetime.timezone.utc), 1, 3.12, -73.990092, 40.756905, -73.956597, 40.783925, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685115.6930006', '0rDwvHXFROWmuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 41, tzinfo=datetime.timezone.utc), 5, 2.07, -73.98637, 40.767113, -73.993555, 40.743212, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685115.6930006', 'm23j4pLR+4e+tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 7, tzinfo=datetime.timezone.utc), 1, 2.5, -73.972397, 40.765048, -74.000732, 40.747983, 'Credit', 10.5, 1.0, 1.5, 0.0, 13.0, '1705685115.6930006', 'dJV30ubduyUTGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), 1, 3.17, -73.970058, 40.748387, -73.981812, 40.771407, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685115.6930006', 'GfZRklhLstDFwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 28, tzinfo=datetime.timezone.utc), 1, 2.96, -73.94533, 40.778577, -73.985608, 40.778747, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685115.6930006', 'g1tWR8TY+tUrlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 5, tzinfo=datetime.timezone.utc), 5, 2.28, -73.990268, 40.741858, -73.987983, 40.728115, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685115.6930006', 'TbiajspBrMfI1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 27, tzinfo=datetime.timezone.utc), 2, 4.39, -73.958127, 40.776035, -74.002495, 40.733692, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685115.6930006', 'vg43spvSt5DMiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 8, tzinfo=datetime.timezone.utc), 6, 3.9, -73.982302, 40.740232, -73.974283, 40.783197, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685115.6930006', 'lLypa8OkDk5L5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 3, tzinfo=datetime.timezone.utc), 1, 4.02, -73.951488, 40.769643, -73.995622, 40.744033, 'Credit', 12.5, 0.5, 1.5, 0.0, 14.5, '1705685115.6930006', 'V2jgcb5KP7qShw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 59, tzinfo=datetime.timezone.utc), 1, 2.76, -73.992968, 40.768165, -73.995473, 40.739078, 'Credit', 12.5, 1.0, 1.5, 0.0, 15.0, '1705685115.6930006', 'PGvJ/oLKJWyICg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 44, tzinfo=datetime.timezone.utc), 2, 3.93, -74.015843, 40.711312, -74.000995, 40.761882, 'Credit', 14.5, 0.0, 1.5, 0.0, 16.0, '1705685115.6930006', 'W82XT+pmecLVfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 46, tzinfo=datetime.timezone.utc), 1, 3.14, -73.981085, 40.733945, -74.010333, 40.72021, 'Credit', 14.5, 0.0, 1.5, 0.0, 16.0, '1705685115.6930006', 'Ls4S5t+BzA4zYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 32, tzinfo=datetime.timezone.utc), 2, 4.19, -73.971382, 40.75837, -74.010307, 40.720175, 'Credit', 14.5, 1.0, 1.5, 0.0, 17.0, '1705685115.6930006', 'GpVJIVzDx5JCFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 28, tzinfo=datetime.timezone.utc), 1, 2.57, -73.978892, 40.744537, -73.987483, 40.770427, 'Credit', 14.5, 1.0, 1.5, 0.0, 17.0, '1705685115.6930006', 'l8aK1hlsUDfV4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 31, tzinfo=datetime.timezone.utc), 1, 6.15, -73.968672, 40.786423, -74.009915, 40.721342, 'Credit', 16.5, 0.0, 1.5, 0.0, 18.0, '1705685115.6930006', 'B2ZC8B00GuUvKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 40, tzinfo=datetime.timezone.utc), 1, 6.79, -73.961528, 40.768803, -74.010543, 40.701975, 'Credit', 18.5, 0.0, 1.5, 0.0, 20.0, '1705685115.6930006', 'tFv4bQR1l5bcdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 24, tzinfo=datetime.timezone.utc), 1, 4.92, -73.982228, 40.771388, -74.014815, 40.718053, 'Credit', 14.5, 0.5, 1.5, 0.0, 16.5, '1705685115.6930006', 'PDXMz0LHAYyxCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 47, tzinfo=datetime.timezone.utc), 1, 5.41, -73.972545, 40.786035, -73.990967, 40.723873, 'Credit', 16.5, 0.5, 1.5, 0.0, 18.5, '1705685115.6930006', '6ooaZTB29WG53g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 41, tzinfo=datetime.timezone.utc), 1, 0.36, -73.983672, 40.762065, -73.985608, 40.759232, 'Credit', 3.3, 0.0, 1.5, 0.0, 4.8, '1705685115.6930006', 'KDqwM3+MtMdqMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 15, tzinfo=datetime.timezone.utc), 1, 0.27, -73.988943, 40.734097, -73.988967, 40.731067, 'Credit', 3.3, 0.5, 1.5, 0.0, 5.3, '1705685115.6930006', 'H10xviklfcsxYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 13, tzinfo=datetime.timezone.utc), 1, 0.89, -73.975152, 40.741858, -73.982117, 40.749665, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685115.6930006', 'OJeFP5oNgPg0Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 32, tzinfo=datetime.timezone.utc), 2, 0.66, -74.016332, 40.715383, -74.006142, 40.713998, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685115.6930006', 'u5LYbpvr4Qdq9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 58, tzinfo=datetime.timezone.utc), 1, 0.68, -74.006487, 40.738175, -74.002093, 40.73143, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685115.6930006', '6v9b4a6B2nHTXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 13, tzinfo=datetime.timezone.utc), 5, 1.15, -73.958722, 40.802403, -73.958722, 40.802403, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685115.6930006', 'wFSFeStnmDGeYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 7, tzinfo=datetime.timezone.utc), 3, 0.63, -73.999995, 40.732975, -74.005228, 40.739898, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685115.6930006', 'nggUR0eWJC0wQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 43, tzinfo=datetime.timezone.utc), 5, 1.25, -74.007538, 40.743082, -73.989255, 40.740488, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685115.6930006', 'ri2MODdQMrOoXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 22, tzinfo=datetime.timezone.utc), 1, 1.05, -73.964405, 40.768825, -73.955895, 40.781893, 'Credit', 5.3, 1.0, 1.5, 0.0, 7.8, '1705685115.6930006', '5Mj1ju7f/4zmLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 43, tzinfo=datetime.timezone.utc), 1, 1.23, -73.967768, 40.76906, -73.953818, 40.77855, 'Credit', 5.3, 1.0, 1.5, 0.0, 7.8, '1705685115.6930006', 'Esr3ImzMqwIa1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 39, tzinfo=datetime.timezone.utc), 2, 1.64, -73.992522, 40.745123, -73.971462, 40.751647, 'Credit', 6.1, 0.5, 1.5, 0.0, 8.1, '1705685115.6930006', 'YEzMI3osk7hBUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 54, tzinfo=datetime.timezone.utc), 1, 1.36, -74.005143, 40.719045, -74.006962, 40.735012, 'Credit', 6.1, 1.0, 1.5, 0.0, 8.6, '1705685115.6930006', 'xyGkL1FU84MVdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 59, tzinfo=datetime.timezone.utc), 1, 0.17, -73.96111, 40.760715, -73.945365, 40.782202, 'Credit', 6.1, 1.0, 1.5, 0.0, 8.6, '1705685115.6930006', 'hBOeIhI4szFBZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 43, tzinfo=datetime.timezone.utc), 2, 2.51, -73.976205, 40.757035, -73.95147, 40.782127, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', 'eC4L7Uq5Fx04Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 3, tzinfo=datetime.timezone.utc), 5, 2.23, -73.981425, 40.780907, -73.990133, 40.751668, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', 'mug8guW6nx1KDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 38, tzinfo=datetime.timezone.utc), 5, 1.15, -73.963568, 40.761982, -73.982523, 40.766335, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', '6gjpbWk1BahxuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 0, tzinfo=datetime.timezone.utc), 1, 2.06, -73.986978, 40.729087, -74.000795, 40.747412, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', 'DSK7jZ4bfSlOyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 45, tzinfo=datetime.timezone.utc), 2, 1.67, -73.993503, 40.727595, -74.006375, 40.739587, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', 'DcrjQ4vHMjqfag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 58, tzinfo=datetime.timezone.utc), 3, 1.4, -73.97393, 40.747662, -73.99185, 40.749922, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685115.6930006', 'I3NUeLt6XS3E4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 44, tzinfo=datetime.timezone.utc), 4, 1.91, -73.995482, 40.755732, -73.973088, 40.75867, 'Credit', 8.1, 0.5, 1.5, 0.0, 10.1, '1705685115.6930006', 'mMjVB2P6+F9WAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 25, tzinfo=datetime.timezone.utc), 5, 2.49, -74.000093, 40.738802, -73.988028, 40.763053, 'Credit', 8.1, 0.5, 1.5, 0.0, 10.1, '1705685115.6930006', 'cFQabmISbj6ydQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 11, 50, tzinfo=datetime.timezone.utc), 1, 1.92, -73.984708, 40.769352, -73.982505, 40.749023, 'Credit', 10.1, 0.0, 1.5, 0.0, 11.6, '1705685115.6930006', 'Tkgj5/Dr6DQgFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 52, tzinfo=datetime.timezone.utc), 1, 2.72, -73.975832, 40.76049, -73.969002, 40.788557, 'Credit', 10.1, 0.5, 1.5, 0.0, 12.1, '1705685115.6930006', '5bC2Cka/ucqFNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 9, tzinfo=datetime.timezone.utc), 1, 3.19, -74.006175, 40.739757, -73.981713, 40.778478, 'Credit', 10.1, 0.5, 1.5, 0.0, 12.1, '1705685115.6930006', 'LmUnwD7Lyyg1Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.39, -73.983913, 40.780505, -73.95122, 40.770273, 'Credit', 10.1, 1.0, 1.5, 0.0, 12.6, '1705685115.6930006', 'b9vOZWDpvMAroQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 43, tzinfo=datetime.timezone.utc), 1, 2.79, -73.983772, 40.729575, -73.98339, 40.72993, 'Credit', 10.1, 1.0, 1.5, 0.0, 12.6, '1705685115.6930006', '8wkqS9FMXjCQvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 9, tzinfo=datetime.timezone.utc), 2, 2.28, -73.996253, 40.723507, -73.987197, 40.75001, 'Credit', 12.1, 0.0, 1.5, 0.0, 13.6, '1705685115.6930006', 'G9O5ODiC9kRtpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 26, tzinfo=datetime.timezone.utc), 2, 3.16, 0.0, 0.0, 0.0, 0.0, 'Credit', 12.1, 0.0, 1.5, 0.0, 13.6, '1705685115.6930006', '8zkykb0b9DC6Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 6, tzinfo=datetime.timezone.utc), 5, 3.43, -74.006388, 40.751182, -74.008105, 40.709005, 'Credit', 12.1, 0.5, 1.5, 0.0, 14.1, '1705685115.6930006', '6ScOZ9qPY8THRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 8, tzinfo=datetime.timezone.utc), 1, 2.84, -73.996498, 40.75333, -74.005943, 40.715462, 'Credit', 14.1, 0.0, 1.5, 0.0, 15.6, '1705685115.6930006', 'oe2aydpphxWFkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 1, tzinfo=datetime.timezone.utc), 5, 4.79, -73.955148, 40.78577, -73.994698, 40.727, 'Credit', 15.7, 0.5, 1.5, 0.0, 17.7, '1705685115.6930006', 'g8OkEwTIy2qQ1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 47, tzinfo=datetime.timezone.utc), 3, 5.99, -73.962187, 40.767773, -73.992965, 40.726058, 'Credit', 17.7, 0.5, 1.5, 0.0, 19.7, '1705685115.6930006', 'EZagYF9FE/LoNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 25, tzinfo=datetime.timezone.utc), 1, 0.53, -73.983945, 40.725857, -73.991915, 40.724092, 'Credit', 4.1, 0.5, 1.5, 0.0, 6.1, '1705685115.6930006', 'HgdIMZpW1VEUuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 31, tzinfo=datetime.timezone.utc), 1, 1.0, -74.006283, 40.751, -73.992298, 40.744235, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685115.6930006', 'sSJ23J8ebRA21Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 47, tzinfo=datetime.timezone.utc), 1, 1.11, -73.996655, 40.737287, -73.979585, 40.733185, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685115.6930006', 'YrzIfjEhQAlgfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 4, tzinfo=datetime.timezone.utc), 2, 1.23, -73.977917, 40.749165, -73.989612, 40.752465, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685115.6930006', 'ZTjznYHCFBh2lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 59, tzinfo=datetime.timezone.utc), 1, 1.15, -73.999062, 40.723132, -73.984982, 40.715373, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685115.6930006', '8bzb8nSQ/6OEiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 56, tzinfo=datetime.timezone.utc), 2, 0.92, -73.964797, 40.756228, -73.978713, 40.76369, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685115.6930006', 'impSBkrPRSS96g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 11, tzinfo=datetime.timezone.utc), 5, 1.68, -73.967492, 40.75028, -73.981337, 40.774512, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685115.6930006', '2QB77BJfA9S/7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 46, tzinfo=datetime.timezone.utc), 5, 1.68, -73.973783, 40.792212, -73.982345, 40.769422, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685115.6930006', 'hdyJScC2zjJL3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 40, tzinfo=datetime.timezone.utc), 1, 2.35, -73.983405, 40.730125, -73.967467, 40.758575, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685115.6930006', 'Q4XxNc72ZUbKVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 21, tzinfo=datetime.timezone.utc), 1, 2.04, -73.993005, 40.727947, -73.998363, 40.750167, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685115.6930006', 'taeyb/V7TNiGOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 43, tzinfo=datetime.timezone.utc), 1, 2.55, -73.977937, 40.745702, -73.954838, 40.774677, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685115.6930006', 'Mj9mYpk/ScHIWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 34, tzinfo=datetime.timezone.utc), 5, 1.56, -73.997825, 40.721187, -74.004762, 40.738193, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685115.6930006', 'DSSK+lzX/qPHzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 3, tzinfo=datetime.timezone.utc), 1, 2.24, -73.955447, 40.764357, -73.97439, 40.783128, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685115.6930006', 'vE5s0dsvOtq4fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 19, tzinfo=datetime.timezone.utc), 3, 2.02, -73.975873, 40.760617, -73.986955, 40.736538, 'Credit', 7.7, 1.0, 1.5, 0.0, 10.2, '1705685115.6930006', 'wVCbNd5BUgZAXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.07, -73.973443, 40.750573, -73.98005, 40.76083, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685115.6930006', 'PaOOZ1oRjbmq+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 58, tzinfo=datetime.timezone.utc), 1, 2.17, -73.983052, 40.761878, -73.97616, 40.786075, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685115.6930006', 'IeqEjSxksyjRRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 49, tzinfo=datetime.timezone.utc), 1, 2.4, -73.974583, 40.753677, -73.998738, 40.732238, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685115.6930006', '7I/HxzFnBBkAIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 24, tzinfo=datetime.timezone.utc), 1, 2.21, -74.006242, 40.714208, -73.986997, 40.72959, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685115.6930006', 'tjUxknSu9qfjaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 57, tzinfo=datetime.timezone.utc), 4, 3.08, -73.990635, 40.755943, -73.982517, 40.72508, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685115.6930006', 'Myk9L4i5BcCIZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 11, tzinfo=datetime.timezone.utc), 5, 2.49, -73.988272, 40.748282, -73.984703, 40.720423, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685115.6930006', '1oroSbwnxblGew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 24, tzinfo=datetime.timezone.utc), 2, 2.61, -73.966933, 40.753, -73.99082, 40.723468, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685115.6930006', 'PZSHnfVsQkBDmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 11, tzinfo=datetime.timezone.utc), 5, 2.02, -74.004977, 40.747863, -73.982728, 40.731367, 'Credit', 11.7, 0.0, 1.5, 0.0, 13.2, '1705685115.6930006', 'VbWOi7ol+5R/0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 1, tzinfo=datetime.timezone.utc), 3, 6.83, -74.015333, 40.709005, -73.96515, 40.759157, 'Credit', 18.9, 0.0, 1.5, 0.0, 20.4, '1705685115.6930006', 'y+xaCXKDczD2hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 25, tzinfo=datetime.timezone.utc), 1, 5.46, -73.978248, 40.729097, -73.973357, 40.690723, 'Credit', 14.9, 0.5, 1.5, 0.0, 16.9, '1705685115.6930006', 'QR/SbApD9b38Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 7, tzinfo=datetime.timezone.utc), 2, 0.76, -73.99108, 40.723488, -73.978678, 40.720015, 'Credit', 4.9, 0.0, 1.5, 0.0, 6.4, '1705685115.6930006', 'XLnWvz7ZZWE5gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 32, tzinfo=datetime.timezone.utc), 1, 0.9, -73.983763, 40.749663, -73.99491, 40.745303, 'Credit', 4.9, 0.0, 1.5, 0.0, 6.4, '1705685115.6930006', 'KqkZ+Q+Zxfbd/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 31, tzinfo=datetime.timezone.utc), 1, 1.04, -73.978123, 40.748667, -73.989927, 40.741048, 'Credit', 4.9, 1.0, 1.5, 0.0, 7.4, '1705685115.6930006', 'TPkUGGsAxKgZAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 28, tzinfo=datetime.timezone.utc), 2, 0.69, -73.976288, 40.780675, -73.974453, 40.7883, 'Credit', 4.9, 1.0, 1.5, 0.0, 7.4, '1705685115.6930006', 'baph8N1SP6m/jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 27, tzinfo=datetime.timezone.utc), 5, 1.08, -73.973695, 40.76409, -73.98492, 40.755422, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685115.6930006', 'deMxaAJ/K0kchw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 59, tzinfo=datetime.timezone.utc), 2, 2.07, -74.007115, 40.743487, -73.985077, 40.761862, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685115.6930006', 'VlBDD+f96XA7Ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 1, tzinfo=datetime.timezone.utc), 1, 1.76, -73.969657, 40.7847, -73.9652, 40.804305, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685115.6930006', 'n0mHXec4/bg26g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 17, tzinfo=datetime.timezone.utc), 1, 1.67, -73.957785, 40.717862, -73.941403, 40.707502, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685115.6930006', 'seXkcZuTM7gzMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.37, -73.997227, 40.746843, -73.982043, 40.768073, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685115.6930006', 'rYc2eMzQhkeTqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 11, tzinfo=datetime.timezone.utc), 1, 2.15, -73.939408, 40.751875, -73.956433, 40.767092, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685115.6930006', 'Gq4/KXR5/8NK6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 11, tzinfo=datetime.timezone.utc), 1, 2.21, -74.000697, 40.73708, -74.015035, 40.71088, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685115.6930006', 'WpUGRUS+fYQKUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 52, tzinfo=datetime.timezone.utc), 5, 1.53, -73.993967, 40.751563, -73.995425, 40.740038, 'Credit', 7.3, 1.0, 1.5, 0.0, 9.8, '1705685115.6930006', 'MkKgjExpCzerKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 57, tzinfo=datetime.timezone.utc), 1, 2.06, -73.982128, 40.769473, -73.993812, 40.747428, 'Credit', 9.3, 0.0, 1.5, 0.0, 10.8, '1705685115.6930006', '9PTKok8xaFjd7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 51, tzinfo=datetime.timezone.utc), 1, 2.71, -73.982172, 40.77305, -73.956093, 40.787348, 'Credit', 9.3, 0.5, 1.5, 0.0, 11.3, '1705685115.6930006', 'FR1StxO3RGc5aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 19, tzinfo=datetime.timezone.utc), 1, 2.98, -73.994477, 40.761032, -73.954208, 40.764093, 'Credit', 11.3, 0.0, 1.5, 0.0, 12.8, '1705685115.6930006', 'KhUp14xfhcAIsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 27, tzinfo=datetime.timezone.utc), 1, 3.1, -73.961178, 40.764933, -73.991352, 40.731978, 'Credit', 11.3, 0.0, 1.5, 0.0, 12.8, '1705685115.6930006', 'xok30ksfsoiWGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 30, tzinfo=datetime.timezone.utc), 1, 3.64, -73.982073, 40.766287, -73.990322, 40.72735, 'Credit', 11.3, 0.5, 1.5, 0.0, 13.3, '1705685115.6930006', 'oROs5YEqEwIPjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 27, tzinfo=datetime.timezone.utc), 1, 3.32, -73.988775, 40.76374, -73.957305, 40.801655, 'Credit', 11.3, 1.0, 1.5, 0.0, 13.8, '1705685115.6930006', 'xj361Tdo6j/0MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 50, tzinfo=datetime.timezone.utc), 1, 3.01, -73.960638, 40.765932, -73.926082, 40.761247, 'Credit', 13.3, 0.0, 1.5, 0.0, 14.8, '1705685115.6930006', '8qpnlzkC8F1uNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 10, 40, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 58, 21, tzinfo=datetime.timezone.utc), 1, 3.4, -73.991582, 40.760601, -74.007428, 40.727253, 'Credit', 13.3, 0.0, 1.5, 0.0, 14.8, '1705685115.6930006', 'P2bmcZ6k27fQTA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.51, -73.983358, 40.740122, -73.987757, 40.734113, 'Credit', 3.7, 0.5, 1.5, 0.0, 5.7, '1705685115.6930006', 'Gr7rXvkO5ou6sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 16, tzinfo=datetime.timezone.utc), 1, 0.88, -73.983797, 40.75555, -73.98773, 40.761317, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685115.6930006', '69h4JeSNHPJk4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 16, tzinfo=datetime.timezone.utc), 2, 0.76, -73.965407, 40.754447, -73.975168, 40.752168, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685115.6930006', '/4UFnxuOd5dmwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 1, tzinfo=datetime.timezone.utc), 1, 0.88, -73.954967, 40.765497, -73.945297, 40.773987, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685115.6930006', 'OrNPCFNXa3cFLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 23, tzinfo=datetime.timezone.utc), 5, 1.43, -73.987817, 40.749005, -74.003537, 40.75069, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685115.6930006', 'De9JBCnDDGCJ7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 33, tzinfo=datetime.timezone.utc), 5, 1.77, -73.9697, 40.757975, -73.952367, 40.777975, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685115.6930006', 'K8pZEwcrqYoiaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.17, -73.97483, 40.787602, -73.977365, 40.774378, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685115.6930006', 'tSPCZf4gX4+aqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 3, tzinfo=datetime.timezone.utc), 5, 1.69, -73.993628, 40.752063, -73.991707, 40.770572, 'Credit', 6.9, 0.0, 1.5, 0.0, 8.4, '1705685115.6930006', 'MyDV/K8+hhGRgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 41, tzinfo=datetime.timezone.utc), 1, 2.05, -73.98093, 40.7446, -74.000508, 40.72116, 'Credit', 6.9, 0.0, 1.5, 0.0, 8.4, '1705685115.6930006', 'QKnWdQ8Xd5gCYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 36, tzinfo=datetime.timezone.utc), 5, 1.57, -74.010063, 40.709313, -74.000007, 40.72919, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685115.6930006', '6Uo6x2MdMy3SuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 41, tzinfo=datetime.timezone.utc), 1, 1.51, -73.982053, 40.769412, -73.98107, 40.788332, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685115.6930006', 'hhsMXn/eLXwKfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 20, tzinfo=datetime.timezone.utc), 3, 1.46, -73.98136, 40.76826, -73.964445, 40.756235, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685115.6930006', 'i2gU0Zlz2nIOVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 0, tzinfo=datetime.timezone.utc), 5, 1.75, -73.996685, 40.715042, -73.981203, 40.72908, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685115.6930006', 'HUaShgIT1YxffQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 5, tzinfo=datetime.timezone.utc), 5, 2.14, -73.991003, 40.73428, -74.011808, 40.708042, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685115.6930006', 'UzxZE5NCUxFn4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.54, -73.958045, 40.760848, -73.978462, 40.761815, 'Credit', 6.9, 1.0, 1.5, 0.0, 9.4, '1705685115.6930006', 'UC2lchhjNkE5ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 55, tzinfo=datetime.timezone.utc), 5, 1.34, -73.99579, 40.73038, -73.996952, 40.744648, 'Credit', 6.9, 1.0, 1.5, 0.0, 9.4, '1705685115.6930006', 'S/3cEhidb/OKXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 43, tzinfo=datetime.timezone.utc), 1, 2.0, -74.007722, 40.74098, -73.993778, 40.724413, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685115.6930006', 'AcN7ysgEVk7vfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 11, 53, tzinfo=datetime.timezone.utc), 5, 2.5, -73.969088, 40.790638, -73.992512, 40.758863, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685115.6930006', 'b+a786Hiuvodlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 6, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 6, 34, tzinfo=datetime.timezone.utc), 1, 2.78, -73.989878, 40.756985, -73.980083, 40.788973, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685115.6930006', 'mU8kPel3rRCVvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 6, 21, tzinfo=datetime.timezone.utc), 1, 3.01, -73.963247, 40.770693, -73.983082, 40.734637, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685115.6930006', 'gjqYKqXBI0VmOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 19, tzinfo=datetime.timezone.utc), 1, 2.65, -73.975667, 40.756017, -73.946777, 40.780353, 'Credit', 8.9, 0.5, 1.5, 0.0, 10.9, '1705685115.6930006', '3MFdpFbYiU9xbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 10, tzinfo=datetime.timezone.utc), 1, 2.64, -73.969337, 40.749085, -73.982417, 40.77333, 'Credit', 8.9, 1.0, 1.5, 0.0, 11.4, '1705685115.6930006', 'EdRw0So+gHNvhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 35, tzinfo=datetime.timezone.utc), 2, 1.76, -73.943052, 40.789833, -73.967318, 40.788233, 'Credit', 8.9, 1.0, 1.5, 0.0, 11.4, '1705685115.6930006', 'HaI7If0hfzF+uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 0, tzinfo=datetime.timezone.utc), 1, 2.59, -73.990093, 40.732407, -73.975848, 40.763942, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685115.6930006', 'm83qmBtzy8zb/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 8, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 32, 47, tzinfo=datetime.timezone.utc), 1, 2.7, -73.951447, 40.770122, -73.981226, 40.753884, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685115.6930006', 'HDRAk3QQZ6kuMQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 57, tzinfo=datetime.timezone.utc), 1, 3.02, -73.989002, 40.726815, -73.991918, 40.755167, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685115.6930006', 'Xk0xknw6VpvC/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 34, tzinfo=datetime.timezone.utc), 2, 2.57, -73.980947, 40.747337, -73.982157, 40.774348, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685115.6930006', 'sZP83l2hwGLltA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 22, tzinfo=datetime.timezone.utc), 1, 3.07, -73.978837, 40.750372, -73.973435, 40.784515, 'Credit', 10.9, 0.5, 1.5, 0.0, 12.9, '1705685115.6930006', 'Tpk5xLtN/Ua87w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 53, tzinfo=datetime.timezone.utc), 1, 3.48, -74.002078, 40.72283, -73.972018, 40.75952, 'Credit', 12.9, 0.0, 1.5, 0.0, 14.4, '1705685115.6930006', 'ckJrYLvsEcKaLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 33, tzinfo=datetime.timezone.utc), 1, 4.93, -73.973315, 40.748498, -74.014155, 40.703017, 'Credit', 12.9, 0.0, 1.5, 0.0, 14.4, '1705685115.6930006', 'JitnURp2YnxH+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 7, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 7, 22, tzinfo=datetime.timezone.utc), 5, 6.13, -73.971812, 40.744682, -74.01025, 40.721488, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685115.6930006', 'vBKMg3bsGxVEKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 33, tzinfo=datetime.timezone.utc), 1, 3.86, -73.972532, 40.78675, -73.984285, 40.7434, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685115.6930006', 'IQEMppDechLiuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 1, tzinfo=datetime.timezone.utc), 1, 3.04, -73.987105, 40.771098, -73.991245, 40.739375, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685115.6930006', 'w8YVn/VFm7Zaww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 37, tzinfo=datetime.timezone.utc), 1, 0.98, -73.991017, 40.76071, -73.991573, 40.750323, 'Credit', 6.5, 1.0, 1.75, 0.0, 9.25, '1705685115.6930006', 'Rcsw6+CACyIhsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 48, tzinfo=datetime.timezone.utc), 1, 1.52, -73.987792, 40.765095, -73.992972, 40.748278, 'Credit', 8.1, 0.0, 1.75, 0.0, 9.85, '1705685115.6930006', 'ag1Rto10v9Njlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 45, tzinfo=datetime.timezone.utc), 3, 1.82, -74.001752, 40.739488, -73.978593, 40.745283, 'Credit', 8.1, 0.5, 1.75, 0.0, 10.35, '1705685115.6930006', 'ra227/byDS9QTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 47, tzinfo=datetime.timezone.utc), 3, 2.15, -73.978405, 40.78297, -73.946485, 40.77263, 'Credit', 10.1, 0.0, 1.75, 0.0, 11.85, '1705685115.6930006', 'Gb3E7i12s7eEhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 3, tzinfo=datetime.timezone.utc), 1, 5.13, -73.936442, 40.798858, -73.98575, 40.741612, 'Credit', 14.9, 0.5, 1.75, 0.0, 17.15, '1705685115.6930006', 'vQlmsyoGdI5ZUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 37, tzinfo=datetime.timezone.utc), 1, 2.17, -73.991218, 40.76045, -73.9687, 40.767438, 'Credit', 7.7, 0.5, 1.75, 0.0, 9.95, '1705685115.6930006', 'f/A6vkOL+bXQtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 49, tzinfo=datetime.timezone.utc), 4, 1.4, -73.968602, 40.754413, -73.991373, 40.762893, 'Credit', 6.9, 0.5, 1.75, 0.0, 9.15, '1705685115.6930006', 'DrapzbYRsZjHNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 29, tzinfo=datetime.timezone.utc), 5, 7.32, -73.972882, 40.752753, -73.925623, 40.827918, 'Credit', 26.5, 1.0, 8.25, 0.0, 35.75, '1705685115.6930006', 'QurzJMGysuHAlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 1, tzinfo=datetime.timezone.utc), 2, 10.78, -73.862742, 40.76901, -73.940492, 40.850683, 'Credit', 26.5, 1.0, 8.25, 4.15, 39.9, '1705685115.6930006', 'dqIiaOOh/VXySw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 27, tzinfo=datetime.timezone.utc), 5, 0.0, -73.999088, 40.732562, -73.999095, 40.732535, 'Credit', 45.0, 0.0, 11.25, 4.15, 60.4, '1705685115.6930006', 'WUVOWDYDBRWZUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 57, tzinfo=datetime.timezone.utc), 3, 21.39, -73.979678, 40.776167, -73.776382, 40.645152, 'Credit', 45.0, 0.0, 11.25, 4.15, 60.4, '1705685115.6930006', '9N4Ys2dLNO4FBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 28, tzinfo=datetime.timezone.utc), 1, 0.0, -74.177483, 40.69527, -74.177487, 40.695272, 'Credit', 78.0, 0.0, 19.5, 0.0, 97.5, '1705685115.6930006', 'Dt5otE2TR7xx6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 32, tzinfo=datetime.timezone.utc), 1, 0.0, -73.783763, 40.912662, -73.783763, 40.912662, 'Credit', 90.0, 0.0, 22.5, 0.0, 112.5, '1705685115.6930006', 'OCT/yNKetf8Ovw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 3, 17, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 34, 30, tzinfo=datetime.timezone.utc), 1, 2.4, -73.985111, 40.718951, -74.006299, 40.739668, 'Credit', 10.9, 0.0, 2.38, 0.0, 13.28, '1705685115.6930006', 'lqT2I6eCH5K2yw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 25, tzinfo=datetime.timezone.utc), 3, 6.26, -73.974957, 40.752877, -74.015187, 40.711385, 'Credit', 16.9, 0.0, 3.38, 0.0, 20.28, '1705685115.6930006', 'MS9LbrjXhkD81w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 48, tzinfo=datetime.timezone.utc), 1, 5.6, -74.005422, 40.719672, -73.957295, 40.781745, 'Credit', 18.9, 0.5, 3.88, 0.0, 23.28, '1705685115.6930006', 'TE66BHcQbms8rQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 17, tzinfo=datetime.timezone.utc), 1, 7.8, -73.986265, 40.75714, -73.939342, 40.848692, 'Credit', 18.9, 0.5, 3.88, 0.0, 23.28, '1705685115.6930006', 'gKJVBPfMUlmKiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 15, tzinfo=datetime.timezone.utc), 1, 8.19, -73.986988, 40.764307, -73.927187, 40.830562, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685115.6930006', 'sDiWVy3k1Toc4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 38, tzinfo=datetime.timezone.utc), 1, 6.32, -73.977867, 40.729552, -73.971632, 40.787102, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685115.6930006', 'P5OKVKLWfFXMiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 11, tzinfo=datetime.timezone.utc), 1, 4.52, -73.934082, 40.797733, -73.98368, 40.760225, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685115.6930006', 'VD8TtPW9m/eQiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 33, tzinfo=datetime.timezone.utc), 2, 8.87, -73.874625, 40.774175, -73.951788, 40.766093, 'Credit', 21.3, 0.0, 4.26, 4.15, 29.71, '1705685115.6930006', 'Mx/C3/rX9dOkuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 38, tzinfo=datetime.timezone.utc), 5, 10.23, -73.976227, 40.739767, -74.026165, 40.631102, 'Credit', 23.3, 0.5, 4.76, 0.0, 28.56, '1705685115.6930006', 'MrbGntTytzwo2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 20, tzinfo=datetime.timezone.utc), 5, 12.91, -73.866557, 40.77101, -73.982155, 40.762898, 'Credit', 31.3, 0.0, 6.26, 4.15, 41.71, '1705685115.6930006', '4poHQlJtcNgZlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 26, tzinfo=datetime.timezone.utc), 5, 11.66, -73.985545, 40.758525, -73.862763, 40.768437, 'Credit', 31.7, 0.0, 6.26, 4.15, 42.11, '1705685115.6930006', '7uiOVFXRXnQNiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 19, tzinfo=datetime.timezone.utc), 1, 7.55, -74.00448, 40.72436, -73.95286, 40.783272, 'Credit', 21.7, 0.0, 6.51, 0.0, 28.21, '1705685115.6930006', 'NazpDQMfUUVMCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 43, tzinfo=datetime.timezone.utc), 2, 10.06, -73.864415, 40.769638, -73.966808, 40.765193, 'Credit', 23.7, 0.5, 7.26, 4.15, 35.61, '1705685115.6930006', '86XKe0jP7OwZoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 9, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 20, 30, tzinfo=datetime.timezone.utc), 2, 1.0, -73.978473, 40.745146, -73.993509, 40.752243, 'Credit', 6.5, 0.0, 0.97, 0.0, 7.47, '1705685115.6930006', '/tXPIQ5kqZUupw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 25, tzinfo=datetime.timezone.utc), 1, 4.64, -73.975607, 40.760513, -73.969523, 40.800398, 'Credit', 15.3, 1.0, 3.26, 0.0, 19.56, '1705685115.6930006', '1jcQqeTr2+IDSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 43, tzinfo=datetime.timezone.utc), 1, 3.58, -73.952768, 40.786492, -73.989865, 40.751432, 'Credit', 15.3, 1.0, 3.26, 0.0, 19.56, '1705685115.6930006', 'V3U05FqERgGWig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 58, tzinfo=datetime.timezone.utc), 1, 6.24, -73.99407, 40.752047, -74.039243, 40.7436, 'Credit', 20.1, 0.0, 4.02, 0.0, 24.12, '1705685115.6930006', 'dFbfvqbWK6O+HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 21, tzinfo=datetime.timezone.utc), 4, 7.97, -73.97003, 40.757167, -73.940783, 40.842458, 'Credit', 20.1, 0.0, 4.02, 0.0, 24.12, '1705685115.6930006', 'tugiLnP8IufC3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 11, tzinfo=datetime.timezone.utc), 1, 7.95, -73.979638, 40.749567, -73.885408, 40.773172, 'Credit', 20.1, 0.0, 4.02, 4.15, 28.27, '1705685115.6930006', 'oX8oUb2dZ2Q15A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 38, tzinfo=datetime.timezone.utc), 1, 9.07, -73.776712, 40.644977, -73.777353, 40.719723, 'Credit', 22.1, 0.5, 4.52, 0.0, 27.12, '1705685115.6930006', 'PbipQ1QrOhJzdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 22, tzinfo=datetime.timezone.utc), 1, 7.02, -73.961418, 40.76512, -73.942798, 40.84005, 'Credit', 20.1, 0.0, 5.02, 0.0, 25.12, '1705685115.6930006', 'NSczNbU3cd09lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 47, tzinfo=datetime.timezone.utc), 1, 8.11, -73.951623, 40.793433, -73.865242, 40.770613, 'Credit', 20.1, 0.0, 5.02, 4.15, 29.27, '1705685115.6930006', 'Mmq1c4XV79fUHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 50, tzinfo=datetime.timezone.utc), 3, 6.79, -73.974578, 40.736383, -73.972708, 40.674987, 'Credit', 20.1, 1.0, 5.27, 0.0, 26.37, '1705685115.6930006', 'BUPSl51NVcsLPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 23, tzinfo=datetime.timezone.utc), 1, 7.73, -73.98118, 40.773598, -73.966867, 40.683448, 'Credit', 22.1, 0.0, 5.52, 0.0, 27.62, '1705685115.6930006', 'PSJWrPbTW+uE0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 54, tzinfo=datetime.timezone.utc), 5, 9.03, -73.987365, 40.75068, -73.870443, 40.773605, 'Credit', 22.1, 0.0, 5.52, 4.15, 31.77, '1705685115.6930006', '5DXxBCPu77Caug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 3, tzinfo=datetime.timezone.utc), 1, 12.21, -73.862613, 40.768967, -73.786213, 40.638515, 'Credit', 30.1, 0.0, 6.02, 0.0, 36.12, '1705685115.6930006', '/FYguO4MM5rwdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 42, tzinfo=datetime.timezone.utc), 2, 8.72, -73.865837, 40.771153, -73.972108, 40.748845, 'Credit', 20.9, 0.0, 6.27, 4.15, 31.32, '1705685115.6930006', 'J2fCVOQb2C9qbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 17, tzinfo=datetime.timezone.utc), 5, 13.2, -73.99228, 40.725208, -73.914963, 40.878895, 'Credit', 32.1, 0.5, 6.52, 1.9, 41.02, '1705685115.6930006', 'H+6ienGJnKrG9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 14, tzinfo=datetime.timezone.utc), 1, 14.4, -73.87422, 40.773888, -74.004487, 40.708852, 'Credit', 32.1, 0.5, 6.52, 4.15, 43.27, '1705685115.6930006', 'PY2TIhaOrHg2AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 36, tzinfo=datetime.timezone.utc), 1, 8.62, -74.00631, 40.713998, -73.97098, 40.61956, 'Credit', 26.1, 1.0, 6.77, 0.0, 33.87, '1705685115.6930006', '7QOyxp9kbLy0RQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 30, tzinfo=datetime.timezone.utc), 1, 12.06, -74.007357, 40.715925, -73.873195, 40.774353, 'Credit', 28.1, 0.0, 7.02, 0.0, 35.12, '1705685115.6930006', 'kLJIih3l/Wdm9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 6, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 6, 59, tzinfo=datetime.timezone.utc), 2, 12.41, -74.00309, 40.72784, -74.183848, 40.688563, 'Credit', 42.7, 0.0, 8.54, 8.0, 59.24, '1705685115.6930006', 'Kfvz+Krd/tvvlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 34, tzinfo=datetime.timezone.utc), 2, 13.03, -73.862857, 40.769138, -74.007065, 40.70809, 'Credit', 31.3, 0.5, 9.54, 0.0, 41.34, '1705685115.6930006', 'DoUiVuf4kugM0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 18, 2, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 8, 34, tzinfo=datetime.timezone.utc), 1, 0.7, -73.973581, 40.763611, -73.980968, 40.769572, 'Credit', 5.3, 0.0, 0.94, 0.0, 6.24, '1705685115.6930006', 'p2OdjCzsPo7gfw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 19, 51, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 3, 46, tzinfo=datetime.timezone.utc), 1, 2.9, -73.960236, 40.773748, -73.955549, 40.806636, 'Credit', 9.7, 0.0, 2.14, 0.0, 11.84, '1705685115.6930006', 'kYktNtWT3hb/Sw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 28, tzinfo=datetime.timezone.utc), 1, 3.62, -73.971145, 40.764267, -73.966227, 40.804025, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685115.6930006', 'Nvxg1vzw5W9Vtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 51, tzinfo=datetime.timezone.utc), 5, 3.73, -73.967713, 40.802885, -73.994558, 40.754357, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685115.6930006', 'HYcOEIvYBIO3sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 3, tzinfo=datetime.timezone.utc), 6, 3.87, -74.01362, 40.706985, -73.990205, 40.748682, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685115.6930006', 'RJpxMAtwGNsbjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 25, tzinfo=datetime.timezone.utc), 1, 3.09, -73.952018, 40.78448, -73.98243, 40.759398, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685115.6930006', 'cgNH0GQGY2N6ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.83, -73.964117, 40.807975, -73.959285, 40.760372, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685115.6930006', 'easiMNxvywlLww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 8, tzinfo=datetime.timezone.utc), 2, 6.02, -73.988403, 40.722755, -73.972188, 40.677892, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685115.6930006', 'k6J/zpe3tLa9WA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 4, tzinfo=datetime.timezone.utc), 1, 5.75, -73.94439, 40.794883, -74.001105, 40.740857, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685115.6930006', 'YS//f35WBLfQ7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 1, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 1, 49, tzinfo=datetime.timezone.utc), 1, 0.0, -73.93782, 40.84442, -73.93782, 40.84442, 'Credit', 18.2, 0.0, 3.64, 0.0, 21.84, '1705685115.6930006', 'Cr/UHhkTzoqmFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 6, tzinfo=datetime.timezone.utc), 1, 6.53, -73.967945, 40.762442, -74.004123, 40.719732, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685115.6930006', '4n0rds1H4B5rYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 3, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 3, 42, tzinfo=datetime.timezone.utc), 2, 6.86, -73.984717, 40.742707, -73.991728, 40.65951, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685115.6930006', '4UD/eHRgJs8cug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 36, tzinfo=datetime.timezone.utc), 3, 7.84, -73.998313, 40.74053, -73.959243, 40.80919, 'Credit', 20.9, 0.5, 4.28, 0.0, 25.68, '1705685115.6930006', 'TCqdrfYGPXBsbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 9, tzinfo=datetime.timezone.utc), 1, 8.42, -73.885255, 40.772997, -73.986653, 40.739647, 'Credit', 22.9, 1.0, 4.78, 4.15, 32.83, '1705685115.6930006', 'uqUTv5M9GQjHBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 34, tzinfo=datetime.timezone.utc), 1, 10.98, -73.981028, 40.770728, -73.873153, 40.774317, 'Credit', 28.9, 0.0, 5.78, 4.15, 38.83, '1705685115.6930006', 'nJdYg2DeJQao0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 9, tzinfo=datetime.timezone.utc), 5, 8.49, -73.872228, 40.77399, -73.955435, 40.772787, 'Credit', 20.1, 0.0, 6.03, 5.0, 31.13, '1705685115.6930006', 'PTrusn0fGO7jsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 0, tzinfo=datetime.timezone.utc), 5, 3.94, -74.003243, 40.748852, -73.961347, 40.777358, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685115.6930006', 'i0KhVv1c6Qccug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 1, tzinfo=datetime.timezone.utc), 1, 3.74, -73.975707, 40.754953, -73.97619, 40.79515, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685115.6930006', 'm+i+bQzvQ7eENw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 56, tzinfo=datetime.timezone.utc), 1, 3.11, -73.973662, 40.763252, -74.006187, 40.736975, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685115.6930006', 'kD8kzdCdL2vBkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 10, tzinfo=datetime.timezone.utc), 1, 3.42, -73.986225, 40.751708, -73.978127, 40.791982, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685115.6930006', '2TKwoSKp0oNiWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 59, tzinfo=datetime.timezone.utc), 1, 3.32, -73.97505, 40.76272, -74.006963, 40.730243, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685115.6930006', 'E1LADRSqSPxZgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 15, tzinfo=datetime.timezone.utc), 1, 7.65, -74.007382, 40.709082, -73.953507, 40.782057, 'Credit', 19.7, 0.5, 4.04, 0.0, 24.24, '1705685115.6930006', 'ngo7UoY9v0vm0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 48, tzinfo=datetime.timezone.utc), 5, 7.62, -74.000158, 40.73371, -73.963557, 40.810327, 'Credit', 19.7, 0.5, 4.04, 0.0, 24.24, '1705685115.6930006', 'f0cfq9gvvIIWaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 18, tzinfo=datetime.timezone.utc), 2, 8.5, -73.870877, 40.77368, -73.955998, 40.772065, 'Credit', 19.7, 0.5, 4.04, 4.15, 28.39, '1705685115.6930006', 'T0V+DBJiR9g3hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 33, tzinfo=datetime.timezone.utc), 1, 13.96, -74.00683, 40.705243, -73.885943, 40.771773, 'Credit', 31.7, 1.0, 6.54, 5.0, 44.24, '1705685115.6930006', 'MZFVaI24FadjyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 28, tzinfo=datetime.timezone.utc), 1, 12.91, -73.865882, 40.770007, -73.786327, 40.6395, 'Credit', 31.7, 1.0, 6.54, 0.0, 39.24, '1705685115.6930006', 'b8glgc+XZTdi4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 25, tzinfo=datetime.timezone.utc), 2, 11.51, -73.981458, 40.774022, -73.984863, 40.66303, 'Credit', 31.7, 1.0, 6.54, 0.0, 39.24, '1705685115.6930006', 'M+fLh28U1XF7YQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 44, tzinfo=datetime.timezone.utc), 1, 17.07, 0.0, 0.0, -73.974188, 40.751278, 'Credit', 45.0, 0.0, 9.83, 4.15, 58.98, '1705685115.6930006', 'deGgtX/TcTCXNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 29, tzinfo=datetime.timezone.utc), 3, 4.23, -73.984212, 40.754742, -74.010848, 40.720285, 'Credit', 14.1, 0.5, 2.4, 0.0, 17.0, '1705685115.6930006', 'biePsfP2gYEGsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 7, tzinfo=datetime.timezone.utc), 1, 6.23, -73.99482, 40.739595, -73.941275, 40.808868, 'Credit', 16.1, 0.5, 2.4, 0.0, 19.0, '1705685115.6930006', 'qkGd71rGKVS4+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 31, tzinfo=datetime.timezone.utc), 1, 4.88, -74.016033, 40.710985, -73.989202, 40.73002, 'Credit', 14.1, 1.0, 2.4, 0.0, 17.5, '1705685115.6930006', 'wPiqxWtM5TKPlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 45, tzinfo=datetime.timezone.utc), 2, 3.68, -73.976103, 40.78055, -73.95712, 40.770665, 'Credit', 12.1, 0.0, 2.9, 0.0, 15.0, '1705685115.6930006', 'k7SGYTdZ6OfFIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 43, tzinfo=datetime.timezone.utc), 1, 2.52, -73.992495, 40.749915, -73.983175, 40.766703, 'Credit', 12.1, 0.0, 2.9, 0.0, 15.0, '1705685115.6930006', 'oEni4K1bwptNKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 57, tzinfo=datetime.timezone.utc), 2, 6.21, -73.963748, 40.798073, -73.975588, 40.72864, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685115.6930006', 's6gsf3owQrdlrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 13, tzinfo=datetime.timezone.utc), 5, 5.78, -73.99105, 40.714652, -73.980852, 40.779827, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685115.6930006', 'N4631Re3r76fHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 41, tzinfo=datetime.timezone.utc), 1, 6.51, -73.977417, 40.736333, -73.976017, 40.678312, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685115.6930006', '3Q0WLypi5tpANQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 54, tzinfo=datetime.timezone.utc), 3, 5.79, -73.977602, 40.76181, -73.91232, 40.780615, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685115.6930006', '9JEmdE2e/RjFTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 44, tzinfo=datetime.timezone.utc), 5, 5.92, -73.993892, 40.748528, -73.942283, 40.822388, 'Credit', 20.1, 0.0, 3.9, 0.0, 24.0, '1705685115.6930006', 'SsIu2XDZNudsng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 3, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 3, 46, tzinfo=datetime.timezone.utc), 2, 6.19, -73.988065, 40.723713, -73.972608, 40.793363, 'Credit', 15.7, 0.5, 4.05, 0.0, 20.25, '1705685115.6930006', 'FUMOXUnuNv/PdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 21, 58, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 25, 13, tzinfo=datetime.timezone.utc), 1, 6.0, -74.006251, 40.733238, -73.953927, 40.786337, 'Credit', 17.7, 0.0, 4.55, 0.0, 22.25, '1705685115.6930006', 'Y17MAzHw70iwSQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 55, tzinfo=datetime.timezone.utc), 5, 6.58, -74.015567, 40.711453, -73.971542, 40.75567, 'Credit', 19.7, 0.5, 5.05, 0.0, 25.25, '1705685115.6930006', 'yCLBqyay/T9JbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 10, tzinfo=datetime.timezone.utc), 1, 7.1, -73.983013, 40.752042, -73.974593, 40.667428, 'Credit', 19.7, 0.5, 5.05, 0.0, 25.25, '1705685115.6930006', 'UoS2WbnXyJb1yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 50, tzinfo=datetime.timezone.utc), 5, 10.52, -73.977233, 40.762318, -73.872637, 40.774435, 'Credit', 26.5, 0.0, 5.3, 4.15, 35.95, '1705685115.6930006', 'NmbC8NpcfM0yjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 43, tzinfo=datetime.timezone.utc), 1, 10.08, -73.968878, 40.764482, -73.87372, 40.774228, 'Credit', 26.5, 0.0, 5.3, 4.15, 35.95, '1705685115.6930006', 'M3/pTQ6eFc6www', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), 1, 9.02, -73.862752, 40.769017, -73.9899, 40.776505, 'Credit', 26.5, 0.0, 5.3, 0.0, 31.8, '1705685115.6930006', '7eIhqWhu9O4wYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 33, tzinfo=datetime.timezone.utc), 3, 9.92, -73.991378, 40.749678, -73.87314, 40.774393, 'Credit', 26.5, 0.0, 5.55, 4.15, 36.2, '1705685115.6930006', 'fkUp9AgmvDEAwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 17, tzinfo=datetime.timezone.utc), 1, 16.47, -73.990713, 40.719375, -73.78255, 40.648768, 'Credit', 45.0, 0.0, 5.55, 4.15, 54.7, '1705685115.6930006', 'luqKvtVN5+SBew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 19, tzinfo=datetime.timezone.utc), 1, 12.1, -73.946078, 40.781588, -73.990815, 40.668853, 'Credit', 28.5, 0.5, 5.8, 0.0, 34.8, '1705685115.6930006', 'O2qqFI4vEXvUvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 44, tzinfo=datetime.timezone.utc), 1, 10.88, -73.862527, 40.769607, -73.988828, 40.752968, 'Credit', 36.5, 0.0, 7.3, 0.0, 43.8, '1705685115.6930006', '6hq11VizcFagTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.0, -74.04013, 40.73893, -74.04013, 40.738937, 'Credit', 53.0, 0.0, 10.6, 0.0, 63.6, '1705685115.6930006', '2f0dWumoOfCgHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), 1, 0.0, -74.033033, 40.739197, -74.033022, 40.739188, 'Credit', 53.0, 0.0, 10.6, 0.0, 63.6, '1705685115.6930006', 'q4yaPUKN7TLcOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 10, tzinfo=datetime.timezone.utc), 1, 20.47, -73.78988, 40.646433, -73.975537, 40.79034, 'Credit', 45.0, 0.0, 11.1, 4.15, 60.25, '1705685115.6930006', 'l/zH066/khVaiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 39, tzinfo=datetime.timezone.utc), 1, 1.11, -73.93606, 40.799437, -73.954323, 40.805943, 'Credit', 5.7, 0.0, 0.3, 0.0, 6.0, '1705685115.6930006', 'V+t3uf+Ff6Sa5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 13, tzinfo=datetime.timezone.utc), 3, 1.39, -73.986753, 40.733873, -74.007568, 40.744247, 'Credit', 7.7, 0.0, 0.3, 0.0, 8.0, '1705685115.6930006', 'QJCngRgAzuxdug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 28, tzinfo=datetime.timezone.utc), 1, 0.49, -73.9793, 40.776873, -73.984358, 40.771588, 'Credit', 4.9, 0.0, 0.6, 0.0, 5.5, '1705685115.6930006', '0rbTUVCwo5emxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 32, tzinfo=datetime.timezone.utc), 1, 1.1, -73.994307, 40.751185, -73.999927, 40.761232, 'Credit', 4.9, 0.5, 0.6, 0.0, 6.0, '1705685115.6930006', 'L2gZfvt+MJUzZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 57, tzinfo=datetime.timezone.utc), 2, 1.75, -73.995133, 40.74185, -73.977072, 40.755757, 'Credit', 6.9, 0.5, 0.6, 0.0, 8.0, '1705685115.6930006', '5WB8xnhJkYTCNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 52, tzinfo=datetime.timezone.utc), 2, 0.51, -73.966955, 40.760213, -73.961093, 40.767042, 'Credit', 3.3, 0.0, 0.6, 0.0, 3.9, '1705685115.6930006', 'xGttgsk8dR7N0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.07, -73.974317, 40.751438, -73.971893, 40.76353, 'Credit', 6.5, 0.0, 0.6, 0.0, 7.1, '1705685115.6930006', 'lK/wSE0eHTv9DQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 22, tzinfo=datetime.timezone.utc), 2, 0.74, -73.97911, 40.744357, -73.988853, 40.74831, 'Credit', 5.3, 0.0, 0.6, 0.0, 5.9, '1705685115.6930006', 'S/72f19pQi0dgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 11, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 22, tzinfo=datetime.timezone.utc), 1, 1.3, -73.994514, 40.746103, -73.978517, 40.752323, 'Credit', 5.7, 0.0, 0.85, 0.0, 6.55, '1705685115.6930006', 'J8VxU+j4xTI8kA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 34, tzinfo=datetime.timezone.utc), 1, 0.91, -74.013735, 40.70832, -74.006212, 40.706065, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685115.6930006', '1foDJ1s6u5mxpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 5, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 5, 20, tzinfo=datetime.timezone.utc), 1, 1.21, -73.9748, 40.787565, -73.959983, 40.779638, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685115.6930006', 'Oy6SV7rZyXZESg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.27, -74.002777, 40.72858, -73.99051, 40.738438, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685115.6930006', 'mjBshoHIPlAAWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 35, tzinfo=datetime.timezone.utc), 5, 1.88, -73.96876, 40.764158, -73.955705, 40.787047, 'Credit', 7.3, 0.0, 1.2, 0.0, 8.5, '1705685115.6930006', 'XH8vOMSvNW9pQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 8, tzinfo=datetime.timezone.utc), 2, 1.91, -74.001295, 40.73453, -73.9788, 40.744693, 'Credit', 7.3, 0.5, 1.2, 0.0, 9.0, '1705685115.6930006', 'r4vb9RuJEBWw+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 56, tzinfo=datetime.timezone.utc), 2, 1.85, -73.954212, 40.784512, -73.97403, 40.791443, 'Credit', 7.3, 1.0, 1.2, 0.0, 9.5, '1705685115.6930006', 'nES44/Hp3+bouQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 17, tzinfo=datetime.timezone.utc), 1, 3.28, -73.987945, 40.724058, -73.957918, 40.765338, 'Credit', 9.3, 0.5, 1.2, 0.0, 11.0, '1705685115.6930006', 'P69LeSh3zsz3aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 24, tzinfo=datetime.timezone.utc), 1, 1.2, -74.012742, 40.702302, -74.015242, 40.715837, 'Credit', 6.1, 0.5, 1.2, 0.0, 7.8, '1705685115.6930006', 'TU/uk4U4jxdbrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 31, tzinfo=datetime.timezone.utc), 1, 1.48, -73.984712, 40.732247, -73.977492, 40.749853, 'Credit', 6.9, 0.5, 1.2, 0.0, 8.6, '1705685115.6930006', 'VigNxBY5x8h/ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 38, tzinfo=datetime.timezone.utc), 1, 2.27, -73.961127, 40.769793, -73.983717, 40.759963, 'Credit', 8.9, 0.0, 1.2, 0.0, 10.1, '1705685115.6930006', 'kz2b1wkz0URVFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 24, tzinfo=datetime.timezone.utc), 1, 2.25, -73.96031, 40.781772, -73.980933, 40.753537, 'Credit', 8.9, 0.0, 1.2, 0.0, 10.1, '1705685115.6930006', 'jrgl1RO0Tw/qgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 15, tzinfo=datetime.timezone.utc), 1, 2.18, -73.951532, 40.766133, -73.975252, 40.756547, 'Credit', 12.5, 0.0, 1.2, 0.0, 13.7, '1705685115.6930006', 'a/S0UddC5EY3Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 5, tzinfo=datetime.timezone.utc), 6, 1.06, -73.975662, 40.75544, -73.980252, 40.74331, 'Credit', 5.7, 1.0, 1.2, 0.0, 7.9, '1705685115.6930006', 'kgZE+nDiNGub/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 32, tzinfo=datetime.timezone.utc), 1, 1.51, -73.98708, 40.725078, -73.974035, 40.744088, 'Credit', 5.7, 1.0, 1.2, 0.0, 7.9, '1705685115.6930006', 'EJLqS9Xp/jhqmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 0, tzinfo=datetime.timezone.utc), 2, 1.81, -73.961477, 40.763065, -73.951463, 40.770643, 'Credit', 8.1, 0.0, 1.2, 0.0, 9.3, '1705685115.6930006', 'MDGCUMqLRyu7Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 19, tzinfo=datetime.timezone.utc), 1, 6.51, -73.9746, 40.755593, -74.015528, 40.71159, 'Credit', 18.1, 0.0, 1.2, 0.0, 19.3, '1705685115.6930006', 'gmuYQ3R+C5WGEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 56, tzinfo=datetime.timezone.utc), 5, 0.69, -73.991142, 40.739068, -74.000985, 40.739195, 'Credit', 4.5, 1.0, 1.2, 0.0, 6.7, '1705685115.6930006', 'wpsx3v76s2blvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 37, tzinfo=datetime.timezone.utc), 1, 3.06, -73.993517, 40.7245, -73.971487, 40.761772, 'Credit', 11.7, 0.0, 1.2, 0.0, 12.9, '1705685115.6930006', 'NN7uMRQdMqgYzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 22, tzinfo=datetime.timezone.utc), 1, 0.88, -74.003337, 40.743575, -73.989668, 40.73921, 'Credit', 5.3, 0.0, 1.7, 0.0, 7.0, '1705685115.6930006', 'nBOnTQ+k3LSTEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 21, tzinfo=datetime.timezone.utc), 5, 1.39, -73.958878, 40.764092, -73.977717, 40.763087, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685115.6930006', 'HgK35In0Zle4bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), 1, 1.07, -73.969287, 40.763127, -73.981437, 40.756255, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685115.6930006', '7mzEUUkMhiefjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.54, -73.962882, 40.758472, -73.965203, 40.774243, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685115.6930006', 'o+BBZMxBBDryaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.97, -73.986715, 40.757787, -73.971932, 40.755008, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685115.6930006', 'WvutfbBgIU/tAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 48, tzinfo=datetime.timezone.utc), 2, 1.12, -74.006108, 40.750905, -73.987037, 40.743648, 'Credit', 7.3, 1.0, 1.7, 0.0, 10.0, '1705685115.6930006', 'SgMU4pax6oAOIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 43, tzinfo=datetime.timezone.utc), 1, 1.71, -73.973085, 40.748992, -73.994527, 40.741978, 'Credit', 7.3, 1.0, 1.7, 0.0, 10.0, '1705685115.6930006', 'k8NSfLOUm6b7iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 55, tzinfo=datetime.timezone.utc), 1, 2.27, -73.950393, 40.776082, -73.976512, 40.762305, 'Credit', 9.3, 0.0, 1.7, 0.0, 11.0, '1705685115.6930006', 'St0DxWqt+h/18Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 50, tzinfo=datetime.timezone.utc), 1, 1.89, -74.005185, 40.741067, -73.987095, 40.729578, 'Credit', 9.3, 1.0, 1.7, 0.0, 12.0, '1705685115.6930006', 'n8CyeOygDnPiRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 47, tzinfo=datetime.timezone.utc), 1, 4.08, -74.015213, 40.712585, -73.984133, 40.755553, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685115.6930006', 'UChBrgElj8ALSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 37, tzinfo=datetime.timezone.utc), 5, 2.75, -73.98943, 40.771593, -73.980613, 40.745393, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685115.6930006', 'iSCiBbkhcrzI2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 24, tzinfo=datetime.timezone.utc), 2, 1.63, -73.977723, 40.736645, -73.982203, 40.753838, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685115.6930006', 'dr1ujG9JgO8qag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 13, tzinfo=datetime.timezone.utc), 1, 2.8, -73.96155, 40.768265, -73.987287, 40.744707, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685115.6930006', 'RCvEGQSqInvi2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 7, tzinfo=datetime.timezone.utc), 2, 4.15, -73.977828, 40.72603, -73.95186, 40.773337, 'Credit', 13.3, 0.0, 1.7, 0.0, 15.0, '1705685115.6930006', 'LTPLAK/rtQZ+Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 43, tzinfo=datetime.timezone.utc), 1, 3.86, -73.954213, 40.774603, -73.982945, 40.739035, 'Credit', 13.3, 0.0, 1.7, 0.0, 15.0, '1705685115.6930006', 'PXQiUIckwckYWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 9, tzinfo=datetime.timezone.utc), 1, 2.21, -73.984352, 40.775232, -73.97565, 40.752928, 'Credit', 8.9, 0.0, 1.7, 0.0, 10.6, '1705685115.6930006', 'I+GuWm7ZhAVBbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 28, 14, 48, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 59, 13, tzinfo=datetime.timezone.utc), 1, 2.2, -73.993959, 40.75664, -73.978832, 40.737273, 'Credit', 8.5, 0.0, 1.7, 0.0, 10.2, '1705685115.6930006', 'RQtG0ObxLW94Hw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 5, tzinfo=datetime.timezone.utc), 1, 1.29, -73.959918, 40.779285, -73.954718, 40.767337, 'Credit', 8.5, 0.0, 1.7, 0.0, 10.2, '1705685115.6930006', 'xHGThnuZlhPMgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 49, tzinfo=datetime.timezone.utc), 2, 14.42, -73.801155, 40.672723, -73.982273, 40.739683, 'Credit', 45.0, 0.0, 8.85, 4.15, 58.0, '1705685115.6930006', '41wPu1HE0zp1wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 53, tzinfo=datetime.timezone.utc), 5, 7.8, -73.960083, 40.77035, -74.01529, 40.711515, 'Credit', 18.9, 0.0, 3.78, 0.0, 22.68, '1705685115.6930006', 'pjHSPLZTSP+nOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 38, tzinfo=datetime.timezone.utc), 1, 5.15, -73.990362, 40.771935, -74.007765, 40.708862, 'Credit', 18.9, 0.0, 3.78, 0.0, 22.68, '1705685115.6930006', '7enjOPn3vfOzvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 3, tzinfo=datetime.timezone.utc), 1, 8.4, 0.0, 0.0, 0.0, 0.0, 'Credit', 25.3, 0.0, 5.06, 0.0, 30.36, '1705685115.6930006', '1AOIgig993CAxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 53, tzinfo=datetime.timezone.utc), 2, 10.79, -73.982007, 40.755247, -73.870915, 40.774127, 'Credit', 25.3, 0.0, 5.06, 4.15, 34.51, '1705685115.6930006', 'VhH9YeNFIxNlsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 13, tzinfo=datetime.timezone.utc), 3, 7.77, -73.981665, 40.738013, -73.930433, 40.812103, 'Credit', 27.3, 0.5, 5.56, 0.0, 33.36, '1705685115.6930006', 'h2W2lmIb8ms90w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 31, tzinfo=datetime.timezone.utc), 2, 5.21, -74.000972, 40.731712, -73.947698, 40.774663, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685115.6930006', 'YFRkJo1dlyaLfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 37, tzinfo=datetime.timezone.utc), 1, 5.22, -73.982183, 40.77476, -73.97714, 40.719403, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685115.6930006', 'DgOearCArdk2iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 26, tzinfo=datetime.timezone.utc), 5, 5.51, -73.980423, 40.77022, -74.015202, 40.709293, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685115.6930006', 'nBFvFxqUesCPeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 0, tzinfo=datetime.timezone.utc), 1, 5.55, -73.997168, 40.722307, -73.976178, 40.789128, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685115.6930006', 'fSFzK+KAVgPvlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 23, tzinfo=datetime.timezone.utc), 1, 5.59, -73.979327, 40.77174, -74.010487, 40.71394, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685115.6930006', '2HCzyy7B0oTSDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 0, tzinfo=datetime.timezone.utc), 1, 3.88, -74.007508, 40.716215, -73.979435, 40.76456, 'Credit', 15.3, 1.0, 4.07, 0.0, 20.37, '1705685115.6930006', 'CgMIJBAxmoA/gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 23, tzinfo=datetime.timezone.utc), 1, 4.68, -73.995475, 40.730937, -73.970293, 40.785843, 'Credit', 17.3, 0.0, 4.32, 0.0, 21.62, '1705685115.6930006', 'pMtA+sE/F85NQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 40, tzinfo=datetime.timezone.utc), 1, 5.31, -74.0153, 40.709585, -73.977717, 40.772748, 'Credit', 17.3, 0.0, 4.32, 0.0, 21.62, '1705685115.6930006', 'JQCC+UAJAjRVUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 36, tzinfo=datetime.timezone.utc), 1, 7.19, -73.993005, 40.693008, -73.97197, 40.75849, 'Credit', 19.3, 0.0, 4.82, 0.0, 24.12, '1705685115.6930006', 'CmzDriWYB+PdPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 27, tzinfo=datetime.timezone.utc), 1, 9.16, -73.917273, 40.770878, -73.807647, 40.698765, 'Credit', 21.3, 0.0, 5.32, 0.0, 26.62, '1705685115.6930006', 'cRZhZGEgRt6JfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 25, tzinfo=datetime.timezone.utc), 1, 11.02, -73.98371, 40.760092, -73.840457, 40.718667, 'Credit', 26.1, 0.5, 5.32, 4.15, 36.07, '1705685115.6930006', 'TRFQmpVjrgmgug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 18, tzinfo=datetime.timezone.utc), 2, 10.02, -73.862732, 40.769033, -73.986007, 40.758165, 'Credit', 26.1, 0.5, 5.32, 4.15, 36.07, '1705685115.6930006', 'ojHvtr+TeR6nHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 18, tzinfo=datetime.timezone.utc), 1, 10.21, -73.977768, 40.761683, -73.870948, 40.77413, 'Credit', 34.1, 0.0, 6.82, 4.15, 45.07, '1705685115.6930006', 'G61pMySEZ9eh9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 35, tzinfo=datetime.timezone.utc), 1, 12.18, -73.979192, 40.73614, -73.865062, 40.770492, 'Credit', 27.3, 0.0, 6.82, 4.15, 38.27, '1705685115.6930006', 'mSrhyYV4V/h+kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 32, tzinfo=datetime.timezone.utc), 5, 12.16, -73.865807, 40.770335, -73.996957, 40.767082, 'Credit', 29.3, 0.0, 7.32, 4.15, 40.77, '1705685115.6930006', 'AAca8ac4WWd65A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 5, tzinfo=datetime.timezone.utc), 5, 15.51, -73.998675, 40.713415, -73.904415, 40.881267, 'Credit', 36.1, 0.5, 7.32, 0.0, 43.92, '1705685115.6930006', 'jEcqlCWNq/cCbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 26, tzinfo=datetime.timezone.utc), 3, 8.39, -74.009952, 40.720908, -73.973965, 40.763367, 'Credit', 22.9, 0.0, 4.58, 0.0, 27.48, '1705685115.6930006', 'mDmtSVKiEYkJAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 2, tzinfo=datetime.timezone.utc), 1, 8.71, -73.885312, 40.77314, -73.962067, 40.76771, 'Credit', 22.9, 0.0, 4.58, 0.0, 27.48, '1705685115.6930006', 'O6n83GmS4WKaWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 7, tzinfo=datetime.timezone.utc), 2, 9.88, -74.005508, 40.739348, -73.849963, 40.72424, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685115.6930006', 'jkfhvbZrojPSoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 5, 54, tzinfo=datetime.timezone.utc), 1, 10.77, -74.007623, 40.740868, -73.87185, 40.774365, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685115.6930006', 'PN5pg6rWZIbGNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 47, tzinfo=datetime.timezone.utc), 3, 10.01, -73.874547, 40.774138, -73.9831, 40.784303, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685115.6930006', 'S4v1hu2i29K1ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 44, tzinfo=datetime.timezone.utc), 1, 14.21, 0.0, 0.0, 0.0, 0.0, 'Credit', 36.9, 1.0, 7.58, 5.0, 50.48, '1705685115.6930006', 'cZeRO52ZPQSRkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 18, 58, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 4, 51, tzinfo=datetime.timezone.utc), 1, 1.2, -73.975898, 40.77637, -73.987463, 40.77037, 'Credit', 6.1, 0.0, 1.52, 0.0, 7.62, '1705685115.6930006', 'L4xG2oDWRh6Ugg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 46, tzinfo=datetime.timezone.utc), 2, 1.37, -73.994893, 40.760687, -73.997737, 40.746237, 'Credit', 6.5, 0.5, 1.77, 0.0, 8.77, '1705685115.6930006', 'LNQnBM7T9mA2Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 12, 7, 32, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 49, 30, tzinfo=datetime.timezone.utc), 1, 4.9, -74.007922, 40.704947, -73.994231, 40.745148, 'Credit', 14.5, 0.0, 2.17, 0.0, 16.67, '1705685115.6930006', 'ovmblk9xBZeHhQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 20, 25, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 42, 24, tzinfo=datetime.timezone.utc), 1, 4.8, -74.0013, 40.73118, -73.976753, 40.787566, 'Credit', 14.1, 0.0, 2.92, 0.0, 17.02, '1705685115.6930006', 'bMeffypk/ClwBg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 48, tzinfo=datetime.timezone.utc), 2, 5.04, -73.919247, 40.758737, -73.990978, 40.758668, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685115.6930006', '4VcEGfZ+34hf4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 20, tzinfo=datetime.timezone.utc), 1, 6.16, -73.863467, 40.76987, -73.923333, 40.740275, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685115.6930006', 'io+KS/xUqL/LtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 45, tzinfo=datetime.timezone.utc), 1, 3.71, -73.963065, 40.755888, -73.977552, 40.791238, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685115.6930006', 'wZ8fJm5hFj6tOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 11, tzinfo=datetime.timezone.utc), 1, 7.99, -74.001813, 40.70947, -73.959212, 40.783258, 'Credit', 21.7, 0.0, 4.34, 0.0, 26.04, '1705685115.6930006', 'PGNLbEj89DrYJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 10, tzinfo=datetime.timezone.utc), 1, 8.43, -73.987303, 40.753035, -73.885568, 40.773165, 'Credit', 21.7, 0.0, 4.34, 4.15, 30.19, '1705685115.6930006', 'mhi9JoDmymjQzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 25, tzinfo=datetime.timezone.utc), 1, 9.22, -73.987962, 40.749845, -73.932445, 40.857073, 'Credit', 23.7, 0.5, 4.84, 0.0, 29.04, '1705685115.6930006', 'eHh769dDZiDGiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 7, tzinfo=datetime.timezone.utc), 5, 4.58, -73.987282, 40.745665, -73.978817, 40.760305, 'Credit', 25.3, 0.0, 7.59, 0.0, 32.89, '1705685115.6930006', 'Ad8ajLz3y72duA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 41, tzinfo=datetime.timezone.utc), 1, 21.85, -73.945397, 40.783548, -74.177173, 40.694767, 'Credit', 65.9, 0.0, 13.18, 8.0, 87.08, '1705685115.6930006', 'd8spHz1qeZZAVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 7, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 25, 1, tzinfo=datetime.timezone.utc), 1, 1.9, -73.979479, 40.78691, -73.984674, 40.759832, 'Credit', 7.3, 0.0, 1.46, 0.0, 8.76, '1705685115.6930006', 'nOas+r4x1W5jVA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.52, -73.98611, 40.756245, -73.989337, 40.74953, 'Credit', 3.7, 1.0, 2.3, 0.0, 7.0, '1705685115.6930006', 'y5A2TE+oV4o1mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 55, tzinfo=datetime.timezone.utc), 1, 2.49, -73.951502, 40.774283, -73.976613, 40.755677, 'Credit', 9.7, 0.0, 2.3, 0.0, 12.0, '1705685115.6930006', '5AuKmPTZkMfCQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 45, tzinfo=datetime.timezone.utc), 1, 12.64, -74.008363, 40.703912, -73.870688, 40.773985, 'Credit', 31.7, 1.0, 3.3, 0.0, 36.0, '1705685115.6930006', 'rBLkhrxn4KM8tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 9, tzinfo=datetime.timezone.utc), 5, 6.36, -73.979823, 40.720517, -73.952457, 40.789812, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685115.6930006', 'H5+RWUaWvcfsLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 9, tzinfo=datetime.timezone.utc), 1, 5.19, -74.000843, 40.680572, -73.990472, 40.73388, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685115.6930006', '/G1RHFouq2wv2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 4, tzinfo=datetime.timezone.utc), 1, 5.74, -73.927535, 40.770313, -73.991145, 40.752612, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685115.6930006', 'CZkh2f88SLv1Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 17, tzinfo=datetime.timezone.utc), 2, 5.13, -74.009127, 40.711983, -73.981755, 40.773005, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685115.6930006', 'nwoaApl8ViUPMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 51, tzinfo=datetime.timezone.utc), 1, 10.96, -73.763767, 40.763845, -73.733098, 40.760905, 'Credit', 29.7, 0.5, 3.8, 0.0, 34.0, '1705685115.6930006', 'ozlDUwUYwJ9DSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 39, tzinfo=datetime.timezone.utc), 1, 6.94, -73.977807, 40.75784, -73.984447, 40.702312, 'Credit', 18.5, 0.5, 3.8, 0.0, 22.8, '1705685115.6930006', 'dqj1soxl2zVFKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 59, tzinfo=datetime.timezone.utc), 1, 5.37, -73.973513, 40.797678, -73.995265, 40.734107, 'Credit', 20.5, 0.0, 4.1, 0.0, 24.6, '1705685115.6930006', '3gWuxgYKVJihIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 51, tzinfo=datetime.timezone.utc), 1, 9.13, -73.86274, 40.769118, -73.969985, 40.757173, 'Credit', 22.5, 0.5, 4.6, 0.0, 27.6, '1705685115.6930006', 'EOKjzpdTSaab1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 0, tzinfo=datetime.timezone.utc), 2, 8.02, -73.981487, 40.7737, -73.972077, 40.67817, 'Credit', 22.5, 0.5, 4.6, 0.0, 27.6, '1705685115.6930006', 'S6cheqp1jFC7xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 16, tzinfo=datetime.timezone.utc), 1, 9.19, -73.872273, 40.774002, -73.972395, 40.783985, 'Credit', 22.5, 0.5, 4.6, 5.0, 32.6, '1705685115.6930006', 'Y00Yss+tHELorg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 31, tzinfo=datetime.timezone.utc), 2, 6.6, -73.983803, 40.72615, -73.918525, 40.768832, 'Credit', 20.9, 0.5, 5.35, 0.0, 26.75, '1705685115.6930006', 'Szsj/Cjz7mIjZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 46, tzinfo=datetime.timezone.utc), 2, 7.02, -74.003457, 40.72593, -73.919962, 40.765933, 'Credit', 20.9, 0.5, 5.35, 0.0, 26.75, '1705685115.6930006', 'X0lZtqHfATBR5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 13, tzinfo=datetime.timezone.utc), 1, 12.81, -74.005742, 40.717547, -73.864888, 40.770392, 'Credit', 30.5, 0.0, 6.1, 0.0, 36.6, '1705685115.6930006', '/WBLkLVgUctOsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.02, -73.422487, 41.156413, -73.42249, 41.156432, 'Credit', 194.0, 0.0, 38.8, 0.0, 232.8, '1705685115.6930006', 'dPRHqv7hK7CWDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 5, tzinfo=datetime.timezone.utc), 3, 0.43, -73.979997, 40.78101, -73.97733, 40.786087, 'Credit', 3.3, 1.0, 0.7, 0.0, 5.0, '1705685115.6930006', 'gQQsMePUUJ8lIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 52, tzinfo=datetime.timezone.utc), 5, 1.31, -73.972122, 40.757477, -73.983768, 40.740828, 'Credit', 5.3, 0.0, 0.7, 0.0, 6.0, '1705685115.6930006', 'K39okKQgKTF+Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 53, tzinfo=datetime.timezone.utc), 1, 1.14, -73.972208, 40.75866, -73.981293, 40.74426, 'Credit', 5.3, 0.5, 0.7, 0.0, 6.5, '1705685115.6930006', 'o2SGoF1u+9VZQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 6, tzinfo=datetime.timezone.utc), 1, 1.04, -73.96599, 40.768285, -73.971135, 40.755943, 'Credit', 7.3, 0.0, 0.7, 0.0, 8.0, '1705685115.6930006', 'AOlgbgiZSWGGrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 47, tzinfo=datetime.timezone.utc), 2, 0.61, -73.99297, 40.76291, -73.985392, 40.758343, 'Credit', 7.3, 0.0, 0.7, 0.0, 8.0, '1705685115.6930006', 'YSMDFyG54h0pSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 43, tzinfo=datetime.timezone.utc), 1, 1.72, -73.972245, 40.752298, -73.990308, 40.766793, 'Credit', 9.3, 1.0, 0.7, 0.0, 11.0, '1705685115.6930006', 'AvPScRTa/UPsCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.24, -73.96791, 40.75563, -73.982598, 40.747473, 'Credit', 6.1, 0.0, 0.7, 0.0, 6.8, '1705685115.6930006', 'e0qKL5Qcv4QEbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 7, tzinfo=datetime.timezone.utc), 1, 1.15, -74.024338, 40.803338, -74.016603, 40.793932, 'Credit', 6.1, 0.5, 0.7, 0.0, 7.3, '1705685115.6930006', 'H9pFlmDJa0iPjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 14, tzinfo=datetime.timezone.utc), 1, 1.15, -73.993137, 40.748162, -74.0077, 40.742858, 'Credit', 6.9, 0.5, 0.7, 0.0, 8.1, '1705685115.6930006', 'wT6LsnsGHeYC/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 19, tzinfo=datetime.timezone.utc), 2, 1.08, -73.953975, 40.741767, -73.955307, 40.740105, 'Credit', 4.5, 0.0, 0.7, 0.0, 5.2, '1705685115.6930006', 'Hwfqa5xx+IkSuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 47, tzinfo=datetime.timezone.utc), 1, 0.92, -73.973532, 40.747962, -73.986188, 40.74655, 'Credit', 6.5, 0.5, 0.7, 0.0, 7.7, '1705685115.6930006', 'XxpXSmYskHrCsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 20, tzinfo=datetime.timezone.utc), 5, 0.89, -73.98397, 40.73201, -73.988085, 40.722697, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685115.6930006', 'IlWuOj2ONqKjBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 15, tzinfo=datetime.timezone.utc), 1, 1.39, -73.970718, 40.751677, -73.962825, 40.768272, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685115.6930006', 'g9H6sYpmsDb3vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 42, tzinfo=datetime.timezone.utc), 1, 1.64, -74.008365, 40.714178, -73.99789, 40.73581, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685115.6930006', 'faJ2S3IdQT/o3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 36, tzinfo=datetime.timezone.utc), 5, 1.43, -73.997108, 40.747193, -73.98731, 40.736117, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685115.6930006', 'LwCd29XRC/KVIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 23, tzinfo=datetime.timezone.utc), 2, 1.84, -73.960698, 40.768572, -73.946965, 40.789113, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685115.6930006', 'NV1j5a0kp8iLww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 11, tzinfo=datetime.timezone.utc), 1, 0.5, -74.005212, 40.71913, -73.959618, 40.769282, 'Credit', 14.1, 0.5, 1.4, 0.0, 16.0, '1705685115.6930006', 'vTje5VhRNdzIPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 9, tzinfo=datetime.timezone.utc), 1, 1.6, -73.961777, 40.760287, -73.983233, 40.760915, 'Credit', 7.7, 0.0, 1.4, 0.0, 9.1, '1705685115.6930006', 'h0Dd5VbO6o8m1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 10, tzinfo=datetime.timezone.utc), 2, 1.45, -73.995918, 40.723477, -74.003317, 40.735417, 'Credit', 7.3, 0.0, 1.4, 0.0, 8.7, '1705685115.6930006', 'WIa6h7Sst7mFhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 17, tzinfo=datetime.timezone.utc), 1, 1.72, -74.007542, 40.73815, -73.991092, 40.755552, 'Credit', 7.3, 0.0, 1.4, 0.0, 8.7, '1705685115.6930006', 'M66GA4yDH+5NnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 16, tzinfo=datetime.timezone.utc), 1, 2.21, -73.977438, 40.755713, -73.984775, 40.77667, 'Credit', 7.3, 0.5, 1.4, 0.0, 9.2, '1705685115.6930006', 'wtIMkqr1t5cDDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 51, tzinfo=datetime.timezone.utc), 1, 1.71, -73.960995, 40.769992, -73.984832, 40.770223, 'Credit', 6.9, 0.5, 1.4, 0.0, 8.8, '1705685115.6930006', 'RTEcwF/j/rSWGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 29, tzinfo=datetime.timezone.utc), 1, 4.57, -74.00209, 40.731375, -73.95313, 40.773903, 'Credit', 15.3, 0.5, 1.65, 0.0, 17.45, '1705685115.6930006', 'GIdlr/t6ZSUSUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.8, -73.977455, 40.742447, -73.975443, 40.737193, 'Credit', 4.1, 0.0, 1.9, 0.0, 6.0, '1705685115.6930006', 'GndBuOadgxym6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 43, tzinfo=datetime.timezone.utc), 1, 0.09, -74.016268, 40.710188, -74.007688, 40.715497, 'Credit', 6.1, 1.0, 1.9, 0.0, 9.0, '1705685115.6930006', 'IPYQQIBzRdCJFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 6, tzinfo=datetime.timezone.utc), 1, 1.58, -73.976778, 40.775138, -73.986163, 40.757562, 'Credit', 8.1, 0.0, 1.9, 0.0, 10.0, '1705685115.6930006', '3Q6cNRDzo3kdDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 7, tzinfo=datetime.timezone.utc), 2, 1.68, 0.0, 0.0, 0.0, 0.0, 'Credit', 8.1, 0.0, 1.9, 0.0, 10.0, '1705685115.6930006', 'OlOSnU8JC5paNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 10, tzinfo=datetime.timezone.utc), 1, 1.14, -73.979195, 40.762028, -73.970732, 40.753015, 'Credit', 10.1, 0.0, 1.9, 0.0, 12.0, '1705685115.6930006', '9nxZUYPlmKMIsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 12, tzinfo=datetime.timezone.utc), 5, 2.37, -73.975785, 40.7638, -74.00318, 40.749102, 'Credit', 10.1, 0.0, 1.9, 0.0, 12.0, '1705685115.6930006', 'CjZVcVlLUf6XnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 51, tzinfo=datetime.timezone.utc), 5, 7.0, -74.01549, 40.71138, -73.967905, 40.792988, 'Credit', 20.1, 0.0, 1.9, 0.0, 22.0, '1705685115.6930006', 'GJTziEOvuPupAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 3, tzinfo=datetime.timezone.utc), 2, 19.51, -73.776867, 40.645012, -73.993908, 40.695617, 'Credit', 43.3, 0.5, 10.95, 0.0, 54.75, '1705685115.6930006', 'PZ8S0gthug5O+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 52, tzinfo=datetime.timezone.utc), 5, 4.6, -74.006173, 40.70584, -73.99489, 40.75299, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685115.6930006', 'YrhSKbH8xtzFxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 20, tzinfo=datetime.timezone.utc), 1, 4.51, -73.981632, 40.746628, -73.959203, 40.799123, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685115.6930006', 'rUL4fwUIu0VhzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 32, tzinfo=datetime.timezone.utc), 1, 1.89, -73.961143, 40.765818, -73.98229, 40.752228, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685115.6930006', 'GINrONEDLUekZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 40, tzinfo=datetime.timezone.utc), 2, 7.45, -73.984307, 40.770373, -73.977703, 40.685085, 'Credit', 21.3, 0.5, 4.36, 0.0, 26.16, '1705685115.6930006', 'SNsEHETN+rzR7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 47, tzinfo=datetime.timezone.utc), 1, 8.1, -74.00529, 40.74028, -73.909588, 40.777025, 'Credit', 21.3, 0.5, 4.36, 0.0, 26.16, '1705685115.6930006', '33v2GvSKaQBhZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 15, tzinfo=datetime.timezone.utc), 3, 4.82, -73.962827, 40.778258, -73.997162, 40.722367, 'Credit', 29.3, 0.0, 5.86, 0.0, 35.16, '1705685115.6930006', 'G0SQ94drDEkS3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 22, tzinfo=datetime.timezone.utc), 3, 9.66, -73.983152, 40.765467, -73.87161, 40.774313, 'Credit', 29.3, 0.0, 5.86, 4.15, 39.31, '1705685115.6930006', 'SAebmtn0HWn8ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 18, tzinfo=datetime.timezone.utc), 3, 12.29, -73.94928, 40.711072, -73.913497, 40.763193, 'Credit', 31.3, 0.5, 6.36, 0.0, 38.16, '1705685115.6930006', '0/TbsTuglkUo9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 26, tzinfo=datetime.timezone.utc), 1, 12.97, -73.98077, 40.757403, -73.896847, 40.669188, 'Credit', 39.3, 0.0, 7.86, 0.0, 47.16, '1705685115.6930006', 'ZfFPd+xVVSNpNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 4, 18, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 20, 57, tzinfo=datetime.timezone.utc), 1, 3.3, -73.959411, 40.783021, -73.961051, 40.780029, 'Credit', 11.3, 0.0, 1.84, 0.0, 13.14, '1705685115.6930006', '6KmCJhNh1h7Wkw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 3, tzinfo=datetime.timezone.utc), 1, 4.03, -73.989798, 40.757712, -73.983238, 40.72197, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685115.6930006', 'vA0CVQ6hjqqmAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 5, tzinfo=datetime.timezone.utc), 3, 3.28, -73.960253, 40.778857, -73.974185, 40.765235, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685115.6930006', 'OArUSwEIbD3CAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 39, tzinfo=datetime.timezone.utc), 1, 4.28, -73.995618, 40.724395, -73.965743, 40.67486, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685115.6930006', 'Z1pLOmV5NDal+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 7, tzinfo=datetime.timezone.utc), 2, 5.87, -73.984522, 40.767562, -74.016477, 40.704977, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685115.6930006', 'mD904R0t8lBDOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 24, tzinfo=datetime.timezone.utc), 1, 6.05, -73.98535, 40.749738, -73.978617, 40.679208, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685115.6930006', '/h3vGODltHnkfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 21, tzinfo=datetime.timezone.utc), 1, 4.09, -73.994943, 40.725968, -73.980633, 40.761958, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685115.6930006', '+uw5DSKNxZMdNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 13, tzinfo=datetime.timezone.utc), 1, 6.0, -73.988498, 40.763882, -73.918218, 40.774358, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685115.6930006', '7KG9A6x+4znmyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 33, tzinfo=datetime.timezone.utc), 1, 5.97, -73.994673, 40.72659, -73.924963, 40.745362, 'Credit', 20.1, 0.5, 4.12, 0.0, 24.72, '1705685115.6930006', 'lDdDwL9UeU1FVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 29, tzinfo=datetime.timezone.utc), 2, 8.92, -73.987923, 40.722652, -73.854965, 40.732143, 'Credit', 20.1, 0.5, 4.12, 0.0, 24.72, '1705685115.6930006', 'psJ+CZwo/fMD6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 12, tzinfo=datetime.timezone.utc), 2, 10.85, -73.86272, 40.768983, -74.00425, 40.72186, 'Credit', 28.1, 0.0, 5.62, 0.0, 33.72, '1705685115.6930006', '/PKXFk96U1k+Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 10, tzinfo=datetime.timezone.utc), 5, 9.81, -73.977465, 40.772735, -73.905455, 40.88744, 'Credit', 24.5, 1.0, 6.37, 1.9, 33.77, '1705685115.6930006', 'yy4Db7mvYx56Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 46, tzinfo=datetime.timezone.utc), 2, 1.89, -73.986673, 40.71592, -73.99339, 40.735063, 'Credit', 8.1, 0.5, 0.02, 0.0, 8.62, '1705685115.6930006', '7XFc3B2kWGtCMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 58, tzinfo=datetime.timezone.utc), 1, 3.58, -73.986795, 40.764308, -73.967892, 40.772837, 'Credit', 25.7, 1.0, 8.01, 0.0, 34.71, '1705685115.6930006', 'MTs4BONpG5GNQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 1, tzinfo=datetime.timezone.utc), 2, 6.0, -73.98024, 40.759312, -74.005678, 40.706112, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685115.6930006', 'y1TqN6pzpos4iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 41, tzinfo=datetime.timezone.utc), 2, 7.43, -73.961255, 40.796405, -74.01005, 40.72099, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685115.6930006', 'Ezy2yOI+hP6+SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 50, tzinfo=datetime.timezone.utc), 1, 4.21, -73.969082, 40.79862, -73.977355, 40.75011, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685115.6930006', 'Q7k8Of9a36T3YQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 36, tzinfo=datetime.timezone.utc), 2, 5.66, -73.98034, 40.771422, -73.988625, 40.71949, 'Credit', 20.9, 1.0, 4.38, 0.0, 26.28, '1705685115.6930006', 'ujlS7jTKW2zFfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 35, tzinfo=datetime.timezone.utc), 1, 10.34, -73.87443, 40.774058, -73.980483, 40.766387, 'Credit', 26.9, 0.0, 5.38, 5.0, 37.28, '1705685115.6930006', 'q//BWBz+H6nXFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 37, tzinfo=datetime.timezone.utc), 2, 12.4, -73.985703, 40.674245, -73.974457, 40.78845, 'Credit', 28.9, 0.5, 5.88, 0.0, 35.28, '1705685115.6930006', 'O6JFA/pWMIR5jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 29, tzinfo=datetime.timezone.utc), 1, 12.06, -73.97528, 40.752647, -74.021418, 40.632668, 'Credit', 29.3, 0.5, 5.88, 0.0, 35.68, '1705685115.6930006', 'MJwgYYoiA+uVOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 5, 19, tzinfo=datetime.timezone.utc), 1, 10.58, -73.987215, 40.759275, -73.873227, 40.774307, 'Credit', 24.1, 0.5, 7.38, 0.0, 31.98, '1705685115.6930006', 'OWXxfrr8YdM2TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 8, 8, 58, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 6, 39, tzinfo=datetime.timezone.utc), 1, 1.2, -73.993386, 40.733274, -73.982439, 40.745537, 'Credit', 6.1, 0.0, 1.22, 0.0, 7.32, '1705685115.6930006', 'ZPCUC2dsjSuR1A', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 26, 4, 55, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 5, 5, 52, tzinfo=datetime.timezone.utc), 1, 2.8, -73.984441, 40.728727, -73.984412, 40.759028, 'Credit', 9.3, 0.0, 1.47, 0.0, 10.77, '1705685115.6930006', 'gmIBiR6r5sosew', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 14, tzinfo=datetime.timezone.utc), 1, 6.06, -73.947993, 40.78278, -73.98821, 40.720095, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685115.6930006', 'EYCY2FX6L+FbfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 19, tzinfo=datetime.timezone.utc), 1, 6.21, -73.977655, 40.75089, -73.883733, 40.722383, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685115.6930006', '/fgfkQrOwI2loA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 5, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 5, 53, tzinfo=datetime.timezone.utc), 1, 5.93, -73.998002, 40.740928, -73.998063, 40.682248, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685115.6930006', 'AZ4bw/AWWW9ysQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 54, tzinfo=datetime.timezone.utc), 5, 5.94, -73.97999, 40.714003, -74.002997, 40.74951, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685115.6930006', 'ZYeF+FiSVkUh8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 51, tzinfo=datetime.timezone.utc), 2, 7.42, -73.862733, 40.769037, -73.807545, 40.700117, 'Credit', 18.1, 1.0, 3.82, 0.0, 22.92, '1705685115.6930006', 'wl7KQLJHSdsBmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 22, tzinfo=datetime.timezone.utc), 1, 9.85, -73.872418, 40.773905, -73.999573, 40.719517, 'Credit', 25.7, 0.0, 5.14, 0.0, 30.84, '1705685115.6930006', 'H0ujam94B0XiWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 27, tzinfo=datetime.timezone.utc), 1, 17.4, -73.968753, 40.754633, -73.74429, 40.668085, 'Credit', 37.7, 0.5, 9.55, 4.15, 51.9, '1705685115.6930006', 'nvCpjdaiU/niFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 49, tzinfo=datetime.timezone.utc), 1, 6.5, -73.98845, 40.722985, -73.981288, 40.675195, 'Credit', 17.3, 0.5, 2.2, 0.0, 20.0, '1705685115.6930006', 'WbwJXTDewuOQZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 0, tzinfo=datetime.timezone.utc), 1, 7.13, -74.014335, 40.714508, -73.961545, 40.762758, 'Credit', 17.3, 0.5, 2.2, 0.0, 20.0, '1705685115.6930006', '/JMNduBAU4K5Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 46, tzinfo=datetime.timezone.utc), 1, 3.69, -74.004663, 40.715357, -74.00061, 40.67754, 'Credit', 10.5, 0.5, 2.2, 4.15, 17.35, '1705685115.6930006', 'Gx3/tywsOuSi0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 22, tzinfo=datetime.timezone.utc), 1, 4.36, -73.989122, 40.776777, -74.001558, 40.724363, 'Credit', 12.9, 0.5, 3.2, 0.0, 16.6, '1705685115.6930006', '7od5jInhpFTfqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 48, tzinfo=datetime.timezone.utc), 5, 5.91, -73.983668, 40.738305, -73.980413, 40.663803, 'Credit', 18.5, 0.0, 3.7, 0.0, 22.2, '1705685115.6930006', 'bKoSDwoOznrU8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), 5, 0.55, -73.981897, 40.768528, -73.985445, 40.765347, 'Credit', 3.7, 0.0, 3.7, 0.0, 7.4, '1705685115.6930006', '9yFFm0wLCUqFDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 21, tzinfo=datetime.timezone.utc), 1, 9.27, -73.95434, 40.765735, -73.861235, 40.767943, 'Credit', 21.7, 0.0, 4.15, 4.15, 30.0, '1705685115.6930006', 'q1oY0Ah8Nm7HfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 35, tzinfo=datetime.timezone.utc), 1, 5.55, -74.0432, 40.762925, -74.053097, 40.75297, 'Credit', 16.1, 0.5, 4.15, 0.0, 20.75, '1705685115.6930006', 'K9V33COfvHHCxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 1, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 1, 53, tzinfo=datetime.timezone.utc), 5, 7.16, -73.986507, 40.721917, -73.878472, 40.742492, 'Credit', 18.1, 0.5, 4.65, 0.0, 23.25, '1705685115.6930006', 'KITCQMJvoguHrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 59, tzinfo=datetime.timezone.utc), 6, 10.88, -74.003935, 40.74789, -73.861705, 40.768375, 'Credit', 30.1, 0.0, 4.9, 5.0, 40.0, '1705685115.6930006', 'oYG5YkBOCXxPbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 16, tzinfo=datetime.timezone.utc), 3, 10.01, -73.871015, 40.773733, -74.001872, 40.71702, 'Credit', 24.5, 0.0, 4.9, 0.0, 29.4, '1705685115.6930006', 'KVKSpJO+yp9zMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 40, tzinfo=datetime.timezone.utc), 1, 9.37, -73.97897, 40.77212, -73.885437, 40.773152, 'Credit', 24.5, 0.0, 4.9, 4.15, 33.55, '1705685115.6930006', 'Wgo+oYoeZYpPVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 15, tzinfo=datetime.timezone.utc), 2, 6.65, -74.008432, 40.749845, -73.939418, 40.694967, 'Credit', 20.1, 0.5, 5.15, 0.0, 25.75, '1705685115.6930006', 'VwQTUbHn4dayIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 2, tzinfo=datetime.timezone.utc), 1, 6.63, -74.004003, 40.707595, -73.920077, 40.696265, 'Credit', 20.1, 0.5, 5.15, 0.0, 25.75, '1705685115.6930006', 'NSEkrJBOh/bX6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 6, tzinfo=datetime.timezone.utc), 1, 10.72, -74.002658, 40.739865, -73.922808, 40.868208, 'Credit', 26.5, 0.5, 5.4, 0.0, 32.4, '1705685115.6930006', '0lyu3SRxNro1cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 3, 57, tzinfo=datetime.timezone.utc), 1, 3.31, -74.007288, 40.740062, -73.983042, 40.756172, 'Credit', 12.5, 0.5, 0.1, 0.0, 13.1, '1705685115.6930006', 'AHLVXmHMQirPCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 15, tzinfo=datetime.timezone.utc), 2, 2.18, -73.992178, 40.759032, -74.000617, 40.728905, 'Credit', 8.1, 0.5, 0.4, 0.0, 9.0, '1705685115.6930006', 'vAtv66UUQeGmLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 13, tzinfo=datetime.timezone.utc), 1, 0.73, -73.96223, 40.77623, -73.954715, 40.784053, 'Credit', 3.7, 0.0, 0.4, 0.0, 4.1, '1705685115.6930006', '7MlV6jXqQ3jizg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 7, tzinfo=datetime.timezone.utc), 1, 0.56, -73.976997, 40.757057, -73.974602, 40.753493, 'Credit', 5.3, 0.0, 0.55, 0.0, 5.85, '1705685115.6930006', 'dAek3rEw+i+VPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 0.42, -73.981973, 40.768867, -73.977592, 40.764208, 'Credit', 3.7, 0.0, 0.8, 0.0, 4.5, '1705685115.6930006', '+oJZlrDdqLkhJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 41, tzinfo=datetime.timezone.utc), 5, 0.55, -73.962723, 40.770525, -73.965082, 40.775247, 'Credit', 3.7, 0.5, 0.8, 0.0, 5.0, '1705685115.6930006', 'QI+CTWqKO0+JYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 45, tzinfo=datetime.timezone.utc), 5, 1.25, -73.965228, 40.768995, -73.949412, 40.773522, 'Credit', 5.7, 0.0, 0.8, 0.0, 6.5, '1705685115.6930006', 'i8oLozORguvsgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 17, tzinfo=datetime.timezone.utc), 2, 0.74, -73.976317, 40.759478, -73.971133, 40.754827, 'Credit', 5.7, 0.5, 0.8, 0.0, 7.0, '1705685115.6930006', '9weGaefRw/Lp5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 41, tzinfo=datetime.timezone.utc), 1, 1.7, -73.958228, 40.77891, -73.973625, 40.757882, 'Credit', 7.7, 0.0, 0.8, 0.0, 8.5, '1705685115.6930006', 'z7vTM8YaXPhboQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 2, tzinfo=datetime.timezone.utc), 2, 2.1, -73.961072, 40.760758, -73.97823, 40.745865, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685115.6930006', 'zS8BbRmCBVQ2uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), 5, 2.01, -73.987642, 40.746235, -73.974773, 40.732927, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685115.6930006', 'gM+TRl8Y3M2rJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 42, tzinfo=datetime.timezone.utc), 3, 1.77, -74.006445, 40.73935, -73.993217, 40.727712, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685115.6930006', 'RsID73QIqT/OgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 59, tzinfo=datetime.timezone.utc), 1, 3.34, -73.99685, 40.760105, -73.955945, 40.767515, 'Credit', 17.7, 0.5, 0.8, 0.0, 19.0, '1705685115.6930006', '0ZFRr4kthlpzag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 33, tzinfo=datetime.timezone.utc), 1, 1.52, -73.983367, 40.738845, -73.999983, 40.730352, 'Credit', 6.5, 0.0, 0.8, 0.0, 7.3, '1705685115.6930006', 'a9epQ6xZh7FzcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.31, -74.010587, 40.709173, -73.999312, 40.724893, 'Credit', 6.1, 0.5, 0.8, 0.0, 7.4, '1705685115.6930006', 'ReD+uvTkaobyGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 24, tzinfo=datetime.timezone.utc), 1, 1.21, -73.978985, 40.744633, -73.971978, 40.759108, 'Credit', 4.9, 0.0, 0.8, 0.0, 5.7, '1705685115.6930006', 'SyyDcSsbB7PIbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), 1, 1.13, -74.002227, 40.726258, -74.01017, 40.714288, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'YPcvellZpN3XIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.02, -73.983087, 40.777492, -73.987358, 40.764463, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'P3MuVKkZo9wIWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 42, tzinfo=datetime.timezone.utc), 1, 0.63, -73.992957, 40.763045, -73.982845, 40.75919, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'tITP7bqSK/WBEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 32, tzinfo=datetime.timezone.utc), 1, 1.17, -73.947362, 40.78441, -73.950895, 40.770958, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'p0qdeTN6tjMPDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 33, tzinfo=datetime.timezone.utc), 3, 0.91, -73.997023, 40.752532, -74.004997, 40.741093, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'nb4plqQmhBUD5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 22, tzinfo=datetime.timezone.utc), 1, 0.88, -74.001647, 40.762042, -74.001098, 40.765265, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'sa8NIHwjDnG6og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 4, tzinfo=datetime.timezone.utc), 5, 1.16, -73.971227, 40.787752, -73.978772, 40.774302, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'ZUzE3WQV33skPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 16, tzinfo=datetime.timezone.utc), 1, 1.17, -73.96036, 40.761612, -73.949785, 40.776347, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'DaEyDS4tH+tD/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 59, tzinfo=datetime.timezone.utc), 5, 1.06, -74.007263, 40.727607, -74.00408, 40.715887, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685115.6930006', 'K3A54qV5QHI4Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 4, tzinfo=datetime.timezone.utc), 1, 1.71, -73.998055, 40.736102, -73.999695, 40.75379, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685115.6930006', 'NiEozjswpoan9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 20, tzinfo=datetime.timezone.utc), 1, 2.05, -74.007833, 40.723387, -73.994722, 40.750607, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685115.6930006', 's9odmS2tTFAT+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 30, tzinfo=datetime.timezone.utc), 1, 1.05, -73.981118, 40.747328, -73.984568, 40.735477, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685115.6930006', '0Fo6mCOe2+f9/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 49, tzinfo=datetime.timezone.utc), 1, 1.32, -73.985248, 40.735793, -73.977068, 40.7518, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685115.6930006', '5bL6c+4BTHPLzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 43, tzinfo=datetime.timezone.utc), 1, 1.73, -73.95517, 40.780115, -73.977555, 40.777763, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685115.6930006', 'jnigce0+hFnoHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 44, tzinfo=datetime.timezone.utc), 1, 1.69, -74.006333, 40.723135, -74.008857, 40.704567, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685115.6930006', '/x/RiChnxQCrVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 20, tzinfo=datetime.timezone.utc), 5, 2.22, -73.976707, 40.788223, -73.950988, 40.769772, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685115.6930006', 'dCOmRnHe25sc7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.8, -74.000785, 40.710395, -73.983753, 40.729907, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685115.6930006', 'QVDM5F6ki4YqQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 52, tzinfo=datetime.timezone.utc), 1, 2.24, -73.960927, 40.768962, -73.984537, 40.78226, 'Credit', 8.9, 0.5, 1.1, 0.0, 10.5, '1705685115.6930006', 'i6AkcT+GmaCkBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 32, tzinfo=datetime.timezone.utc), 1, 1.92, -73.966495, 40.74912, -73.967392, 40.755538, 'Credit', 10.9, 0.0, 1.1, 0.0, 12.0, '1705685115.6930006', 'xbCUOo3EeksO+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 53, tzinfo=datetime.timezone.utc), 1, 3.35, -73.9603, 40.817782, -73.959655, 40.781138, 'Credit', 10.9, 1.0, 1.1, 0.0, 13.0, '1705685115.6930006', 'Xf9sa/TWOPuaeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 16, tzinfo=datetime.timezone.utc), 1, 3.6, -73.988835, 40.753675, -73.950872, 40.783255, 'Credit', 12.9, 0.0, 1.1, 0.0, 14.0, '1705685115.6930006', 'LnlCIYMvaLXHHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 36, tzinfo=datetime.timezone.utc), 5, 5.64, -74.007653, 40.705087, -73.959698, 40.761753, 'Credit', 14.9, 0.0, 1.1, 0.0, 16.0, '1705685115.6930006', 'n3CFuhLozPV8mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 58, tzinfo=datetime.timezone.utc), 1, 3.61, -74.003635, 40.722288, -73.961467, 40.755247, 'Credit', 10.5, 0.5, 1.1, 0.0, 12.1, '1705685115.6930006', 'TPEXLYuw3c4o5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 42, tzinfo=datetime.timezone.utc), 1, 0.62, -73.981562, 40.732807, -73.990695, 40.736612, 'Credit', 4.5, 0.0, 1.1, 0.0, 5.6, '1705685115.6930006', 'BwUNnTFYgGQSUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 20, tzinfo=datetime.timezone.utc), 1, 2.31, -73.97999, 40.730322, -73.96327, 40.757977, 'Credit', 7.7, 1.0, 1.1, 0.0, 9.8, '1705685115.6930006', 'InzjniDUuMY5Sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 16, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980513, 40.775055, -73.978547, 40.781017, 'Credit', 4.9, 0.5, 1.6, 0.0, 7.0, '1705685115.6930006', 'gmKSZPbDIt7vGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 46, tzinfo=datetime.timezone.utc), 2, 1.65, -74.003843, 40.746002, -74.004253, 40.72324, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685115.6930006', 'j3Nop/vV5nF0HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 11, tzinfo=datetime.timezone.utc), 1, 1.43, -73.994242, 40.731318, -73.981752, 40.746317, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685115.6930006', 'v3id6adRZ2ZIzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 20, tzinfo=datetime.timezone.utc), 3, 1.61, -73.983258, 40.755868, -73.982183, 40.774728, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685115.6930006', 'WcGL3Rqf+iwgrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 14, tzinfo=datetime.timezone.utc), 1, 2.56, -74.008173, 40.74522, -74.006277, 40.715615, 'Credit', 8.9, 0.5, 1.6, 0.0, 11.0, '1705685115.6930006', 'OKQHPY8iwn+XuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 50, tzinfo=datetime.timezone.utc), 1, 4.92, -73.975007, 40.787298, -74.002727, 40.734192, 'Credit', 14.9, 0.5, 1.6, 0.0, 17.0, '1705685115.6930006', '2QR+CIGiEHgDeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 19, tzinfo=datetime.timezone.utc), 5, 4.85, -74.003825, 40.729225, -73.98284, 40.78141, 'Credit', 14.9, 0.5, 1.6, 0.0, 17.0, '1705685115.6930006', 'ytMIcyy3dbfJkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 17, tzinfo=datetime.timezone.utc), 1, 5.06, -73.975182, 40.763508, -74.009833, 40.718682, 'Credit', 16.9, 1.0, 1.6, 0.0, 19.5, '1705685115.6930006', 'smqTGnbLYxFSSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 36, tzinfo=datetime.timezone.utc), 1, 2.7, 0.0, 0.0, 0.0, 0.0, 'Credit', 8.5, 0.0, 1.6, 0.0, 10.1, '1705685115.6930006', '8N6SJEKGlLg4QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 58, tzinfo=datetime.timezone.utc), 1, 1.63, -73.987802, 40.744012, -73.97253, 40.756988, 'Credit', 8.5, 0.0, 1.6, 0.0, 10.1, '1705685115.6930006', '/ZJ9qSPL1ksEmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 24, tzinfo=datetime.timezone.utc), 1, 1.6, -73.962163, 40.773352, -73.978742, 40.77712, 'Credit', 8.1, 0.0, 1.6, 0.0, 9.7, '1705685115.6930006', 'kLfJbLiro+xOlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.85, -73.987407, 40.741653, -73.986817, 40.760515, 'Credit', 8.1, 0.5, 1.6, 0.0, 10.2, '1705685115.6930006', 'ZqayUDGsc71QJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), 1, 1.59, -73.982292, 40.768288, -73.978717, 40.785428, 'Credit', 7.7, 0.0, 1.6, 0.0, 9.3, '1705685115.6930006', 'rgP2hUrBJeqeXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 3, tzinfo=datetime.timezone.utc), 5, 2.05, -73.980972, 40.744475, -73.983035, 40.722593, 'Credit', 7.7, 0.5, 1.6, 0.0, 9.8, '1705685115.6930006', 'cgvP5b+/3QH/gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 54, tzinfo=datetime.timezone.utc), 1, 2.25, -73.994365, 40.752743, -73.981115, 40.77938, 'Credit', 7.7, 0.5, 1.6, 0.0, 9.8, '1705685115.6930006', 'KB7Oms9V/Bmc/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 35, tzinfo=datetime.timezone.utc), 1, 1.8, -73.983725, 40.757318, -73.988652, 40.774037, 'Credit', 7.3, 0.5, 1.6, 0.0, 9.4, '1705685115.6930006', 'U8FDnP9RW+CB9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 27, tzinfo=datetime.timezone.utc), 1, 3.23, -73.961353, 40.777513, -73.97699, 40.741518, 'Credit', 12.1, 0.0, 1.85, 0.0, 13.95, '1705685115.6930006', '72xUuxzmDx3JDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 37, tzinfo=datetime.timezone.utc), 1, 16.64, -73.9872, 40.739605, -74.177363, 40.69506, 'Credit', 52.3, 0.0, 13.07, 8.0, 73.37, '1705685115.6930006', 'NaZCs4XIZ8QJiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 52, tzinfo=datetime.timezone.utc), 2, 4.96, -74.005762, 40.736393, -73.954113, 40.781432, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685115.6930006', 'nFLyuxzQIq0xOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 46, tzinfo=datetime.timezone.utc), 1, 5.27, -74.015663, 40.711165, -73.970998, 40.683845, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685115.6930006', '5s/xBqanXUJiLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 12, tzinfo=datetime.timezone.utc), 1, 4.67, -73.876785, 40.778372, -73.959038, 40.763765, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685115.6930006', 'j+X0BeKBXGpGsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 1, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 1, 54, tzinfo=datetime.timezone.utc), 1, 0.57, -73.983605, 40.725947, -73.948272, 40.788985, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685115.6930006', 'SN3RNk+1Vzw8+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 40, tzinfo=datetime.timezone.utc), 2, 4.91, -73.981922, 40.768917, -74.014132, 40.71697, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685115.6930006', 'QAKID36FFXXoHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 7, tzinfo=datetime.timezone.utc), 5, 5.65, -73.944687, 40.787502, -73.998473, 40.745325, 'Credit', 16.9, 1.0, 3.58, 0.0, 21.48, '1705685115.6930006', 'NETnVXlEg4UZlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 54, tzinfo=datetime.timezone.utc), 2, 4.29, -73.968233, 40.767963, -74.00961, 40.726017, 'Credit', 16.9, 1.0, 3.58, 0.0, 21.48, '1705685115.6930006', 'TYinekpV7/vxZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 18, tzinfo=datetime.timezone.utc), 1, 9.08, -73.865798, 40.770625, -73.951588, 40.770232, 'Credit', 23.3, 0.0, 4.66, 4.15, 32.11, '1705685115.6930006', '/6cpXDnb339dgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 52, tzinfo=datetime.timezone.utc), 1, 9.45, -73.9552, 40.780097, -73.971385, 40.695588, 'Credit', 23.3, 0.0, 4.66, 0.0, 27.96, '1705685115.6930006', 'Io2ZRXhv3+J7jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 55, tzinfo=datetime.timezone.utc), 5, 8.03, -73.993763, 40.740617, -73.973755, 40.656293, 'Credit', 23.3, 0.0, 4.66, 0.0, 27.96, '1705685115.6930006', 'dGyNkqgrXS+YZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), 1, 11.11, -73.990037, 40.757057, -73.90593, 40.887513, 'Credit', 25.3, 0.5, 5.16, 2.75, 33.71, '1705685115.6930006', '1+LREMkUCOFCeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 30, tzinfo=datetime.timezone.utc), 1, 9.82, -73.984793, 40.736835, -73.974737, 40.648182, 'Credit', 25.3, 0.5, 5.16, 0.0, 30.96, '1705685115.6930006', '07ZL1Q3xS5R7sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 50, tzinfo=datetime.timezone.utc), 1, 13.79, -73.874622, 40.774185, -73.883128, 40.87067, 'Credit', 55.3, 1.0, 16.89, 4.15, 77.34, '1705685115.6930006', 'g7nE0HvY9+QNQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 10, tzinfo=datetime.timezone.utc), 5, 6.13, -73.945903, 40.773522, -74.006653, 40.728715, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', 'KC9SiasjAtMfHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 4, tzinfo=datetime.timezone.utc), 5, 6.13, -73.983068, 40.73076, -73.995972, 40.684542, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', 'E2WURn43qSOItA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 40, tzinfo=datetime.timezone.utc), 2, 4.44, -73.984013, 40.73765, -73.96931, 40.689502, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', '2cxRB1errVeb3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 18, tzinfo=datetime.timezone.utc), 1, 5.54, -74.004468, 40.721843, -73.978583, 40.783162, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', 'f4a83SMQlg7yOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.67, 0.0, 0.0, 0.0, 0.0, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', 'slTs6F9ZABCpjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 2, tzinfo=datetime.timezone.utc), 1, 4.78, -73.962002, 40.810832, -73.981825, 40.756372, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685115.6930006', 'YRyXMRlbCpk0gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 1, tzinfo=datetime.timezone.utc), 1, 7.57, -73.870872, 40.773682, -73.95045, 40.79518, 'Credit', 19.3, 0.5, 3.96, 4.15, 27.91, '1705685115.6930006', 'rgmtkkzpRW51lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 10, tzinfo=datetime.timezone.utc), 1, 4.97, -73.993023, 40.762767, -73.961203, 40.811028, 'Credit', 15.7, 1.0, 4.17, 0.0, 20.87, '1705685115.6930006', 'GfI7zMdbAyh5OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 27, tzinfo=datetime.timezone.utc), 1, 7.99, -73.99119, 40.697038, -73.967865, 40.763578, 'Credit', 22.1, 0.0, 4.42, 0.0, 26.52, '1705685115.6930006', 'Ih0Z6GbVOsYgmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 45, tzinfo=datetime.timezone.utc), 1, 8.59, -73.978915, 40.749355, -73.873105, 40.774387, 'Credit', 22.1, 0.0, 4.42, 4.15, 30.67, '1705685115.6930006', 'j7f2eFOOp3d0/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 51, tzinfo=datetime.timezone.utc), 5, 10.04, -73.86345, 40.769622, -73.99259, 40.737615, 'Credit', 24.1, 0.5, 4.92, 4.15, 33.67, '1705685115.6930006', 'E1Od+Xj9i3k4rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 7, tzinfo=datetime.timezone.utc), 1, 9.03, -73.983032, 40.742112, -73.872293, 40.774497, 'Credit', 21.7, 0.0, 5.42, 0.0, 27.12, '1705685115.6930006', 'ySpysGpOI5jYiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 22, tzinfo=datetime.timezone.utc), 1, 10.03, -73.885467, 40.773123, -73.930003, 40.866107, 'Credit', 23.7, 0.0, 5.92, 4.15, 33.77, '1705685115.6930006', 'RW4ct3XLjRN1Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 19, tzinfo=datetime.timezone.utc), 1, 10.05, -73.874542, 40.773947, -74.0056, 40.746285, 'Credit', 25.7, 0.0, 6.42, 4.15, 36.27, '1705685115.6930006', 'Im7EGYnizeQtPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 20, tzinfo=datetime.timezone.utc), 1, 11.53, -73.902217, 40.742863, -73.91662, 40.760453, 'Credit', 27.7, 0.0, 6.92, 5.0, 39.62, '1705685115.6930006', 'HB72iotNR31gxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 0, tzinfo=datetime.timezone.utc), 2, 17.43, -73.776707, 40.645367, -73.968602, 40.76443, 'Credit', 45.0, 0.0, 11.11, 4.15, 60.26, '1705685115.6930006', 'v1WYI3uLtQED3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 10, tzinfo=datetime.timezone.utc), 2, 3.58, -74.011988, 40.714055, -73.986683, 40.742615, 'Credit', 15.7, 1.0, 3.34, 0.0, 20.04, '1705685115.6930006', 'e21qa0g3cNOWjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 39, tzinfo=datetime.timezone.utc), 1, 5.06, -73.980807, 40.780003, -73.99362, 40.724438, 'Credit', 20.9, 0.0, 4.18, 0.0, 25.08, '1705685115.6930006', 'i7IxiwdumZ0K7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 30, tzinfo=datetime.timezone.utc), 1, 7.21, -73.99428, 40.69468, -73.974812, 40.75634, 'Credit', 20.9, 0.0, 4.18, 0.0, 25.08, '1705685115.6930006', 'u4FFHdyLCF+3Ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 0, tzinfo=datetime.timezone.utc), 1, 8.78, -73.870633, 40.773513, -73.969565, 40.800322, 'Credit', 22.9, 0.5, 4.68, 4.15, 32.23, '1705685115.6930006', '2hjGiUqoXyTMDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 37, tzinfo=datetime.timezone.utc), 1, 9.75, -73.88537, 40.773075, -74.005953, 40.734468, 'Credit', 24.9, 1.0, 5.18, 4.15, 35.23, '1705685115.6930006', 'QAugxR6VU2nFEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 0, tzinfo=datetime.timezone.utc), 1, 12.28, -74.004025, 40.711187, -73.865272, 40.770682, 'Credit', 30.9, 0.0, 6.18, 0.0, 37.08, '1705685115.6930006', 'RuleLjI8nrunVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 56, tzinfo=datetime.timezone.utc), 2, 13.21, -73.776712, 40.645347, -73.790095, 40.763657, 'Credit', 30.9, 0.0, 6.18, 0.0, 37.08, '1705685115.6930006', 'oTuyDRSFp092gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 56, tzinfo=datetime.timezone.utc), 2, 12.39, -73.863632, 40.769997, -73.974108, 40.759793, 'Credit', 30.9, 0.0, 6.18, 4.15, 41.23, '1705685115.6930006', '0wqXOBnDvGznkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 4, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 4, 34, tzinfo=datetime.timezone.utc), 1, 14.31, -73.991817, 40.75958, -74.036728, 40.617115, 'Credit', 32.9, 0.5, 6.68, 0.0, 40.08, '1705685115.6930006', '5eGnpmGc6tN2jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 54, tzinfo=datetime.timezone.utc), 1, 13.85, -73.863657, 40.769625, -74.008473, 40.734952, 'Credit', 34.9, 1.0, 7.18, 4.15, 47.23, '1705685115.6930006', '2dPB/iaQEtJGWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 10, tzinfo=datetime.timezone.utc), 1, 1.21, 0.0, 0.0, 0.0, 0.0, 'Credit', 29.3, 0.0, 10.86, 0.0, 40.16, '1705685115.6930006', 'RAsbmpeY0/TnLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 52, tzinfo=datetime.timezone.utc), 1, 9.8, -73.989018, 40.735103, -73.873028, 40.774417, 'Credit', 26.1, 1.0, 8.13, 4.15, 39.38, '1705685115.6930006', 'q+BsBedZuR0PSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 47, tzinfo=datetime.timezone.utc), 5, 5.05, -74.005302, 40.721108, -73.983675, 40.664563, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685115.6930006', 'gUwUo7czGlTvSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 44, tzinfo=datetime.timezone.utc), 1, 2.76, -73.959373, 40.763212, -73.991362, 40.749803, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685115.6930006', 'zMW1LK3z9lAhLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 56, tzinfo=datetime.timezone.utc), 2, 5.39, -74.00685, 40.705703, -73.97434, 40.756857, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685115.6930006', 'E3eyJXyQTjqz2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 24, tzinfo=datetime.timezone.utc), 1, 6.22, -73.993557, 40.749792, -73.981875, 40.677787, 'Credit', 18.1, 0.5, 3.72, 0.0, 22.32, '1705685115.6930006', 'kix3k7xDUmE0KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 3, tzinfo=datetime.timezone.utc), 1, 6.53, -73.98951, 40.739632, -73.907872, 40.775678, 'Credit', 18.1, 0.5, 3.72, 0.0, 22.32, '1705685115.6930006', 'KZ26AkTPh3iyyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 53, tzinfo=datetime.timezone.utc), 1, 13.2, -74.011603, 40.70368, -73.872672, 40.774277, 'Credit', 29.7, 0.0, 5.94, 4.15, 39.79, '1705685115.6930006', 'ekJ0E0EurUds/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 2, 39, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 46, 56, tzinfo=datetime.timezone.utc), 1, 1.8, -74.006268, 40.744273, -73.979829, 40.737366, 'Credit', 6.9, 0.0, 1.11, 0.0, 8.01, '1705685115.6930006', 'M0SPp6H7yiFvtQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.64, -73.981467, 40.741125, -73.969488, 40.761063, 'Credit', 6.1, 0.0, 1.11, 0.0, 7.21, '1705685115.6930006', 'Hb7XkPK9pebRjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 4, 9, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 30, tzinfo=datetime.timezone.utc), 4, 2.0, -73.980937, 40.769594, -73.958876, 40.781024, 'Credit', 9.3, 0.0, 1.86, 0.0, 11.16, '1705685115.6930006', 'p2tKEkbpdDvvKg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 15, tzinfo=datetime.timezone.utc), 5, 1.51, -73.998765, 40.71986, -73.99049, 40.73193, 'Credit', 6.9, 0.0, 2.1, 0.0, 9.0, '1705685115.6930006', 'L3GVrPkOPn/9Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 20, tzinfo=datetime.timezone.utc), 1, 3.58, -73.97186, 40.750988, -73.976922, 40.780125, 'Credit', 12.9, 0.0, 2.1, 0.0, 15.0, '1705685115.6930006', 'HCJMvuKz3WbQlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 9, tzinfo=datetime.timezone.utc), 2, 4.75, -73.973715, 40.784617, -74.00841, 40.73456, 'Credit', 14.9, 0.0, 2.1, 0.0, 17.0, '1705685115.6930006', 'lewE0bGIcCmncg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 32, tzinfo=datetime.timezone.utc), 5, 3.91, -73.982793, 40.761472, -74.008493, 40.711742, 'Credit', 14.9, 1.0, 2.1, 0.0, 18.0, '1705685115.6930006', 'doTkurXpMZH0yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 8, tzinfo=datetime.timezone.utc), 1, 3.16, -73.967442, 40.80318, -73.976578, 40.763255, 'Credit', 11.7, 0.0, 2.35, 0.0, 14.05, '1705685115.6930006', '2GMtSIPtNyvLqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 13, tzinfo=datetime.timezone.utc), 1, 5.99, -73.979137, 40.747125, -73.988573, 40.693463, 'Credit', 15.3, 0.0, 2.85, 0.0, 18.15, '1705685115.6930006', 'hScbJnI7IQZczw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 30, tzinfo=datetime.timezone.utc), 5, 8.55, -73.782083, 40.64476, -73.759592, 40.599705, 'Credit', 20.9, 0.5, 3.1, 0.0, 24.5, '1705685115.6930006', 'N5e2sTXB3FnfVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 19, tzinfo=datetime.timezone.utc), 1, 2.99, 0.0, 0.0, 0.0, 0.0, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685115.6930006', 'uvvzIE8nF3lr2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 6, tzinfo=datetime.timezone.utc), 1, 4.14, -73.996185, 40.756292, -73.942667, 40.795982, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685115.6930006', 'ptWOkVBVasbaeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 37, tzinfo=datetime.timezone.utc), 1, 4.96, -73.947845, 40.771327, -73.98773, 40.719875, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685115.6930006', '5Qv1Yjnp1dNR0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 54, tzinfo=datetime.timezone.utc), 1, 5.27, -73.994788, 40.750388, -73.939678, 40.798337, 'Credit', 14.9, 0.5, 3.85, 0.0, 19.25, '1705685115.6930006', 'BdkdI/+MltN6CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 20, tzinfo=datetime.timezone.utc), 1, 7.91, -73.865587, 40.771065, -73.956163, 40.746045, 'Credit', 20.5, 0.5, 4.2, 0.0, 25.2, '1705685115.6930006', 'iNyk8FFShJUPSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 49, tzinfo=datetime.timezone.utc), 1, 11.3, -73.991792, 40.690948, -73.871065, 40.77422, 'Credit', 27.7, 1.0, 4.2, 0.0, 32.9, '1705685115.6930006', 'NkcKZ+OORbcrIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 46, tzinfo=datetime.timezone.utc), 1, 7.55, -73.987433, 40.702505, -73.9841, 40.764583, 'Credit', 22.5, 1.0, 4.7, 0.0, 28.2, '1705685115.6930006', 'UaUPJGsKsoeCmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 9, tzinfo=datetime.timezone.utc), 1, 9.23, -74.001925, 40.715408, -74.033752, 40.614565, 'Credit', 22.5, 1.0, 4.7, 0.0, 28.2, '1705685115.6930006', 'XVm/JGdz42mdQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 29, tzinfo=datetime.timezone.utc), 1, 16.63, -73.968263, 40.755302, -73.782878, 40.643997, 'Credit', 45.0, 0.0, 5.45, 4.15, 54.6, '1705685115.6930006', 'VQIHftZ2YsTYQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 47, tzinfo=datetime.timezone.utc), 1, 9.42, -73.994883, 40.739808, -73.937498, 40.847928, 'Credit', 28.5, 0.0, 5.7, 0.0, 34.2, '1705685115.6930006', 'GNKWrcz3KuSSPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 27, tzinfo=datetime.timezone.utc), 1, 9.2, -73.871, 40.773658, -73.99713, 40.756397, 'Credit', 23.3, 0.5, 5.95, 4.15, 33.9, '1705685115.6930006', 'vtoZDwVsZkKXhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 5, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 5, tzinfo=datetime.timezone.utc), 1, 16.16, -73.989273, 40.757522, -74.181695, 40.687712, 'Credit', 49.9, 0.5, 7.7, 8.0, 66.1, '1705685115.6930006', 'cKUkBMghgwnUZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.81, -73.955512, 40.77678, -73.955997, 40.78548, 'Credit', 4.1, 0.0, 0.65, 0.0, 4.75, '1705685115.6930006', 'yH0rIopENUedXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), 5, 0.58, -73.97627, 40.756452, -73.970012, 40.7617, 'Credit', 4.1, 0.0, 0.9, 0.0, 5.0, '1705685115.6930006', 'K46hOk8tgmtu0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 16, tzinfo=datetime.timezone.utc), 1, 0.87, -73.966697, 40.78446, -73.966697, 40.78446, 'Credit', 4.1, 0.0, 0.9, 0.0, 5.0, '1705685115.6930006', 'q4gCIBOZGLbQiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.77, -73.984797, 40.760127, -73.971795, 40.75521, 'Credit', 6.1, 0.0, 0.9, 0.0, 7.0, '1705685115.6930006', 'NDfMQt+rp382/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 30, tzinfo=datetime.timezone.utc), 1, 1.96, -73.98051, 40.745218, -74.001165, 40.727683, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685115.6930006', 'EHSqi6Z/0Xs5Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 38, tzinfo=datetime.timezone.utc), 1, 2.38, -73.990523, 40.755907, -73.99383, 40.729163, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685115.6930006', 'q6kbS8zqGRlqGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 27, tzinfo=datetime.timezone.utc), 5, 1.45, -73.966198, 40.756123, -73.976723, 40.743827, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685115.6930006', 'D2lrrS7vyS+94Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 7, tzinfo=datetime.timezone.utc), 2, 1.22, -73.961537, 40.774468, -73.970107, 40.759705, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685115.6930006', 'utAzkOH6x/WgjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 22, tzinfo=datetime.timezone.utc), 1, 1.51, -73.964202, 40.761388, -73.980487, 40.751237, 'Credit', 8.1, 1.0, 0.9, 0.0, 10.0, '1705685115.6930006', 'JZrPgro0VXotGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 41, tzinfo=datetime.timezone.utc), 1, 1.98, -73.991448, 40.75131, -73.991107, 40.728718, 'Credit', 10.1, 0.0, 0.9, 0.0, 11.0, '1705685115.6930006', 'c8v6l856YqL/Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 16, tzinfo=datetime.timezone.utc), 1, 2.61, -73.956073, 40.778302, -73.988293, 40.769622, 'Credit', 10.1, 0.0, 0.9, 0.0, 11.0, '1705685115.6930006', '3MP1PtO4hiwREQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 15, tzinfo=datetime.timezone.utc), 2, 4.1, -73.95894, 40.774775, -73.996357, 40.725382, 'Credit', 12.1, 0.0, 0.9, 0.0, 13.0, '1705685115.6930006', 'GMcQwDJp49rCQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 14, tzinfo=datetime.timezone.utc), 1, 2.96, -73.99308, 40.692842, -74.000922, 40.723352, 'Credit', 12.1, 0.0, 0.9, 0.0, 13.0, '1705685115.6930006', 'wvgzVOxu9jKguQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 39, tzinfo=datetime.timezone.utc), 1, 1.11, -73.990555, 40.734965, -74.008013, 40.734198, 'Credit', 9.3, 0.0, 0.9, 0.0, 10.2, '1705685115.6930006', '7g6Omv5r4PRA0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 44, tzinfo=datetime.timezone.utc), 1, 0.67, -73.984752, 40.759505, -73.990375, 40.751585, 'Credit', 4.1, 0.0, 1.05, 0.0, 5.15, '1705685115.6930006', 'bsE/oYCUq6m/Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 9, tzinfo=datetime.timezone.utc), 2, 0.46, -73.958503, 40.780918, -73.950963, 40.777725, 'Credit', 3.7, 0.0, 1.3, 0.0, 5.0, '1705685115.6930006', '0A+rEc8XTqMoYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 16, tzinfo=datetime.timezone.utc), 1, 0.55, -74.00743, 40.726672, -74.005173, 40.73392, 'Credit', 3.7, 0.0, 1.3, 0.0, 5.0, '1705685115.6930006', '8edGwie8UNsnMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 21, tzinfo=datetime.timezone.utc), 1, 1.41, -73.97882, 40.736578, -73.977095, 40.751788, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685115.6930006', 'wPts7e+Xr1aqNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 45, tzinfo=datetime.timezone.utc), 5, 0.51, -73.999718, 40.730018, -74.000057, 40.731542, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685115.6930006', 'ys+vQKm0bZzjrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 37, tzinfo=datetime.timezone.utc), 5, 1.12, -73.958513, 40.76867, -73.970495, 40.758892, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685115.6930006', '4NWbGerNMSvzpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.21, -73.992742, 40.743675, -74.00219, 40.739712, 'Credit', 5.7, 0.5, 1.3, 0.0, 7.5, '1705685115.6930006', '+zzZqK4uD88fww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 40, tzinfo=datetime.timezone.utc), 1, 1.25, -73.979373, 40.724285, -73.997742, 40.733672, 'Credit', 5.7, 0.5, 1.3, 0.0, 7.5, '1705685115.6930006', 'jITeYG3G82sE6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 29, tzinfo=datetime.timezone.utc), 1, 1.04, -73.973942, 40.756408, -73.972545, 40.74624, 'Credit', 5.7, 1.0, 1.3, 0.0, 8.0, '1705685115.6930006', 'RyNb5tJK8SYfig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 13, tzinfo=datetime.timezone.utc), 5, 1.75, -73.998865, 40.724867, -74.006875, 40.742567, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685115.6930006', '7a+4+2M9WmFBbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 42, tzinfo=datetime.timezone.utc), 1, 2.44, -73.99365, 40.742857, -73.988655, 40.769422, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685115.6930006', 'rzFuX6G3FD7Vhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 29, tzinfo=datetime.timezone.utc), 1, 2.2, -73.994385, 40.690082, -74.003282, 40.713675, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685115.6930006', 'tLQhK/PSmxQgXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 24, tzinfo=datetime.timezone.utc), 1, 2.69, -73.978477, 40.762567, -73.949168, 40.785243, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685115.6930006', 'vs14/PzYTIenqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 4, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 18, tzinfo=datetime.timezone.utc), 1, 1.83, -73.98861, 40.737128, -73.988703, 40.737162, 'Credit', 7.7, 0.5, 1.3, 0.0, 9.5, '1705685115.6930006', 'tNNoKm/+T6Gn3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 38, tzinfo=datetime.timezone.utc), 1, 1.79, -74.010217, 40.720483, -74.001258, 40.741513, 'Credit', 7.7, 0.5, 1.3, 0.0, 9.5, '1705685115.6930006', 'Yl+rJTi6dAm0Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 20, tzinfo=datetime.timezone.utc), 1, 1.11, -73.975687, 40.761228, -73.982053, 40.770297, 'Credit', 7.7, 1.0, 1.3, 0.0, 10.0, '1705685115.6930006', 'P+OY5OyuYF71jA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.58, -73.993723, 40.75149, -73.972625, 40.753523, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685115.6930006', '0lc5TDKIFvEXHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 4, tzinfo=datetime.timezone.utc), 1, 1.99, -73.949722, 40.77673, -73.968125, 40.79405, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685115.6930006', '9rq5ujc5XqNt4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 31, tzinfo=datetime.timezone.utc), 1, 3.01, -73.954827, 40.773038, -73.98493, 40.763278, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685115.6930006', 'o1P9ofJNY00ifg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 13, tzinfo=datetime.timezone.utc), 5, 1.94, -73.990088, 40.751705, -73.972055, 40.763685, 'Credit', 13.7, 0.0, 1.3, 0.0, 15.0, '1705685115.6930006', 'vfKQowA78eewAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.47, -73.955978, 40.785505, -73.96579, 40.769435, 'Credit', 6.5, 0.0, 1.3, 0.0, 7.8, '1705685115.6930006', 'EsMSbsp8eELzLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 4, tzinfo=datetime.timezone.utc), 1, 1.88, -73.98818, 40.731925, -73.994698, 40.750515, 'Credit', 7.3, 0.0, 1.3, 0.0, 8.6, '1705685115.6930006', 'bB+ZgV3G1XbyNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 43, tzinfo=datetime.timezone.utc), 1, 2.26, -73.990047, 40.73512, -74.001873, 40.709398, 'Credit', 7.3, 0.5, 1.3, 0.0, 9.1, '1705685115.6930006', 'LNdiYqcX1WGRoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 15, tzinfo=datetime.timezone.utc), 1, 2.03, -73.981822, 40.77045, -73.98583, 40.749977, 'Credit', 9.3, 0.5, 1.3, 0.0, 11.1, '1705685115.6930006', '0AWM+WA9LKePOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 32, tzinfo=datetime.timezone.utc), 1, 2.84, -73.95233, 40.783878, -73.986202, 40.767293, 'Credit', 8.9, 0.5, 1.3, 0.0, 10.7, '1705685115.6930006', 'bJAbYvCXHIz8lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 41, tzinfo=datetime.timezone.utc), 2, 1.61, -73.980415, 40.734237, -73.968015, 40.753417, 'Credit', 5.7, 0.5, 1.8, 0.0, 8.0, '1705685115.6930006', 'aIhOYgUv+kpJ6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 18, tzinfo=datetime.timezone.utc), 5, 1.96, -74.004212, 40.742713, -73.977102, 40.744185, 'Credit', 7.7, 0.5, 1.8, 0.0, 10.0, '1705685115.6930006', 'd0pnohBBNSC3wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 18, tzinfo=datetime.timezone.utc), 1, 2.54, -73.981773, 40.768482, -73.972663, 40.798345, 'Credit', 9.7, 0.0, 1.8, 0.0, 11.5, '1705685115.6930006', 'a/uAZiRfWs9WZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 30, tzinfo=datetime.timezone.utc), 1, 2.91, -73.980943, 40.76541, -73.993657, 40.730517, 'Credit', 9.7, 0.5, 1.8, 0.0, 12.0, '1705685115.6930006', '74buq4mNCIXPdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 29, tzinfo=datetime.timezone.utc), 1, 2.77, -73.968937, 40.801532, -73.981492, 40.768593, 'Credit', 9.7, 0.5, 1.8, 0.0, 12.0, '1705685115.6930006', 'ZdHL1TTAVHDFfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 2, 4.28, -73.981867, 40.729413, -73.946178, 40.727848, 'Credit', 13.7, 0.5, 1.8, 0.0, 16.0, '1705685115.6930006', 'U0NTIJmWuWoFHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 3, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 27, tzinfo=datetime.timezone.utc), 1, 11.6, -73.98823, 40.719975, -73.937877, 40.845157, 'Credit', 27.7, 0.5, 1.8, 0.0, 30.0, '1705685115.6930006', '3w16h4ywvZEZSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 43, tzinfo=datetime.timezone.utc), 1, 2.43, -73.971285, 40.798025, -73.96223, 40.773562, 'Credit', 10.9, 0.0, 1.8, 0.0, 12.7, '1705685115.6930006', 'FNuMLjlci6Kjng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 17, tzinfo=datetime.timezone.utc), 1, 1.05, -74.001585, 40.746113, -74.008532, 40.733433, 'Credit', 8.1, 1.0, 1.8, 0.0, 10.9, '1705685115.6930006', 'zLg9ipcx7PtPtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 28, tzinfo=datetime.timezone.utc), 5, 5.73, -73.934643, 40.79742, -73.939625, 40.748895, 'Credit', 16.9, 0.5, 3.48, 0.0, 20.88, '1705685115.6930006', 'AvldmhB0ZYYhIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 39, tzinfo=datetime.timezone.utc), 2, 5.84, -74.015898, 40.711177, -73.94722, 40.709877, 'Credit', 18.9, 1.0, 3.98, 0.0, 23.88, '1705685115.6930006', '6irFlOZdrBO3qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 37, tzinfo=datetime.timezone.utc), 5, 5.31, -73.98692, 40.745372, -73.939802, 40.707465, 'Credit', 17.7, 0.5, 5.46, 0.0, 23.66, '1705685115.6930006', 'L3fSJn3PFCQ+nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 50, tzinfo=datetime.timezone.utc), 5, 11.33, -73.865727, 40.76886, -73.98444, 40.68685, 'Credit', 27.3, 0.0, 5.46, 0.0, 32.76, '1705685115.6930006', 'R+ZjuyPtfVjLiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 4, 5, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 22, 46, tzinfo=datetime.timezone.utc), 1, 6.3, -74.000644, 40.72983, -73.964923, 40.65195, 'Credit', 16.9, 0.0, 2.61, 0.0, 19.51, '1705685115.6930006', 'OdaonitYCmemBg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 58, tzinfo=datetime.timezone.utc), 1, 6.5, -74.008862, 40.713838, -73.969212, 40.78611, 'Credit', 19.3, 0.0, 3.86, 0.0, 23.16, '1705685115.6930006', 'GEUUITYhsHbc1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 6, tzinfo=datetime.timezone.utc), 1, 4.45, -73.992278, 40.724198, -73.982395, 40.77182, 'Credit', 20.1, 1.0, 4.22, 0.0, 25.32, '1705685115.6930006', 'P9uBphuV17uQeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 20, tzinfo=datetime.timezone.utc), 1, 6.59, -73.966763, 40.803992, -73.90217, 40.77659, 'Credit', 20.1, 1.0, 4.22, 4.15, 29.47, '1705685115.6930006', 'P8onTi5rFImGbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 6, tzinfo=datetime.timezone.utc), 1, 9.19, -73.954047, 40.774757, -73.972683, 40.698102, 'Credit', 26.1, 0.0, 5.22, 0.0, 31.32, '1705685115.6930006', 'zc/cbWeRjoac4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 1, 13, tzinfo=datetime.timezone.utc), 1, 10.25, -73.98174, 40.67921, -73.973077, 40.797845, 'Credit', 28.1, 0.5, 5.72, 0.0, 34.32, '1705685115.6930006', 'ap1xY+DTrT3o0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 45, tzinfo=datetime.timezone.utc), 1, 11.5, -73.974245, 40.748962, -73.865098, 40.770528, 'Credit', 25.7, 0.0, 5.97, 4.15, 35.82, '1705685115.6930006', 'tePfTVqMzh3zeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 3, tzinfo=datetime.timezone.utc), 1, 5.44, -73.979862, 40.76165, -74.015665, 40.70951, 'Credit', 26.9, 1.0, 6.97, 0.0, 34.87, '1705685115.6930006', 'FHGteYeBBgW1Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 36, tzinfo=datetime.timezone.utc), 2, 5.68, -73.988, 40.744093, -73.922827, 40.766527, 'Credit', 15.7, 0.5, 3.24, 0.0, 19.44, '1705685115.6930006', 'sZzfcZZoKtNqaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 40, tzinfo=datetime.timezone.utc), 1, 6.03, -73.949558, 40.780593, -73.98754, 40.719948, 'Credit', 15.7, 0.5, 3.24, 0.0, 19.44, '1705685115.6930006', 'H7IFTZWERDfCNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 21, tzinfo=datetime.timezone.utc), 1, 8.64, -73.870963, 40.77384, -73.992653, 40.74763, 'Credit', 24.9, 0.0, 4.98, 4.15, 34.03, '1705685115.6930006', 'T6ptL52vNOh4Tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 5, tzinfo=datetime.timezone.utc), 1, 6.45, -74.007137, 40.70373, -73.975978, 40.76566, 'Credit', 18.1, 1.0, 5.73, 0.0, 24.83, '1705685115.6930006', '/Nc3dFcPFmmYXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 43, tzinfo=datetime.timezone.utc), 1, 11.49, -73.874532, 40.774163, -73.982805, 40.75586, 'Credit', 28.9, 1.0, 5.98, 4.15, 40.03, '1705685115.6930006', 'DvfwHkMGRkgL0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), 1, 11.98, -73.872347, 40.773807, -73.981275, 40.756152, 'Credit', 34.9, 0.0, 6.98, 4.15, 46.03, '1705685115.6930006', 'mxf3aznDHBjfLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 21, 11, 45, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 59, 21, tzinfo=datetime.timezone.utc), 1, 4.3, -73.981307, 40.724954, -73.959148, 40.774587, 'Credit', 12.5, 0.0, 1.87, 0.0, 14.37, '1705685115.6930006', 'UoRQn7Sucz19CA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 20, tzinfo=datetime.timezone.utc), 2, 15.47, -73.794193, 40.657042, -73.964097, 40.584617, 'Credit', 34.9, 0.0, 8.73, 0.0, 43.63, '1705685115.6930006', '25VuGMJDD2Wqxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 7, tzinfo=datetime.timezone.utc), 1, 14.13, -73.866008, 40.769452, -74.016063, 40.715197, 'Credit', 34.1, 0.0, 10.23, 4.15, 48.48, '1705685115.6930006', 'kiMvapfpS/rVVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 26, tzinfo=datetime.timezone.utc), 1, 5.21, -73.994482, 40.734678, -73.988418, 40.667672, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685115.6930006', 'UI3YFqi42ZbQlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 40, tzinfo=datetime.timezone.utc), 2, 6.36, -74.011645, 40.707945, -73.9736, 40.76117, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685115.6930006', 'dn9znpiov3nohg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 25, tzinfo=datetime.timezone.utc), 5, 7.09, -73.989213, 40.765628, -73.942962, 40.847323, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685115.6930006', 'A87I/VKCr34caQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 20, tzinfo=datetime.timezone.utc), 1, 5.78, -73.98289, 40.738928, -73.902377, 40.745582, 'Credit', 15.3, 0.5, 4.74, 0.0, 20.54, '1705685115.6930006', 'C0PyX5nJWXFYxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 1, tzinfo=datetime.timezone.utc), 1, 9.03, -74.015842, 40.715382, -73.959378, 40.78108, 'Credit', 23.7, 0.0, 4.74, 0.0, 28.44, '1705685115.6930006', 'SYOd07hq1VtEww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 20, tzinfo=datetime.timezone.utc), 2, 8.82, -73.871898, 40.77393, -73.962298, 40.775457, 'Credit', 23.7, 0.0, 4.74, 4.15, 32.59, '1705685115.6930006', 'cKOpNuw6+j8XkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 17, 24, tzinfo=datetime.timezone.utc), 2, 10.5, -73.87245, 40.774232, -73.978793, 40.760852, 'Credit', 27.7, 1.0, 5.74, 5.0, 39.44, '1705685115.6930006', 'rqZUB4XV9aAwTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 13, 32, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 36, 43, tzinfo=datetime.timezone.utc), 1, 1.1, -73.960316, 40.77629, -73.974731, 40.785031, 'Credit', 5.3, 0.0, 1.06, 0.0, 6.36, '1705685115.6930006', 'eS7Sc4Ikomp2JQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 7, tzinfo=datetime.timezone.utc), 208, 0.0, -73.937825, 40.758278, -73.937818, 40.758275, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'aKEbaEu2uRU2OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 6, 50, tzinfo=datetime.timezone.utc), 1, 0.0, -73.972203, 40.745427, -73.972203, 40.745425, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'ukgYtduZfOvGIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 57, tzinfo=datetime.timezone.utc), 1, 0.0, -73.97098, 40.753052, -73.971008, 40.753018, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'dl7t/LlLjN43xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 55, tzinfo=datetime.timezone.utc), 1, 0.0, -73.937452, 40.758175, -73.93745, 40.75817, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'dATXsGF4EVVxPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 43, tzinfo=datetime.timezone.utc), 5, 0.0, -73.950702, 40.802125, -73.950702, 40.802125, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'VBJhdxfXmFCfyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 57, tzinfo=datetime.timezone.utc), 1, 0.01, -73.970555, 40.691092, -73.970602, 40.691087, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'qYZ239nHOm0/9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 10, tzinfo=datetime.timezone.utc), 1, 0.02, -73.966673, 40.604378, -73.966698, 40.604508, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', '+oFnxZZqNQ21dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 13, tzinfo=datetime.timezone.utc), 1, 0.08, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'l/qncXrUec9Kww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 38, tzinfo=datetime.timezone.utc), 2, 0.01, -73.97134, 40.763912, -73.97134, 40.763912, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'tYRNarwgJgmHtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 8, 31, tzinfo=datetime.timezone.utc), 1, 0.0, -73.951592, 40.769878, -73.951592, 40.769878, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 't3nJnOmE0kEjVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 11, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 2, 29, tzinfo=datetime.timezone.utc), 1, 0.0, -73.99487, 40.726063, -73.99487, 40.726063, 'Cash', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'aLqtLKMx8VY30w', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 29, tzinfo=datetime.timezone.utc), 1, 0.05, -73.965502, 40.598207, -73.965542, 40.59842, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'GaLda9QH3O9YRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 20, 9, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 24, 13, tzinfo=datetime.timezone.utc), 1, 12.8, -73.973916, 40.754193, -73.995665, 40.761249, 'Cash', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'jdCwq6Bm6HqgEQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 53, tzinfo=datetime.timezone.utc), 2, 0.0, -73.78194, 40.64472, 0.0, 0.0, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'b5ZXkRe5LMk1NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 7, tzinfo=datetime.timezone.utc), 1, 0.02, -73.99846, 40.723742, -73.998538, 40.72372, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'ZeC6ZfgR6aUleA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 53, tzinfo=datetime.timezone.utc), 1, 0.01, -73.908837, 40.771547, -73.908823, 40.771527, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'uy6MGI2w0xMfLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), 1, 0.0, -73.790062, 40.646958, -73.790068, 40.646957, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'c3Bf5J/5PhOBQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 59, tzinfo=datetime.timezone.utc), 6, 0.0, -73.814118, 40.698117, -73.814118, 40.698117, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'MEU/hbaybQM1Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 24, tzinfo=datetime.timezone.utc), 1, 0.03, -73.939705, 40.760992, -73.939278, 40.760855, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'L3Vqj5zBJxL76Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 6, tzinfo=datetime.timezone.utc), 3, 0.1, -73.987772, 40.748002, -73.986135, 40.747453, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'EqaBwm5ue8dzjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 33, tzinfo=datetime.timezone.utc), 1, 0.0, -73.979945, 40.760897, -73.979763, 40.760973, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'N/5LCRCMpmnk6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 7, 53, tzinfo=datetime.timezone.utc), 2, 0.12, -73.85175, 40.693438, -73.85219, 40.694192, 'CASH', 2.5, 0.0, 0.0, 0.0, 2.5, '1705685161.48292', 'lYeFz9g+HyyBZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 20, tzinfo=datetime.timezone.utc), 1, 0.0, -74.03507, 40.637113, -74.03507, 40.637113, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'mo0uWfQ7iSrcCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.0, -73.77663, 40.645358, -73.776662, 40.64535, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'L8NxMeUjcx3KpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.03, -73.78216, 40.644782, -73.781813, 40.644808, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', '5oCBUT3zWy2GdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 56, tzinfo=datetime.timezone.utc), 1, 0.0, -73.986017, 40.743287, -73.986017, 40.743287, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'Urzz6dwaT2lT6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 53, tzinfo=datetime.timezone.utc), 5, 0.02, -73.980673, 40.72162, -73.980867, 40.721335, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'sVC8qntqfQ4wRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.0, -73.79434, 40.656137, -73.79434, 40.656137, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'YYU4BQLH+SdELQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 3, 30, tzinfo=datetime.timezone.utc), 4, 0.03, -73.909172, 40.77505, -73.909098, 40.775008, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'F7uEutiuebjyYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 12, tzinfo=datetime.timezone.utc), 2, 0.04, -73.78175, 40.644803, -73.781045, 40.645037, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'cfcdzov1kQb8JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 58, tzinfo=datetime.timezone.utc), 4, 0.14, -73.78926, 40.648057, -73.789692, 40.64941, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'OlfUoV2znDHc9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 14, tzinfo=datetime.timezone.utc), 2, 0.08, -73.978083, 40.751937, -73.979625, 40.752052, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'uGFtDPvO0NRxKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 55, tzinfo=datetime.timezone.utc), 1, 0.07, -73.95458, 40.78083, -73.955237, 40.779977, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'jt0ITV4D2HVe8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 20, tzinfo=datetime.timezone.utc), 1, 0.03, -73.971553, 40.79455, -73.971662, 40.7947, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'XOzck8cKC+geOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 24, tzinfo=datetime.timezone.utc), 1, 0.0, -73.81323, 40.697037, -73.813233, 40.697027, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'jloVw7jEosfYrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 1, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 38, tzinfo=datetime.timezone.utc), 1, 0.01, -74.092973, 40.708632, -74.09299, 40.708643, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'VoDg56nauk5vGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 22, tzinfo=datetime.timezone.utc), 1, 0.0, -74.00233, 40.733537, -74.002305, 40.733485, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'nIasUL5M6mPTQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 59, tzinfo=datetime.timezone.utc), 2, 0.0, -73.93763, 40.758227, -73.93763, 40.758225, 'CASH', 2.5, 0.5, 0.0, 0.0, 3.0, '1705685161.48292', 'Tp4/Bby8xXcwnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 49, tzinfo=datetime.timezone.utc), 1, 0.0, -73.977895, 40.752195, -73.977895, 40.752195, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'LRRtfu3ydcjWUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), 3, 0.0, -73.929332, 40.752273, -73.929345, 40.752265, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'c/FerUnuUDoxuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 12, tzinfo=datetime.timezone.utc), 2, 0.06, -73.964637, 40.76455, -73.9636, 40.764552, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'F2mG3czdQCmovQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 37, tzinfo=datetime.timezone.utc), 1, 0.0, -73.986263, 40.759165, -73.986263, 40.759165, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'RIxsxchaE8tACw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 4, tzinfo=datetime.timezone.utc), 1, 0.0, -73.962505, 40.758097, -73.962505, 40.758093, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'qwLEbwXCCTVc+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 17, tzinfo=datetime.timezone.utc), 2, 0.0, -73.928428, 40.744113, -73.928448, 40.744082, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', '1HnYwXh4mmcVMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 30, tzinfo=datetime.timezone.utc), 1, 0.01, -73.985928, 40.740753, -73.985892, 40.740805, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'SKNfd9UXeMX0kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 10, tzinfo=datetime.timezone.utc), 1, 0.0, -73.928402, 40.765478, -73.928398, 40.765472, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'nm7VtzyHU675mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 49, tzinfo=datetime.timezone.utc), 2, 0.01, -73.971525, 40.782368, -73.971562, 40.782387, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'IFqG/69eRqe56Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), 1, 0.0, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'izeP0QJMuWURCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 22, tzinfo=datetime.timezone.utc), 5, 0.02, -73.962578, 40.799778, -73.9628, 40.799498, 'CASH', 2.5, 1.0, 0.0, 0.0, 3.5, '1705685161.48292', 'RgpTMRA4ADMJ/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 54, tzinfo=datetime.timezone.utc), 1, 0.78, -74.002017, 40.7456, -73.99572, 40.738558, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'uPmR3y4kN0/kcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.6, -73.990082, 40.740702, -73.994995, 40.745612, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'MQDw4VzOkT1/mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 53, tzinfo=datetime.timezone.utc), 6, 0.89, -73.959212, 40.763702, -73.959072, 40.773277, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 's8ZLrqDE8YxQpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.28, -73.994688, 40.750477, -73.991622, 40.75116, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'eMVHKUdOslsNyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 49, tzinfo=datetime.timezone.utc), 3, 0.65, -73.980602, 40.769738, -73.976188, 40.765653, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'THT7F6XplYdrCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 46, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 52, 15, tzinfo=datetime.timezone.utc), 1, 0.1, -73.995145, 40.761198, -73.996457, 40.762366, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'C5tQK7hfV32BEw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 50, tzinfo=datetime.timezone.utc), 5, 0.88, -73.988042, 40.7647, -73.997337, 40.762263, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'gMq27OL8CGXBVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 57, tzinfo=datetime.timezone.utc), 1, 0.99, -73.981878, 40.778988, -73.980413, 40.765688, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '2tduDKyoSMdxEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 21, tzinfo=datetime.timezone.utc), 1, 0.8, -73.953008, 40.782978, -73.96244, 40.778167, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'f61Ii+bI7IFOiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 20, 4, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 8, 15, tzinfo=datetime.timezone.utc), 1, 0.7, -73.983475, 40.744179, -73.985163, 40.737306, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'WI5FtvxFLgY7tQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 47, tzinfo=datetime.timezone.utc), 5, 0.89, -73.96649, 40.762542, -73.975402, 40.752198, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PmsZX0In/lbbng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 32, tzinfo=datetime.timezone.utc), 4, 0.68, -73.97251, 40.7558, -73.979647, 40.748873, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'djp+0QaI72S7GQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 25, tzinfo=datetime.timezone.utc), 5, 0.79, -73.982218, 40.774487, -73.980508, 40.765073, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'fdG5Z69uu3Daug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 25, tzinfo=datetime.timezone.utc), 1, 0.69, -73.954805, 40.765542, -73.961705, 40.759975, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ENoXw5oS8A1+FQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 22, tzinfo=datetime.timezone.utc), 2, 0.75, -73.987563, 40.74994, -73.980068, 40.753662, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Pn7oHVtVWV/Sdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 55, tzinfo=datetime.timezone.utc), 1, 0.62, -73.985273, 40.768048, -73.983818, 40.773717, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '4GrHY9EOC2cs3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 17, tzinfo=datetime.timezone.utc), 1, 0.74, -73.975603, 40.782322, -73.982297, 40.774775, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'GplKT96jicVdyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), 1, 0.77, -73.988335, 40.749993, -73.998157, 40.75614, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '1F1AcyccN0H6jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 27, tzinfo=datetime.timezone.utc), 3, 0.92, -73.982825, 40.774942, -73.977852, 40.786732, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ti3ji8a3o9FoOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 59, tzinfo=datetime.timezone.utc), 5, 0.91, -73.945387, 40.778478, -73.953602, 40.76712, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'dLRHdy3aiEWgzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 42, tzinfo=datetime.timezone.utc), 1, 0.73, -74.010695, 40.710225, -74.004243, 40.717615, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'LThsUsMdnhoo+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 25, tzinfo=datetime.timezone.utc), 1, 0.75, -73.9851, 40.742227, -73.979795, 40.75164, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '7xMQNai/J36edw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 23, tzinfo=datetime.timezone.utc), 5, 0.55, -74.004123, 40.742672, -74.00686, 40.746323, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'XEJug8GHHpBKyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.86, -73.960062, 40.762275, -73.95336, 40.772602, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Z5jCCp1YfQqdsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 13, tzinfo=datetime.timezone.utc), 1, 0.73, -73.959172, 40.783045, -73.969462, 40.785432, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Xfd7N6R1XuNvDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 18, tzinfo=datetime.timezone.utc), 1, 0.65, -73.978232, 40.751145, -73.984658, 40.743057, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'zHyCCdSPtBq2Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 35, tzinfo=datetime.timezone.utc), 1, 0.57, -73.9806, 40.748218, -73.979162, 40.744267, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'vtmr+stu2pBNJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 6, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 2, tzinfo=datetime.timezone.utc), 2, 0.82, -73.989737, 40.734407, -73.979005, 40.736353, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '/wKVNOwqHPEXFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 51, tzinfo=datetime.timezone.utc), 1, 0.55, -73.986477, 40.759408, -73.980177, 40.754608, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '1YmxOcpZAmF21w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 52, tzinfo=datetime.timezone.utc), 1, 1.01, -73.980588, 40.75409, -73.990093, 40.742558, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'zXSxxZjrkxWa+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 48, tzinfo=datetime.timezone.utc), 1, 0.95, -73.962898, 40.758692, -73.953615, 40.770138, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '8pG5BOvF8T5+ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 26, tzinfo=datetime.timezone.utc), 1, 0.99, -74.00834, 40.714247, -74.003185, 40.727735, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'tFdjSwsoiAdVaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 49, tzinfo=datetime.timezone.utc), 5, 0.74, -73.962782, 40.76334, -73.9734, 40.76388, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ZnQkKbMP8JbQyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 1, 32, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 1, 37, 19, tzinfo=datetime.timezone.utc), 1, 0.6, -74.002788, 40.723365, -73.99555, 40.730899, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'IjN9RfGpkqO0pQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 9, tzinfo=datetime.timezone.utc), 1, 0.62, -73.973217, 40.764257, -73.977927, 40.75561, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'VrEXBYGXk+J8WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.02, -73.958947, 40.769263, -73.951508, 40.77772, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'eVk3dvsOsjMZiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.51, -73.986495, 40.742118, -73.993878, 40.746283, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ZJgzIts33IEr4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 30, tzinfo=datetime.timezone.utc), 1, 0.65, -73.97947, 40.753658, -73.972085, 40.757003, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'fOOn/MRBYchF9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 50, tzinfo=datetime.timezone.utc), 1, 1.0, -73.98192, 40.752543, -73.98993, 40.741823, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'myFFTCi9J08UtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 10, tzinfo=datetime.timezone.utc), 1, 0.34, -73.973855, 40.764605, -73.96841, 40.761923, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'kMRqDWnGE42j1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 3, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989255, 40.757338, -73.995998, 40.75368, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '4e+QrKUGNVGqlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 7, tzinfo=datetime.timezone.utc), 1, 0.86, -74.005548, 40.75155, -73.998122, 40.754772, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '1df+hIMOjaqD2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), 1, 0.52, -73.988403, 40.768997, -73.989068, 40.763182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '5NzU7pMGN01UNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 28, tzinfo=datetime.timezone.utc), 1, 0.76, -74.00566, 40.745137, -73.995307, 40.744965, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '0AqawzaPXbvUFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 7, 36, tzinfo=datetime.timezone.utc), 5, 0.77, -73.986473, 40.722435, -73.99974, 40.726967, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'vwlLq/YjT5lURg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 10, tzinfo=datetime.timezone.utc), 1, 0.92, -73.962252, 40.763113, -73.970605, 40.751508, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'RWfJ3mYrb5oFjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 44, tzinfo=datetime.timezone.utc), 1, 0.8, -73.97527, 40.75537, -73.969498, 40.76118, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '0lP21T7ej2j0uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 25, tzinfo=datetime.timezone.utc), 1, 0.59, -73.972193, 40.781442, -73.96417, 40.777582, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Pum/sisoUGqJtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 8, tzinfo=datetime.timezone.utc), 1, 1.01, -73.98239, 40.762603, -73.991627, 40.749883, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'P/LjetvQlMw0VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 36, tzinfo=datetime.timezone.utc), 1, 0.8, -73.963378, 40.777365, -73.97053, 40.767465, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '7v/bjiEZbahuAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 40, tzinfo=datetime.timezone.utc), 1, 0.6, -73.957698, 40.768383, -73.958535, 40.77462, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Now75slJ2p2X9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 58, tzinfo=datetime.timezone.utc), 1, 0.66, -73.977927, 40.762882, -73.968497, 40.760227, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Q4qxV+64iZE+NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 57, tzinfo=datetime.timezone.utc), 1, 0.78, -73.992352, 40.737595, -73.995058, 40.728865, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'XzuJ2e1z1kQsIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 51, tzinfo=datetime.timezone.utc), 1, 0.75, -73.978, 40.751827, -73.968037, 40.75221, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'MmW6RE2my4qb3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 32, tzinfo=datetime.timezone.utc), 5, 0.79, -73.98032, 40.785683, -73.9723, 40.793718, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'dm8vnhb0qaHTpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 29, tzinfo=datetime.timezone.utc), 1, 0.84, -73.983932, 40.746388, -73.979017, 40.75569, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'NTgvlO7NYATXpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 56, tzinfo=datetime.timezone.utc), 3, 0.81, -73.998225, 40.736222, -73.994363, 40.745323, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'M6yltZdxf85SHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 15, tzinfo=datetime.timezone.utc), 1, 0.93, -73.990832, 40.755415, -74.000868, 40.747395, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Xu02f3p1zOGMdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 27, tzinfo=datetime.timezone.utc), 2, 0.57, -74.002847, 40.72815, -73.998542, 40.722863, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '/toAVqQxlWADgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.73, -73.984885, 40.724228, -73.983387, 40.732635, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'rPlNKqhVK5EZBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 16, tzinfo=datetime.timezone.utc), 3, 0.92, -73.989167, 40.747953, -73.978673, 40.751248, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'VQvK0ohf9DKPsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 28, tzinfo=datetime.timezone.utc), 1, 0.72, -73.977332, 40.751875, -73.976137, 40.744393, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '6i2KDh71vXoa/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 31, tzinfo=datetime.timezone.utc), 1, 0.08, -73.988817, 40.755732, -73.98269, 40.767537, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '6eooPL1aiC1BWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 42, tzinfo=datetime.timezone.utc), 5, 0.71, -74.006337, 40.73942, -73.998643, 40.745182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'KcE2j/1G/hLZig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 14, tzinfo=datetime.timezone.utc), 2, 0.96, -73.995208, 40.74465, -74.003987, 40.733098, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'oi34qk26IhCbQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 25, tzinfo=datetime.timezone.utc), 5, 0.61, -73.96914, 40.756825, -73.961967, 40.759692, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'CzNMdk992agLDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 23, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978195, 40.729583, -73.993017, 40.735837, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'xrUG1a5XE7MqzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 10, tzinfo=datetime.timezone.utc), 1, 0.82, -73.983183, 40.766263, -73.969457, 40.76092, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Gppbifc9bCNFDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 20, tzinfo=datetime.timezone.utc), 1, 0.65, -73.961807, 40.770823, -73.96748, 40.763433, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PWSTwrkG8lUMQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 51, tzinfo=datetime.timezone.utc), 1, 1.04, -73.975795, 40.752172, -73.98551, 40.74134, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'snKtThwa9n5LQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.959442, 40.770987, -73.965422, 40.762665, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'MSdtzHYYr4iQLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 16, tzinfo=datetime.timezone.utc), 1, 0.67, -73.982077, 40.749198, -73.987113, 40.75509, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'fkgQtl8mK1/1sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 39, tzinfo=datetime.timezone.utc), 1, 0.81, -73.994935, 40.750098, -74.003758, 40.744008, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'K+jZI5C1+9c6ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 46, tzinfo=datetime.timezone.utc), 3, 0.87, -73.98656, 40.771725, -73.98049, 40.782355, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'WzytFWbJNpDPMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 55, tzinfo=datetime.timezone.utc), 1, 0.85, -73.985258, 40.758662, -73.994042, 40.751302, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'irnGlGPz0Lv7EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 16, tzinfo=datetime.timezone.utc), 1, 0.65, -73.978975, 40.77715, -73.985112, 40.769568, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '4wtrfeNFDvvnvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 43, tzinfo=datetime.timezone.utc), 1, 0.57, -74.015717, 40.711713, -74.014392, 40.70704, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'gNAey0kMdpvZ0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 21, tzinfo=datetime.timezone.utc), 1, 0.93, -73.97933, 40.735777, -73.992558, 40.74282, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '8ycbcUOedxUbrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 35, tzinfo=datetime.timezone.utc), 1, 0.81, -73.993352, 40.743752, -73.980913, 40.7436, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'USkqgmjyEawmHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 25, tzinfo=datetime.timezone.utc), 5, 0.59, -73.96322, 40.770662, -73.955935, 40.766478, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Og4HONeegoPEZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 36, tzinfo=datetime.timezone.utc), 1, 0.61, -73.98476, 40.742022, -73.985763, 40.735328, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'iuwzLfOP8tpH1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 27, tzinfo=datetime.timezone.utc), 2, 0.55, -73.96703, 40.772372, -73.958963, 40.771898, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'MuEhQvrVrPissg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 7, tzinfo=datetime.timezone.utc), 3, 0.58, -73.975712, 40.749608, -73.979743, 40.755255, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'tUGx6Gl+MLGsDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 34, tzinfo=datetime.timezone.utc), 1, 0.74, -73.958712, 40.772412, -73.958082, 40.780378, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Lmv+/Z+AdBfumg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 14, tzinfo=datetime.timezone.utc), 1, 0.78, -73.976117, 40.752005, -73.978732, 40.742808, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '/MOa18sAFWv5UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 2, tzinfo=datetime.timezone.utc), 2, 0.89, -73.952932, 40.810383, -73.962795, 40.801618, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Egg0FdI53PDfvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 10, tzinfo=datetime.timezone.utc), 1, 0.67, -73.94929, 40.812833, -73.944363, 40.819412, 'Credit', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Ko6qK2+YhgKw3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 32, tzinfo=datetime.timezone.utc), 2, 0.7, -73.98725, 40.779227, -73.978718, 40.782497, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Ox0aJCokDT88VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 23, tzinfo=datetime.timezone.utc), 1, 0.72, -73.980067, 40.767097, -73.986217, 40.756655, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'C/IDeyTcf8dOkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 6, tzinfo=datetime.timezone.utc), 1, 0.81, -73.990795, 40.755935, -73.978752, 40.756042, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '0iyIIffpRKEipw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 30, tzinfo=datetime.timezone.utc), 1, 1.03, -73.959838, 40.77967, -73.96622, 40.789613, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ar+Z5TB9WptWpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 3, tzinfo=datetime.timezone.utc), 1, 0.9, -73.998555, 40.739807, -73.99268, 40.730855, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'bhL5cWT3rt2G0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 23, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980912, 40.762103, -73.966923, 40.761118, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'zbtSQ2YWGtD7Ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.71, -74.00774, 40.742807, -74.007002, 40.751358, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 's6pjJUnVmOWvVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 21, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 16, 21, tzinfo=datetime.timezone.utc), 1, 0.6, -74.001622, 40.74656, -73.991215, 40.744583, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'puxO/ZVXWSW86Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 36, tzinfo=datetime.timezone.utc), 5, 0.49, -73.975817, 40.75749, -73.968938, 40.760935, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'diyjfPztXI27yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 53, tzinfo=datetime.timezone.utc), 1, 0.69, -73.99374, 40.741503, -74.005062, 40.746538, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'qtQ0U0pUK11ENg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 2, tzinfo=datetime.timezone.utc), 1, 0.64, -73.984972, 40.736263, -73.989435, 40.734217, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'iz2l1+q6hdGF+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 58, tzinfo=datetime.timezone.utc), 1, 0.87, -73.955347, 40.77948, -73.952557, 40.789315, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '12YAKjhWZA4llA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.76, -73.991562, 40.769962, -73.980175, 40.765693, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'F0Z/DXUsHqv1rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 5, tzinfo=datetime.timezone.utc), 2, 0.82, -73.95664, 40.778283, -73.964163, 40.76786, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'xdYDAu5g9McCwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 35, tzinfo=datetime.timezone.utc), 5, 0.3, -73.989467, 40.737358, -73.995127, 40.739188, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'VOCjvFC4BewWog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 14, tzinfo=datetime.timezone.utc), 1, 0.56, -74.009282, 40.717292, -74.00765, 40.724953, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'uo7Z/Dk6PSmieg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 55, tzinfo=datetime.timezone.utc), 1, 0.65, -73.952203, 40.772182, -73.955557, 40.764488, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'LV5WSy/npuP57g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 39, tzinfo=datetime.timezone.utc), 5, 0.49, -73.979557, 40.777638, -73.982657, 40.771578, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'WP8IPN0h5sn/Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 21, tzinfo=datetime.timezone.utc), 3, 0.76, -73.998142, 40.74116, -73.988907, 40.740708, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'YtHddOy8jmr+OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 22, tzinfo=datetime.timezone.utc), 2, 0.69, -74.010678, 40.711053, -74.003803, 40.717115, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'fp+JKTusVshLwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.84, -73.990862, 40.751237, -74.001103, 40.756865, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '9QSgbe1i2Rls7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 38, tzinfo=datetime.timezone.utc), 5, 1.07, -73.988747, 40.759122, -73.975638, 40.762575, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'qnLql7HYukvmfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 59, tzinfo=datetime.timezone.utc), 1, 0.76, -73.993312, 40.729683, -73.997888, 40.735795, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'bQIJW9JJX112oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 56, tzinfo=datetime.timezone.utc), 1, 1.08, -73.994065, 40.756835, -73.995305, 40.744942, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Zbp+4NFu8H3l3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 30, tzinfo=datetime.timezone.utc), 5, 0.7, -73.98432, 40.756862, -73.978335, 40.752642, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'J1Eth0YrSUV79w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 6, tzinfo=datetime.timezone.utc), 4, 0.82, -73.972883, 40.763825, -73.962143, 40.767815, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'eeRy0F9mcWatwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 15, tzinfo=datetime.timezone.utc), 2, 0.42, -73.999615, 40.733562, -73.993735, 40.73445, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'acdurkZzmf/XGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 23, tzinfo=datetime.timezone.utc), 1, 0.55, -73.947072, 40.784368, -73.953718, 40.787778, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'FIYnkqfV+Oh6hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 28, tzinfo=datetime.timezone.utc), 1, 0.73, -73.96604, 40.759088, -73.971985, 40.75508, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'zl5TJ4dtXqpnQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 33, tzinfo=datetime.timezone.utc), 5, 0.64, -73.985525, 40.767852, -73.975225, 40.763333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'g1Z4Axl4ChwxhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 55, tzinfo=datetime.timezone.utc), 1, 0.83, -73.973832, 40.746375, -73.971193, 40.755562, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ypqlTcJeVGwcmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 7, tzinfo=datetime.timezone.utc), 1, 0.29, -73.9644, 40.770702, -73.967102, 40.766922, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'nO+PYHPrwWJq2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 45, tzinfo=datetime.timezone.utc), 2, 0.96, -73.977467, 40.75234, -73.988005, 40.748175, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'DUnq80R54bbtRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 48, tzinfo=datetime.timezone.utc), 1, 0.64, -73.994152, 40.751157, -74.0014, 40.756388, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'n9mGvDYMOqAnIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 6, 46, tzinfo=datetime.timezone.utc), 2, 0.85, -73.9908, 40.755905, -73.982, 40.76335, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '3ytNj9xjglkIwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), 5, 0.9, -73.97233, 40.767692, -73.986075, 40.755525, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '5oEygbzZlhkvIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 56, tzinfo=datetime.timezone.utc), 1, 0.75, -73.976207, 40.7446, -73.977682, 40.736788, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PWP/LHZ5NM2adA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 7, 14, 0, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 5, 40, tzinfo=datetime.timezone.utc), 1, 0.7, -73.964934, 40.766904, -73.963407, 40.774606, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'fNX7FZW27DDgzQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 40, tzinfo=datetime.timezone.utc), 1, 0.82, -73.985562, 40.741843, -73.991935, 40.749182, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'bItrOeF4IR2RAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 1, tzinfo=datetime.timezone.utc), 5, 0.73, -74.002698, 40.739122, -74.00016, 40.747637, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'dp8k8ct990y01A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 39, tzinfo=datetime.timezone.utc), 1, 0.7, -73.976053, 40.765918, -73.968787, 40.759627, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'dGDIn+kyc020/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 30, tzinfo=datetime.timezone.utc), 1, 0.56, -73.970963, 40.751422, -73.97895, 40.754783, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'GMk012+h8uQbJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 7, 51, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 54, 49, tzinfo=datetime.timezone.utc), 1, 0.8, -73.953859, 40.766936, -73.961131, 40.756909, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'rHN/8gMK6gISMg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 56, tzinfo=datetime.timezone.utc), 5, 1.01, -73.97585, 40.749057, -73.967808, 40.760535, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '1gGVOhZmrISdRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 11, tzinfo=datetime.timezone.utc), 5, 0.56, -73.96646, 40.773163, -73.971623, 40.766063, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'yCPlXsrPrFecGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 50, tzinfo=datetime.timezone.utc), 1, 0.69, -74.010655, 40.703332, -74.004168, 40.710412, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'LwzUB9ie6p5McQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.6, -73.971885, 40.759963, -73.972272, 40.753333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'OmY7zh+gaMsiQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 24, tzinfo=datetime.timezone.utc), 5, 0.63, -73.980785, 40.753982, -73.975312, 40.752083, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Auf042bsTYERJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 23, tzinfo=datetime.timezone.utc), 5, 0.52, -73.986057, 40.740775, -73.992047, 40.744052, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'bVLVBg+fEpmgNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 4, tzinfo=datetime.timezone.utc), 1, 0.89, -73.96252, 40.77569, -73.954527, 40.787093, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PM4HXFp+VFbCWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 39, tzinfo=datetime.timezone.utc), 5, 0.7, -73.987332, 40.75041, -73.980267, 40.75855, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'AxX/ewYbY+Vz2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 56, tzinfo=datetime.timezone.utc), 5, 1.11, -73.995703, 40.743777, -74.006512, 40.744, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'jV55R745EKTDNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 42, tzinfo=datetime.timezone.utc), 5, 0.76, -73.983145, 40.767957, -73.975485, 40.776643, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Q3xPKJ8pfq+rgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 6, tzinfo=datetime.timezone.utc), 1, 0.56, -73.975043, 40.75267, -73.967088, 40.752253, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '/w5uMIMuwiEFrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 40, tzinfo=datetime.timezone.utc), 2, 0.65, -73.999742, 40.743518, -73.991147, 40.744468, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PsWPPP3Sfxr6KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 59, tzinfo=datetime.timezone.utc), 5, 0.62, -73.972687, 40.793342, -73.971125, 40.800228, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'wQ7TT91F8Z8jyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 45, tzinfo=datetime.timezone.utc), 1, 0.81, -73.946017, 40.781672, -73.956532, 40.780148, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'EbDfC8ghzLjtGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 2, tzinfo=datetime.timezone.utc), 2, 0.67, -73.99827, 40.73535, -74.000767, 40.742107, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ZtVCx45sU2odOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 8, tzinfo=datetime.timezone.utc), 1, 0.78, -73.99019, 40.751642, -73.997187, 40.742058, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'H5UbeZ0IhgT7DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 0, tzinfo=datetime.timezone.utc), 2, 0.93, -73.977903, 40.745813, -73.973922, 40.7567, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Cd+z5KMg6hlepg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 36, tzinfo=datetime.timezone.utc), 1, 0.51, -73.984922, 40.753105, -73.991333, 40.750215, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'kL9QVdvtLNHp3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 5, tzinfo=datetime.timezone.utc), 1, 0.73, -73.995048, 40.76041, -73.99998, 40.754808, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'YcIsqs38z/BNMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.9, -73.983635, 40.755097, -73.98733, 40.742763, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'RzAyB5sgAHJ3uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 6, 38, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 6, 42, 1, tzinfo=datetime.timezone.utc), 1, 0.9, -73.996611, 40.742763, -74.002299, 40.730027, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '6EHPgHsmSBgGAw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 17, tzinfo=datetime.timezone.utc), 1, 0.85, -73.997895, 40.744922, -74.006732, 40.751358, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'SJRE9eL0C+VX6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 31, tzinfo=datetime.timezone.utc), 1, 0.54, -73.952812, 40.772438, -73.959962, 40.769458, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ye8yK+uTvpAJuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 54, tzinfo=datetime.timezone.utc), 4, 0.7, -73.951987, 40.773722, -73.960438, 40.777408, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'O4jZAuvWTpMKQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 23, tzinfo=datetime.timezone.utc), 2, 0.83, -73.972587, 40.746523, -73.97028, 40.754833, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '0YdrYJ/JXvMRoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 19, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99125, 40.730065, -73.984602, 40.722497, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'J4/mIykeP8hZww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 5, tzinfo=datetime.timezone.utc), 1, 0.83, -73.974683, 40.744303, -73.98537, 40.741123, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'GDkhMv4CgaLeRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 24, tzinfo=datetime.timezone.utc), 1, 0.92, -73.973453, 40.758072, -73.973453, 40.758072, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Kgs9qeDr1K0Tvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 34, tzinfo=datetime.timezone.utc), 1, 0.65, -73.984755, 40.779223, -73.978573, 40.782333, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'ZGpvzH/qn07A0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 40, tzinfo=datetime.timezone.utc), 1, 0.61, -74.000515, 40.720827, -73.997113, 40.71472, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'bzxvnNYwyabM+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 6, tzinfo=datetime.timezone.utc), 1, 0.84, -73.987923, 40.718955, -73.975698, 40.718875, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '23QftWxmXSDIvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 59, tzinfo=datetime.timezone.utc), 2, 0.74, -73.960342, 40.766372, -73.96707, 40.758468, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Kf50wNA1efnbRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 13, tzinfo=datetime.timezone.utc), 5, 0.7, -73.992285, 40.749753, -73.985102, 40.744868, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'FXrDshQxwmXebA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 40, tzinfo=datetime.timezone.utc), 5, 0.73, -73.977802, 40.761565, -73.969682, 40.762107, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'BtvQpV9ikQ1BMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 18, tzinfo=datetime.timezone.utc), 1, 0.61, -73.980318, 40.726328, -73.983145, 40.719085, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'pvVeOBSAKaF+Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 41, tzinfo=datetime.timezone.utc), 5, 0.75, -73.97524, 40.763543, -73.984545, 40.761093, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '9SsoCTLPRjTRsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 51, tzinfo=datetime.timezone.utc), 2, 1.02, -73.951943, 40.76948, -73.959978, 40.757068, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'U0QRZsBNRDtCDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 23, tzinfo=datetime.timezone.utc), 5, 0.7, 0.0, 0.0, -73.98329, 40.771318, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'PLn5AFHfUJdxsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 30, tzinfo=datetime.timezone.utc), 1, 0.76, -73.9512, 40.785142, -73.958748, 40.777632, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'NmIfmR7XunFXTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 32, tzinfo=datetime.timezone.utc), 5, 1.13, -73.994973, 40.750173, -73.98435, 40.76074, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'JTwFeqKSYXXo6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 0, tzinfo=datetime.timezone.utc), 1, 0.76, 0.0, 0.0, -73.97171, 40.758898, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'CVrNnzBWS/Tocw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 21, tzinfo=datetime.timezone.utc), 5, 0.76, -73.969745, 40.754975, -73.961132, 40.76055, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '2cTYrUyGZ2oPrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 21, tzinfo=datetime.timezone.utc), 1, 0.83, -73.96177, 40.756802, -73.9718, 40.753872, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '3iEaCUQRRt7Trw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 35, tzinfo=datetime.timezone.utc), 5, 1.02, -73.902057, 40.763913, -73.902057, 40.763913, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'yRC6Mm2qZQoLCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 59, tzinfo=datetime.timezone.utc), 2, 0.74, -73.929867, 40.816918, -73.938153, 40.818265, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'v2im3oBDap48DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), 2, 0.5, -73.973617, 40.76458, -73.977605, 40.75912, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'w22j6SNRAZpmHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 18, 42, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 46, 12, tzinfo=datetime.timezone.utc), 1, 0.7, -73.989951, 40.736927, -74.000363, 40.737915, 'Cash', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'OX15fIWXexj9gw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 33, tzinfo=datetime.timezone.utc), 1, 0.81, -73.957988, 40.774545, -73.953743, 40.782082, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'WMitQgprWur4eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 40, tzinfo=datetime.timezone.utc), 5, 0.67, -73.937858, 40.804625, -73.938173, 40.797217, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'UTa6s/QNdzaunA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 21, tzinfo=datetime.timezone.utc), 5, 0.53, -73.97837, 40.762418, -73.981708, 40.765937, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'tWhvvgsHFs92Tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 40, tzinfo=datetime.timezone.utc), 3, 0.72, -73.992693, 40.742973, -73.992562, 40.750938, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'EJ5tXbYwaCZrew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 45, tzinfo=datetime.timezone.utc), 1, 0.75, -73.977463, 40.737407, -73.983652, 40.731517, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'dSteLhDBQFQ5KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 56, tzinfo=datetime.timezone.utc), 2, 0.79, -73.98916, 40.7215, -73.978197, 40.72077, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Cgsl7L4RWyM1wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 37, tzinfo=datetime.timezone.utc), 1, 0.79, -73.999257, 40.759638, -73.995255, 40.752953, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'HXXuXP8PfwmBUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 58, tzinfo=datetime.timezone.utc), 2, 0.76, -73.979732, 40.735087, -73.989465, 40.735278, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '+7R0yKC2lGPSkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 37, tzinfo=datetime.timezone.utc), 1, 0.65, -73.982312, 40.752992, -73.990357, 40.750983, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'GfqMonqpuU/SGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 35, tzinfo=datetime.timezone.utc), 2, 0.75, -73.997085, 40.722372, -74.003628, 40.729248, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'N5P0y/cmFvQdsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 8, tzinfo=datetime.timezone.utc), 1, 0.89, -73.986357, 40.776868, -73.977532, 40.785315, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'AElAWndva7MKBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 17, tzinfo=datetime.timezone.utc), 1, 0.82, -73.955057, 40.773285, -73.960322, 40.769637, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'rVSk/eOGGcIjwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 4, tzinfo=datetime.timezone.utc), 4, 0.78, -73.987612, 40.744443, -73.994913, 40.75018, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '2HlHwOgcBfEU4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 50, tzinfo=datetime.timezone.utc), 1, 0.85, -73.969422, 40.765945, -73.961012, 40.774887, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'HYIROPAt2ewQnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 1, tzinfo=datetime.timezone.utc), 3, 0.81, -73.966117, 40.805262, -73.971578, 40.792507, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'g7UJ11LpULjJWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 4, tzinfo=datetime.timezone.utc), 1, 0.62, -73.979165, 40.753102, -73.97319, 40.761482, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', '74LEkRJoYTaeMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 50, tzinfo=datetime.timezone.utc), 1, 0.64, -73.991795, 40.751443, -74.001593, 40.756087, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'Q3NeTTGDPapSKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 19, tzinfo=datetime.timezone.utc), 1, 1.05, -73.98986, 40.76713, -73.987477, 40.756703, 'CASH', 4.5, 0.0, 0.0, 0.0, 4.5, '1705685161.48292', 'yyvIKqawZVqjGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 28, tzinfo=datetime.timezone.utc), 3, 0.77, -73.986103, 40.750525, -73.98267, 40.75465, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'oJgzkYBkwXiwoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.85, -74.002457, 40.739808, -73.994727, 40.750395, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'bibexLlv7MoLzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 29, tzinfo=datetime.timezone.utc), 5, 0.88, -73.99801, 40.750145, -74.003755, 40.740115, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'bsRULngpdhKLcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 26, tzinfo=datetime.timezone.utc), 4, 0.79, -73.985498, 40.740258, -73.979987, 40.745017, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'jxHCsrpVFZG4zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 32, tzinfo=datetime.timezone.utc), 5, 0.99, -73.978173, 40.748665, -73.98823, 40.737858, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'TFL87Yw7GVbO0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 49, tzinfo=datetime.timezone.utc), 2, 0.73, -73.962312, 40.776197, -73.954048, 40.7798, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '7CuaharTOPo34A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 3, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 3, 5, tzinfo=datetime.timezone.utc), 1, 0.85, -73.984038, 40.729432, -73.980045, 40.739135, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'dyQ2PL39YDdg0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.73, -73.986985, 40.729187, -73.978477, 40.730952, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'FznvK8ubykHqpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 51, tzinfo=datetime.timezone.utc), 1, 0.85, -73.95195, 40.782153, -73.961467, 40.781138, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '1csLEKFCwIkm3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 1, 32, tzinfo=datetime.timezone.utc), 5, 0.99, -73.99112, 40.745353, -73.988723, 40.756055, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '9Ol6hCx2mlxong', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 1, tzinfo=datetime.timezone.utc), 3, 0.81, -74.000508, 40.742365, -74.002625, 40.73549, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'rATkubE6zb6iDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 31, tzinfo=datetime.timezone.utc), 5, 0.86, -73.958622, 40.768057, -73.965692, 40.758505, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Yj2ynY5JsukVKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 16, tzinfo=datetime.timezone.utc), 1, 0.82, -74.003965, 40.713213, -73.996677, 40.723272, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'XgyFKRRdENE6IQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 1, 3, tzinfo=datetime.timezone.utc), 5, 0.98, -73.983862, 40.727087, -73.979572, 40.737417, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'FB8ApSm9r4PJ/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 57, tzinfo=datetime.timezone.utc), 3, 1.01, -74.000545, 40.742468, -73.991285, 40.755117, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '/Dz5LPN0Z/plGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 18, tzinfo=datetime.timezone.utc), 3, 0.65, -73.978835, 40.771097, -73.978175, 40.751745, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '832amHi44Bh8Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 50, tzinfo=datetime.timezone.utc), 1, 0.78, -73.982743, 40.739283, -73.988565, 40.736975, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'c6CvWU+w+ePVXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 52, tzinfo=datetime.timezone.utc), 5, 0.66, -73.974677, 40.787342, -73.973317, 40.794448, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'C6QDknRjOqK+CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 43, tzinfo=datetime.timezone.utc), 1, 0.66, -73.956608, 40.775198, -73.961338, 40.776793, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'yOfjotLzbsXjxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 55, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989777, 40.725805, -73.987322, 40.720413, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Mb+ZxRuwAfxDQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 28, tzinfo=datetime.timezone.utc), 2, 0.94, -73.994898, 40.745485, -73.994317, 40.752747, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '/MSW5QE+RhCZ/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 0, tzinfo=datetime.timezone.utc), 1, 0.7, -73.951103, 40.724, -73.954797, 40.733457, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'QC63gQMAKlE/Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.83, -73.955852, 40.776137, -73.960333, 40.767148, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'vO7MNDWLOWq29Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 42, tzinfo=datetime.timezone.utc), 1, 1.05, -73.964668, 40.764208, -73.953263, 40.772535, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'ZxdA7AaAqasI3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.96, -73.956295, 40.773563, -73.95072, 40.781945, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'x89p+qj4N4GTzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 12, tzinfo=datetime.timezone.utc), 2, 0.62, -73.98624, 40.732735, -73.990228, 40.72574, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'l9nH1XDmmpzgcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 43, tzinfo=datetime.timezone.utc), 2, 0.64, -73.916783, 40.757955, -73.914023, 40.76511, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'rbfszYSA07ttdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 18, tzinfo=datetime.timezone.utc), 4, 0.94, -73.969875, 40.75314, -73.978433, 40.741255, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Mubdb0d+11Au0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 23, tzinfo=datetime.timezone.utc), 3, 0.51, -73.999167, 40.73927, -73.991895, 40.73524, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'IyuYg05a1e+LVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 40, tzinfo=datetime.timezone.utc), 1, 0.98, -73.998565, 40.724607, -74.007062, 40.712648, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'sOtH8G+Ls/XKtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 7, tzinfo=datetime.timezone.utc), 3, 0.67, -73.997152, 40.722168, -73.99192, 40.72993, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '0M4bN5LQeDbY7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 20, tzinfo=datetime.timezone.utc), 1, 0.83, -73.983467, 40.770948, -73.991103, 40.760447, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'eS/962YQpkfPjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 37, tzinfo=datetime.timezone.utc), 5, 0.67, -74.003875, 40.73778, -74.006725, 40.743993, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'CeijFyHWcn3Uqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 28, tzinfo=datetime.timezone.utc), 2, 0.82, -73.990827, 40.751647, -73.996738, 40.742482, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '7D3osmPu5bGl+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 18, tzinfo=datetime.timezone.utc), 2, 0.76, -73.980138, 40.754132, -73.991437, 40.758958, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'CDdTHvBSED7ebw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 25, tzinfo=datetime.timezone.utc), 1, 0.78, -73.966797, 40.803907, -73.961213, 40.81343, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'IUNCgDGV15+fOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 27, tzinfo=datetime.timezone.utc), 5, 0.69, -73.985228, 40.744668, -73.991353, 40.75012, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'XnTJH6P/uvHLvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 26, tzinfo=datetime.timezone.utc), 4, 0.63, -73.985325, 40.759905, -73.976373, 40.756767, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Q30anusQrRExzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 57, tzinfo=datetime.timezone.utc), 1, 0.87, -73.983808, 40.743165, -73.983808, 40.743165, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'jAixt2LyLYScnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 53, tzinfo=datetime.timezone.utc), 1, 0.77, -73.979363, 40.74251, -73.981018, 40.74847, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '5hcpi0NpThtwWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 16, tzinfo=datetime.timezone.utc), 5, 0.88, -73.993457, 40.741573, -74.002578, 40.733838, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'j7JPK1jf+R84vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 4, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 4, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.988808, 40.726898, -74.002015, 40.728165, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'BUF1S11ntwhs3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 5, 51, tzinfo=datetime.timezone.utc), 1, 0.95, -73.998862, 40.73979, -73.999562, 40.728575, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'dsbkUwpZ8Yf6Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 5, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 5, 35, tzinfo=datetime.timezone.utc), 1, 0.87, -73.966488, 40.764847, -73.96312, 40.774875, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '5v+mP0YrzDxYOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 59, tzinfo=datetime.timezone.utc), 5, 0.86, -73.963003, 40.674525, -73.971295, 40.671322, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '/mRM681FjPTW5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 47, tzinfo=datetime.timezone.utc), 2, 0.69, -74.006665, 40.718472, -74.009027, 40.710975, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Q5ELSOJWitBqdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 13, tzinfo=datetime.timezone.utc), 2, 0.08, -73.983827, 40.75306, -73.990828, 40.750422, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'jqp36n6ALIkPiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 54, tzinfo=datetime.timezone.utc), 1, 0.76, -73.982207, 40.731228, -73.991485, 40.727402, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'fO1U5iJnbnH5Qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.97, -73.987112, 40.750228, -73.978265, 40.762287, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '9pO9JXshabcBpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 59, tzinfo=datetime.timezone.utc), 2, 0.86, -74.00413, 40.731068, -73.99636, 40.737108, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '5aXs9H8VVlHwfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 23, tzinfo=datetime.timezone.utc), 5, 0.52, -73.98093, 40.74438, -73.98877, 40.748437, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'OumeIr0p+YWb8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 57, tzinfo=datetime.timezone.utc), 2, 0.72, -73.988837, 40.721482, -73.978895, 40.723898, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'GkshKLFadRc8ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 23, tzinfo=datetime.timezone.utc), 1, 0.71, -73.985248, 40.747722, -73.978207, 40.75199, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'ou6JKj8fefd2GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 6, tzinfo=datetime.timezone.utc), 1, 0.54, -73.993568, 40.67267, -73.987283, 40.668087, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'V7qXQl7GG5PZlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 42, tzinfo=datetime.timezone.utc), 1, 0.78, -73.974042, 40.76253, -73.983827, 40.763307, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'MbYy5RIIwWLNiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 32, tzinfo=datetime.timezone.utc), 1, 1.0, -73.961235, 40.780992, -73.974627, 40.783205, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'yz4ECfW7QVHtiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 5, 46, tzinfo=datetime.timezone.utc), 2, 0.69, -73.954497, 40.7782, -73.944825, 40.778983, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'u8BqeckRze8s8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 6, tzinfo=datetime.timezone.utc), 1, 0.78, -73.981843, 40.75253, -73.987002, 40.74269, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Vj1dExnhXzW6XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 33, tzinfo=datetime.timezone.utc), 3, 0.83, -73.964758, 40.772687, -73.953997, 40.775455, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'h90oJ1okKOyTdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.01, -73.94805, 40.782823, -73.941197, 40.790135, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'lxy82RZKhqDBAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 24, tzinfo=datetime.timezone.utc), 5, 0.86, -74.0114, 40.710043, -74.009935, 40.720072, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'VXABEFcuJpI8sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 40, tzinfo=datetime.timezone.utc), 5, 0.9, -73.982073, 40.739885, -73.988555, 40.74787, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'rHUiakV/yWXX4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 3, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 3, 8, tzinfo=datetime.timezone.utc), 1, 0.71, -73.972037, 40.765713, -73.973885, 40.76428, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'jXSwx42vXpdqQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 4, tzinfo=datetime.timezone.utc), 5, 1.02, -73.955707, 40.772718, -73.96596, 40.762418, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'GTKQopfCQ4Q8XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 26, tzinfo=datetime.timezone.utc), 2, 0.83, -73.957517, 40.785455, -73.949185, 40.778462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '/qXqA/gVqTpy5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 36, tzinfo=datetime.timezone.utc), 1, 0.95, -73.990365, 40.719088, -73.982837, 40.730802, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'OB1QZYWjwUl48Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 35, tzinfo=datetime.timezone.utc), 1, 0.69, -74.000963, 40.73177, -73.999237, 40.727678, 'Credit', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'xCEnT8koFizpRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 7, tzinfo=datetime.timezone.utc), 3, 0.77, -73.958453, 40.815738, -73.965427, 40.805998, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'F8Fl2xB404abRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 11, tzinfo=datetime.timezone.utc), 1, 0.75, -73.967968, 40.765302, -73.957547, 40.765688, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Aw22WhVE0/C1cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 25, tzinfo=datetime.timezone.utc), 5, 0.92, -73.967635, 40.791345, -73.975142, 40.794787, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Li5GvqW6vGKH6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 8, tzinfo=datetime.timezone.utc), 1, 0.85, -73.985628, 40.727077, -73.992785, 40.731568, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'aquqQo6rtQJMgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 58, tzinfo=datetime.timezone.utc), 3, 0.77, -73.978527, 40.762917, -73.986457, 40.756878, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'GGe7xPnOAgaqoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 37, tzinfo=datetime.timezone.utc), 2, 0.67, -74.00151, 40.739382, -73.994547, 40.741178, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '7iev5GtJrb2tTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 31, tzinfo=datetime.timezone.utc), 1, 0.92, -73.99689, 40.737247, -74.008127, 40.744692, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'OtT27D3+O6oLSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 4, tzinfo=datetime.timezone.utc), 2, 0.65, -73.985093, 40.738742, -73.985898, 40.745405, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'gwtgM27/2AdGUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 25, tzinfo=datetime.timezone.utc), 4, 0.79, -74.00267, 40.73388, -74.005282, 40.740048, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'ysdSFggMgaIQvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 49, tzinfo=datetime.timezone.utc), 1, 0.89, -74.007192, 40.743345, -74.000413, 40.735215, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '2Wev6t+IlfgbDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 10, tzinfo=datetime.timezone.utc), 2, 0.86, -73.953322, 40.782562, -73.956035, 40.772785, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Cp8yo9DgN8dZGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 7, tzinfo=datetime.timezone.utc), 1, 1.13, -73.962243, 40.762025, -73.948495, 40.774363, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'fAhOTpI6Q57bog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 48, tzinfo=datetime.timezone.utc), 1, 0.77, -73.961758, 40.76954, -73.953785, 40.769603, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'H6sOv4cGXYXWmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 52, tzinfo=datetime.timezone.utc), 1, 0.83, -73.991757, 40.735275, -74.00558, 40.741037, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'g1NwCAuhQS8ctQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 54, tzinfo=datetime.timezone.utc), 2, 0.83, -73.97591, 40.755248, -73.970278, 40.763432, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'X30W4ueMtN3zog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 44, tzinfo=datetime.timezone.utc), 1, 0.77, -73.982828, 40.76105, -73.991422, 40.750325, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '1yjwlE0V00teTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 25, tzinfo=datetime.timezone.utc), 3, 1.02, -73.977548, 40.754867, -73.965135, 40.760147, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'razqN6ilnzUe6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 25, tzinfo=datetime.timezone.utc), 1, 0.81, -73.975207, 40.75601, -73.989057, 40.757862, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'aPbTRIvtJUeXBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 13, tzinfo=datetime.timezone.utc), 1, 0.56, -73.989877, 40.734275, -73.983262, 40.734462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 's9sIxKbGgw4dMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 12, tzinfo=datetime.timezone.utc), 1, 0.89, -74.000728, 40.746188, -73.986398, 40.740273, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'A3mD4y68YcYsfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 10, tzinfo=datetime.timezone.utc), 1, 0.89, -74.004493, 40.72412, -74.006213, 40.734268, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Y6O28/8KTgXV+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 8, tzinfo=datetime.timezone.utc), 3, 0.77, -73.986635, 40.76201, -73.992072, 40.769462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Ab5Oh29luWhQVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.89, -73.989585, 40.736008, -73.99869, 40.72976, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'mPxJAgwr8PNIMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 37, tzinfo=datetime.timezone.utc), 4, 0.87, -73.981283, 40.763002, -73.978535, 40.75581, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'oS1d+n8TD7U8dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), 2, 0.66, -73.980037, 40.775397, -73.988387, 40.779355, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'BsGnSCnwzz66Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 6, tzinfo=datetime.timezone.utc), 1, 0.8, -73.979772, 40.759662, -73.991698, 40.748937, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '18oMZdJu8MclYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 27, tzinfo=datetime.timezone.utc), 1, 0.68, -73.991867, 40.72719, -73.98245, 40.727937, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'n6RYn2s4jyudjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.85, -73.994612, 40.726042, -73.98878, 40.736852, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '1y15QO7rxyG/Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.72, -74.005515, 40.741102, -74.002188, 40.745475, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '3y3qhIqIAnRkBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 31, tzinfo=datetime.timezone.utc), 1, 0.95, -73.983212, 40.767033, -73.991557, 40.757922, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'qjlr64oDV0YXZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 17, tzinfo=datetime.timezone.utc), 5, 0.83, -74.004378, 40.742327, -74.00212, 40.75062, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'nWm2WX5XQ26kzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 17, tzinfo=datetime.timezone.utc), 1, 0.83, -73.992683, 40.742925, -74.003377, 40.748118, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'CMd1mTJdBKMzBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 26, tzinfo=datetime.timezone.utc), 1, 0.82, -74.004523, 40.717788, -74.008088, 40.71734, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'OXD+HtV4/nmiwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 15, tzinfo=datetime.timezone.utc), 3, 0.94, -73.98341, 40.738655, -73.980545, 40.746745, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'MAvO7B6VCgq7bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 0, tzinfo=datetime.timezone.utc), 5, 0.79, -73.991873, 40.726187, -74.000585, 40.733242, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Ms43ib2nAunb2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 38, tzinfo=datetime.timezone.utc), 2, 1.0, -73.960233, 40.76648, -73.948802, 40.773513, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'qJmcQZ4AjUaoFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 17, tzinfo=datetime.timezone.utc), 2, 0.79, -73.999485, 40.733572, -74.008735, 40.738222, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'A7bP81O499AW+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 31, tzinfo=datetime.timezone.utc), 3, 0.56, -73.987567, 40.749667, -73.979405, 40.745598, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'zpDPgJSA50oqZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 59, tzinfo=datetime.timezone.utc), 1, 0.59, -73.991475, 40.727102, -73.998433, 40.724567, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '8ZVUAalVfLvm1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 23, tzinfo=datetime.timezone.utc), 3, 0.85, -73.985535, 40.754708, -73.980077, 40.746638, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'Dk44/4r6WfBuTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 1, tzinfo=datetime.timezone.utc), 4, 0.87, -73.988993, 40.759913, -73.98064, 40.770833, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'EqYjNmmVxDI8CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 43, tzinfo=datetime.timezone.utc), 1, 0.89, -73.97584, 40.760047, -73.983757, 40.752037, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'KaL2Qq6voh5tqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 51, tzinfo=datetime.timezone.utc), 1, 0.87, -73.982877, 40.767515, -73.986017, 40.757758, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'X3BEqrXkyG1MTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 15, tzinfo=datetime.timezone.utc), 1, 0.71, -73.981593, 40.744388, -73.98682, 40.73636, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'rPRmHH///KRz0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 18, tzinfo=datetime.timezone.utc), 2, 0.74, -73.952447, 40.781245, -73.955032, 40.77331, 'Credit', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'I208PtPd488O0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 26, tzinfo=datetime.timezone.utc), 1, 0.89, -73.993867, 40.746482, -73.998028, 40.736117, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'McIUclawMcNSnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 21, tzinfo=datetime.timezone.utc), 5, 0.67, -73.985193, 40.738875, -73.986797, 40.731462, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'ttAY1TenaVkpqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 4, tzinfo=datetime.timezone.utc), 1, 0.56, -73.984507, 40.748303, -73.975097, 40.744432, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', '3n+xT0YW70+uyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 12, tzinfo=datetime.timezone.utc), 1, 0.66, -73.952797, 40.780568, -73.9513, 40.787615, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'LfH2+QQr2WJZxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 18, tzinfo=datetime.timezone.utc), 1, 0.53, -74.000467, 40.727223, -73.99979, 40.73347, 'CASH', 4.5, 0.5, 0.0, 0.0, 5.0, '1705685161.48292', 'cxnAwsCm7tZmgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.57, -73.97007, 40.75727, -73.965395, 40.763517, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'qeqe+lGlmDYrgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 12, tzinfo=datetime.timezone.utc), 1, 0.51, -73.957393, 40.78218, -73.950063, 40.7801, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'Vx9WT1lrZNHjkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 46, tzinfo=datetime.timezone.utc), 1, 0.66, -73.982987, 40.766413, -73.982897, 40.77508, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'SaVEZ/sLjduxxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978445, 40.741232, -73.98667, 40.72992, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'HPQcu5Hrk0BgSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 32, tzinfo=datetime.timezone.utc), 1, 0.88, -74.003607, 40.722438, -73.99936, 40.733815, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'kX7R96t5DtIinQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 15, tzinfo=datetime.timezone.utc), 1, 0.94, -73.98374, 40.740938, -73.992565, 40.732945, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'wuyRbHrmQWplYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 28, tzinfo=datetime.timezone.utc), 2, 0.6, -73.965163, 40.759375, -73.972945, 40.757758, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '1SUDeVf02bNRnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 28, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99006, 40.761852, -74.00014, 40.761623, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'wB7Xm1TimXdBdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.59, -73.996523, 40.753125, -73.993792, 40.747392, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'ufnLx6U7HuGjyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 33, tzinfo=datetime.timezone.utc), 1, 0.83, -73.937298, 40.759707, -73.937298, 40.759707, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'tlZCazIqBsyK6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 35, tzinfo=datetime.timezone.utc), 2, 0.6, -74.004223, 40.725577, -73.998457, 40.724735, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '9gWLeiR3BH+p3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 19, tzinfo=datetime.timezone.utc), 1, 0.88, -74.0021, 40.740435, -73.99517, 40.749795, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'AjkSzf7rNMazpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 56, tzinfo=datetime.timezone.utc), 2, 0.61, -73.9634, 40.758583, -73.970495, 40.754957, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'wDPK79StiaUHvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 47, tzinfo=datetime.timezone.utc), 4, 0.76, -73.991922, 40.744035, -73.993417, 40.751598, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'O0lduXNxT++yNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 24, tzinfo=datetime.timezone.utc), 2, 0.91, -73.942118, 40.75281, -73.941575, 40.755292, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'vBcXyT+mx2dRoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 48, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99233, 40.729157, -73.999302, 40.725105, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'g9CMIH0TTaZkBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 48, tzinfo=datetime.timezone.utc), 4, 0.78, -73.981445, 40.755507, -73.972987, 40.761252, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'RRmiF9O8/byxNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 16, tzinfo=datetime.timezone.utc), 1, 0.73, -74.004732, 40.730985, -73.99835, 40.724775, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'nR8cr2ovZxGczQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 17, tzinfo=datetime.timezone.utc), 1, 0.45, -73.981683, 40.768095, -73.985688, 40.767045, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '4K8BXrluCdRq6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 53, tzinfo=datetime.timezone.utc), 5, 0.66, -73.97698, 40.750032, -73.971223, 40.74491, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'gFa4nA8/d3tlMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 35, tzinfo=datetime.timezone.utc), 5, 0.7, -73.989237, 40.76883, -73.986707, 40.763365, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '0nBODwDYLcQOSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 11, tzinfo=datetime.timezone.utc), 1, 0.89, -73.982833, 40.751237, -73.988797, 40.742147, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '0+VshHwQ9Ghhrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 28, tzinfo=datetime.timezone.utc), 1, 0.94, -73.994655, 40.755957, -74.004158, 40.7466, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'a5ZemlRUaanPDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 50, tzinfo=datetime.timezone.utc), 1, 0.62, -73.980335, 40.743815, -73.981412, 40.75117, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '8nOe1JqUzk5RIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.95, -73.984042, 40.725317, -73.98932, 40.734235, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '5uBO2peX1rwJqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 57, tzinfo=datetime.timezone.utc), 5, 1.03, -73.985272, 40.778473, -73.977487, 40.787873, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'JISvwtWkBZNV7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 26, tzinfo=datetime.timezone.utc), 5, 0.91, -73.990915, 40.734898, -73.998517, 40.723182, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'uNnWTX2EhJGtGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 16, tzinfo=datetime.timezone.utc), 1, 0.87, -74.022657, 40.790788, -74.020958, 40.787367, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '+OAjqxPm5Livgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 3, tzinfo=datetime.timezone.utc), 1, 0.91, -73.953097, 40.783087, -73.961672, 40.772742, 'Credit', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '1z2jtVfKfgGdaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 11, tzinfo=datetime.timezone.utc), 1, 0.79, -73.988138, 40.74912, -73.98621, 40.758283, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'QXlnHkX/p/X4ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), 2, 0.49, -73.97504, 40.756715, -73.966023, 40.754045, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'mlmvFggXqLiong', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 41, tzinfo=datetime.timezone.utc), 1, 0.64, -73.954313, 40.781008, -73.962282, 40.778882, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'UEbM03S7+EzkKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 38, tzinfo=datetime.timezone.utc), 1, 0.72, -73.98209, 40.778547, -73.982247, 40.76835, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'eFZzLvbUa0mBSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 40, tzinfo=datetime.timezone.utc), 2, 0.81, -73.980553, 40.780118, -73.975068, 40.78997, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'DZc1p6IlfNQ3rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 19, tzinfo=datetime.timezone.utc), 3, 0.77, -73.96249, 40.758823, -73.954877, 40.767192, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'm0LUMAMyGxD2yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 11, tzinfo=datetime.timezone.utc), 5, 0.76, -73.97572, 40.755592, -73.968867, 40.762027, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'UtctfxJJxs77rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 1, tzinfo=datetime.timezone.utc), 1, 0.57, -73.99639, 40.73174, -74.005927, 40.733082, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'euhlJunD5a87Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 6, tzinfo=datetime.timezone.utc), 1, 0.48, -73.974645, 40.790778, -73.970303, 40.796945, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'Xmy2k1gkq/KEFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 35, tzinfo=datetime.timezone.utc), 1, 0.65, -73.98624, 40.726247, -73.99299, 40.727955, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '4upkjWr6UhNK8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 55, tzinfo=datetime.timezone.utc), 1, 0.57, -73.966093, 40.764885, -73.966307, 40.758875, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'm0kPTUHKQjHXbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.05, -74.005097, 40.719143, -73.999827, 40.733417, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'I7gD0BTfVLL51w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 29, tzinfo=datetime.timezone.utc), 1, 0.49, -73.992885, 40.724357, -73.990373, 40.730872, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'bIS0ebFtVga5Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 59, tzinfo=datetime.timezone.utc), 5, 0.55, -73.957813, 40.78217, -73.951622, 40.783675, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'N9H9a2ExT8W8PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.85, -73.966393, 40.753392, -73.95773, 40.761375, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '5GXx5i9mRMhqPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), 5, 0.66, -73.98812, 40.737768, -73.996908, 40.74257, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '4a7q9yYdXayd3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 5, tzinfo=datetime.timezone.utc), 5, 0.74, -73.980957, 40.779243, -73.984492, 40.770028, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '8Ur4YUYw9OfA3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 30, tzinfo=datetime.timezone.utc), 1, 0.44, -73.993713, 40.73577, -73.993713, 40.73577, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'iXAi7MD7XWVEFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 24, tzinfo=datetime.timezone.utc), 1, 0.5, -73.959963, 40.77341, -73.952313, 40.76976, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '2lFvZZnJwdrPVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 52, tzinfo=datetime.timezone.utc), 5, 0.76, -73.988127, 40.779587, -73.982368, 40.773053, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'BMLn0QlaZ8PZ6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 17, tzinfo=datetime.timezone.utc), 1, 0.77, -73.959647, 40.776885, -73.96633, 40.767813, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'lRc9qnBSYrJbyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 6, tzinfo=datetime.timezone.utc), 1, 0.65, -73.982907, 40.756443, -73.979543, 40.749673, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '+3HEt2aPrVLXYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 30, tzinfo=datetime.timezone.utc), 1, 0.72, -73.972637, 40.762522, -73.968298, 40.768977, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', '0ZBT0h3ETJqvzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 17, tzinfo=datetime.timezone.utc), 1, 0.94, -73.994207, 40.757293, -73.994338, 40.760798, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'yxdpI3FEN/vYaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.89, -73.971438, 40.797862, -73.967035, 40.789353, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'R9NHQtX0twOpCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 50, tzinfo=datetime.timezone.utc), 2, 0.82, -73.972572, 40.755845, -73.962597, 40.755577, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'n4tV6l8ih8wNVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 25, tzinfo=datetime.timezone.utc), 2, 0.79, -73.984053, 40.764397, -73.982207, 40.773978, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'wZGv1YLSnQwGHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 31, tzinfo=datetime.timezone.utc), 5, 0.61, -73.94747, 40.779972, -73.955457, 40.779993, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'BLHeF1eDx2jEFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99506, 40.755182, -73.996457, 40.744427, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'suORPS0ZbqesvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), 1, 0.99, -73.97812, 40.752558, -73.984202, 40.740322, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'PEZZLEc4zE877Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 16, tzinfo=datetime.timezone.utc), 1, 1.01, -73.953485, 40.786908, -73.959177, 40.776813, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'K/9XIZtuv1Uddg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 41, tzinfo=datetime.timezone.utc), 2, 0.64, -73.988165, 40.761527, -73.98075, 40.76548, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'I7dRlA5rgO4Wjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 10, tzinfo=datetime.timezone.utc), 3, 0.71, -73.9535, 40.777143, -73.954663, 40.769633, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'Hiyg1YkQQdPpxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 59, tzinfo=datetime.timezone.utc), 2, 0.97, -73.95805, 40.776238, -73.967558, 40.76528, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'hV/te9Vwx8JC1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 58, tzinfo=datetime.timezone.utc), 1, 0.66, -73.974845, 40.787842, -73.96909, 40.79601, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'Fhn3l1vFL4dC1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 12, tzinfo=datetime.timezone.utc), 5, 0.85, -73.989703, 40.741715, -73.991257, 40.750533, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'EAovohCQVHuqrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 10, tzinfo=datetime.timezone.utc), 1, 0.79, -73.974835, 40.752462, -73.982605, 40.7427, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'I5xKqI4jgzH+Qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 21, tzinfo=datetime.timezone.utc), 5, 0.86, -73.961187, 40.76916, -73.95809, 40.77884, 'CASH', 4.5, 1.0, 0.0, 0.0, 5.5, '1705685161.48292', 'kQ+FfzBORc9q/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 50, tzinfo=datetime.timezone.utc), 1, 1.19, -73.962228, 40.779167, -73.968903, 40.763553, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '6V2DOoenDPSWcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 45, tzinfo=datetime.timezone.utc), 3, 1.33, -73.970562, 40.789992, -73.982075, 40.777078, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JZNPxR5oOUiJ7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.35, -73.992078, 40.759283, -73.978987, 40.759467, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cu5baPLeZsZFDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 17, tzinfo=datetime.timezone.utc), 2, 1.58, -73.98601, 40.752072, -73.968783, 40.764107, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '+yHYywH4/ObFgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 5, tzinfo=datetime.timezone.utc), 1, 1.2, -73.966488, 40.753403, -73.972882, 40.764858, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'iGwpxgl0Gd91kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 40, tzinfo=datetime.timezone.utc), 5, 1.17, -73.991773, 40.726523, -73.984812, 40.715342, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'xWEW6/G9ZsJhiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.25, -74.000625, 40.720992, -74.013595, 40.707848, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'H/bs90kyotDZMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 28, tzinfo=datetime.timezone.utc), 4, 1.52, -74.006408, 40.737402, -74.00703, 40.753647, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '7SjlMYt/lwjKCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.08, -73.97295, 40.763572, -73.985823, 40.756567, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'SvY3ms8QbUHxRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 13, 3, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 27, 23, tzinfo=datetime.timezone.utc), 2, 1.3, -74.006522, 40.739361, -74.005957, 40.727126, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '6VQJ3uLbNpZF2Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 15, tzinfo=datetime.timezone.utc), 1, 1.08, -73.963455, 40.774415, -73.952757, 40.768325, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'P2aWwS0UzQ6p5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 56, tzinfo=datetime.timezone.utc), 5, 1.0, -73.990783, 40.734718, -74.00205, 40.738265, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '1ppwOd5i3Q4mcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.59, -73.95763, 40.779695, -73.961715, 40.76198, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'A+xd+667TcRU0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 28, tzinfo=datetime.timezone.utc), 4, 1.85, -73.978765, 40.772163, -73.956965, 40.77853, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '4LivpZJiZ2kvvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 38, tzinfo=datetime.timezone.utc), 2, 1.6, -74.003335, 40.730018, -73.991632, 40.74897, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'uhFxcPTagXv2gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 57, tzinfo=datetime.timezone.utc), 2, 1.45, -73.969855, 40.789658, -73.964422, 40.77473, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'rBcCmuvYBk1khg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 38, tzinfo=datetime.timezone.utc), 5, 2.0, -73.979653, 40.786377, -73.98178, 40.779833, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'tBOsULb/YQy3CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 35, tzinfo=datetime.timezone.utc), 5, 1.42, -73.99081, 40.739747, -74.004933, 40.729862, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '2XPgZ4lBZC9Hkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 14, tzinfo=datetime.timezone.utc), 1, 1.49, -73.986253, 40.75204, -73.985212, 40.768072, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'zxd42Mx1S8h3Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 37, tzinfo=datetime.timezone.utc), 2, 1.61, -73.977732, 40.750187, -73.99273, 40.732967, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Sro7Rjrwlz0oww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 46, tzinfo=datetime.timezone.utc), 1, 1.57, -73.95974, 40.76266, -73.956538, 40.77988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cJayzcAFKRu1Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.03, -73.977362, 40.77443, -73.979753, 40.763037, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'YLaeUv0ZHTxmYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 27, tzinfo=datetime.timezone.utc), 2, 1.26, -73.98951, 40.752852, -74.004603, 40.744555, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cRajlhVJ91EM4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 11, tzinfo=datetime.timezone.utc), 1, 0.7, -73.969093, 40.755978, -73.969093, 40.755978, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Ze8I6cnfNLN3pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.2, -73.983108, 40.74916, -73.976802, 40.758683, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VrwiHKsfjCyflg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 38, tzinfo=datetime.timezone.utc), 5, 0.97, -73.985687, 40.755927, -73.97684, 40.756358, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'FLWgyfVTJY/xWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.42, -73.974485, 40.778243, -73.977658, 40.792393, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ZOtUhQ0iVjY4KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 31, tzinfo=datetime.timezone.utc), 2, 1.49, -73.983742, 40.765475, -73.965067, 40.772335, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Z6+x9n4YCDH6cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 42, tzinfo=datetime.timezone.utc), 5, 0.98, -73.969812, 40.759597, -73.963365, 40.77142, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'TfA78KrPcfeZyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 47, tzinfo=datetime.timezone.utc), 1, 1.78, -73.97175, 40.762627, -73.955193, 40.785988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'd0AF9U/i9cIirA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 33, tzinfo=datetime.timezone.utc), 1, 1.58, -73.963012, 40.772142, -73.974277, 40.753407, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'jSJYgzIC10pSDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 9, tzinfo=datetime.timezone.utc), 1, 1.26, -73.977867, 40.783757, -73.958677, 40.77476, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'MbwnvPgSfGMb4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 17, tzinfo=datetime.timezone.utc), 5, 0.62, -73.971488, 40.766098, -73.978557, 40.761147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'mbdxTC4JUJid8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 20, tzinfo=datetime.timezone.utc), 6, 0.69, -73.955302, 40.773563, -73.958453, 40.780025, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Y7KxmQPBHyTk5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 23, tzinfo=datetime.timezone.utc), 5, 1.43, -73.992233, 40.758982, -74.005495, 40.741108, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'I6fkQlPoi2GvDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 21, tzinfo=datetime.timezone.utc), 2, 1.67, -73.974838, 40.753362, -73.96321, 40.774183, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'qeH/plMW5yObYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 52, tzinfo=datetime.timezone.utc), 2, 1.28, -73.972718, 40.756428, -73.986332, 40.749128, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'uGKdKp1dUXq6kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 0, tzinfo=datetime.timezone.utc), 1, 1.36, -74.005242, 40.736535, -74.009813, 40.720175, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '1c5xWNXjPBZnnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 10, tzinfo=datetime.timezone.utc), 6, 1.13, -73.97286, 40.75878, -73.981627, 40.745013, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'tQgXti29k5mXgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 26, tzinfo=datetime.timezone.utc), 1, 1.44, -73.979933, 40.757908, -73.96436, 40.748643, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Be5Aoz0Y6Q6kVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 51, tzinfo=datetime.timezone.utc), 6, 0.92, -73.980557, 40.753557, -73.976673, 40.76516, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'bDnb87uL0Hp5hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 0, tzinfo=datetime.timezone.utc), 5, 2.02, -73.997655, 40.736262, -73.979527, 40.76103, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'GVKoqZNFOmhOfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 9, tzinfo=datetime.timezone.utc), 2, 1.74, -73.970515, 40.793762, -73.978323, 40.773988, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'WjflLL3iJp1DdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 15, tzinfo=datetime.timezone.utc), 2, 1.44, -73.994288, 40.746182, -73.985205, 40.760367, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cSeB9MvO1VLwoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 11, tzinfo=datetime.timezone.utc), 5, 1.48, -73.91249, 40.746018, -73.891078, 40.746152, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'MNNzZ9qTol0/+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 45, tzinfo=datetime.timezone.utc), 1, 1.18, -73.977788, 40.762187, -73.984663, 40.748357, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '/vR2HGAJAEeTRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 45, tzinfo=datetime.timezone.utc), 1, 1.02, -73.989927, 40.734828, -74.005313, 40.738757, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Ed2oA0IO4nClZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 45, tzinfo=datetime.timezone.utc), 1, 1.5, -73.953628, 40.76731, -73.968808, 40.757562, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'eZOZ6Pne6eRPQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 36, tzinfo=datetime.timezone.utc), 5, 1.67, -73.96174, 40.776583, -73.968158, 40.79119, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '5w8vul/7xPFAIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 40, tzinfo=datetime.timezone.utc), 1, 1.28, -74.00083, 40.731645, -74.009837, 40.720108, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'PMIlI46M3J1g/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 41, tzinfo=datetime.timezone.utc), 1, 1.8, -73.970553, 40.752695, -73.986498, 40.730125, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'SYeo+FZ7fMbmBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 16, 4, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 13, 18, tzinfo=datetime.timezone.utc), 1, 1.2, -73.953965, 40.779213, -73.955141, 40.767579, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'XTToEAyTHrqg1Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 48, tzinfo=datetime.timezone.utc), 5, 1.52, -73.996417, 40.744463, -73.991273, 40.728408, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Aguu72Kawv84lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 29, tzinfo=datetime.timezone.utc), 3, 1.47, -74.01501, 40.70923, -74.00991, 40.703327, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ptLFY/AKd2KjOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 40, tzinfo=datetime.timezone.utc), 2, 1.73, -73.97753, 40.763908, -73.961327, 40.779418, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'KRwoI4gIHXf4iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 1, tzinfo=datetime.timezone.utc), 1, 1.21, -74.008145, 40.744903, -73.99132, 40.745248, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Mkg8p+5IgHHjCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 27, tzinfo=datetime.timezone.utc), 3, 1.12, -73.974243, 40.784825, -73.96721, 40.798398, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ykywWJxenkMnrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.32, -73.974042, 40.783998, -73.98617, 40.776657, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'SHMG+cC5nO+U9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 19, tzinfo=datetime.timezone.utc), 5, 1.0, -73.982503, 40.745553, -73.976463, 40.757, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'GvTk+DMUI3+hSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 24, tzinfo=datetime.timezone.utc), 1, 1.19, -73.976438, 40.765008, -73.989905, 40.758618, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'NBjMqcTvYHm80g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.18, -73.980543, 40.763555, -73.991773, 40.749693, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JzP9Btd301e2mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 52, tzinfo=datetime.timezone.utc), 2, 1.53, -73.996155, 40.74331, -74.002463, 40.724875, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'mLAIiyMjvyzObg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), 1, 1.66, -73.962412, 40.767483, -73.952008, 40.781237, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'xWXuKahxVNrlxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 53, tzinfo=datetime.timezone.utc), 5, 0.92, -73.96811, 40.767103, -73.967212, 40.75758, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'J0ZdcWosoIeDpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 8, 25, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 34, 59, tzinfo=datetime.timezone.utc), 1, 1.2, -73.989402, 40.767882, -73.970083, 40.759715, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cslaPHdrAlBE/g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 8, tzinfo=datetime.timezone.utc), 5, 1.72, -73.976397, 40.743997, -73.989503, 40.7231, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'A3Ek03kAlqrcrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 29, tzinfo=datetime.timezone.utc), 1, 1.83, -73.990593, 40.755905, -73.970565, 40.767488, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'yAhQUxjrW8B54w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 35, tzinfo=datetime.timezone.utc), 2, 1.29, -73.998345, 40.740627, -74.009773, 40.737702, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '0O9RqlQdsad3eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 41, tzinfo=datetime.timezone.utc), 1, 0.83, -73.97332, 40.763122, -73.979145, 40.75869, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'KHFM3f4OVsbtKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.43, -73.98858, 40.74826, -74.001257, 40.756378, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'gbf58nDl16zT6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.58, -73.955067, 40.783277, -73.973218, 40.790197, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'W+2WDwYqfu/Pug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.37, -73.977198, 40.789858, -73.976823, 40.775202, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '8pw1mYpyY4hKfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 22, tzinfo=datetime.timezone.utc), 1, 1.65, -74.000728, 40.747338, -73.980445, 40.75194, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'yQZP0Ieu0TpCOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 12, tzinfo=datetime.timezone.utc), 1, 1.36, -73.971593, 40.7649, -73.980202, 40.749972, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'v2mOTizA+p2lNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 31, tzinfo=datetime.timezone.utc), 1, 1.2, -73.987552, 40.760255, -73.96826, 40.754763, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '5/FAJZTX9weN8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 17, tzinfo=datetime.timezone.utc), 2, 1.09, -73.976398, 40.752352, -73.991943, 40.74965, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'BkAPxHVHn6/K1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 24, tzinfo=datetime.timezone.utc), 5, 1.02, -73.990237, 40.756202, -73.97844, 40.76221, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'UTNh3S9VinQ/+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 54, tzinfo=datetime.timezone.utc), 1, 0.95, -74.002717, 40.714252, -74.011072, 40.708223, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'fPm4cXlndeJbhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 1, tzinfo=datetime.timezone.utc), 5, 1.48, -73.96294, 40.766385, -73.958933, 40.777727, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'w1WAcRl6d2z+uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 58, tzinfo=datetime.timezone.utc), 5, 1.37, -73.975688, 40.776397, -73.962247, 40.779327, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '3TO5+RTGaol5jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 41, tzinfo=datetime.timezone.utc), 2, 1.31, -73.958543, 40.76967, -73.959302, 40.783072, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'DThOvfdDg6nLpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 38, tzinfo=datetime.timezone.utc), 1, 1.05, -74.011177, 40.710572, -74.000233, 40.72304, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'qmYgSDiSpdUIkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.79, -73.959128, 40.76411, -73.969343, 40.761235, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'vdV4c9fWThoVQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 6, tzinfo=datetime.timezone.utc), 1, 0.48, -73.967755, 40.753852, -73.973825, 40.75774, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'aXuMbk7o75SMfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 31, tzinfo=datetime.timezone.utc), 5, 1.25, -73.982322, 40.774317, -73.992393, 40.75822, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'X7NJ0KGChu6D5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 48, tzinfo=datetime.timezone.utc), 1, 1.55, -73.963892, 40.757348, -73.963632, 40.77369, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '2oxzcWpSLhb3aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 32, tzinfo=datetime.timezone.utc), 1, 1.17, -73.846198, 40.72614, -73.850797, 40.710705, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Ikq/pKWZDnAyxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.93, -73.994018, 40.751203, -73.983173, 40.75628, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'oEkwLHBJDwcioQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 20, tzinfo=datetime.timezone.utc), 1, 1.37, -73.961282, 40.777632, -73.980328, 40.783248, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'HMreF+kXKsQ9sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 10, tzinfo=datetime.timezone.utc), 1, 1.46, -73.989085, 40.74226, -73.9852, 40.727683, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'PbrHu45NCc3Z5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 43, tzinfo=datetime.timezone.utc), 2, 1.35, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ja3NNVKbN8k4Tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 29, tzinfo=datetime.timezone.utc), 5, 1.43, -73.97526, 40.757687, -73.961982, 40.776487, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'h6gsf103Ri4UGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 8, tzinfo=datetime.timezone.utc), 1, 1.43, -73.987758, 40.719915, -73.988902, 40.736698, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'pGujU1pbirdJpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.26, -73.978003, 40.750358, -73.993998, 40.743302, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'WazmClTK5oy5rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 25, tzinfo=datetime.timezone.utc), 2, 1.13, -73.9869, 40.745178, -73.976523, 40.756423, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'zx/JuEOxBi1Tkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 55, tzinfo=datetime.timezone.utc), 1, 1.27, -73.981433, 40.784033, -73.986747, 40.76997, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Y3pZ7HUMGp2Vpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 55, tzinfo=datetime.timezone.utc), 1, 1.81, -73.98258, 40.739493, -73.966182, 40.762403, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'htquk2scEfd2wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 52, tzinfo=datetime.timezone.utc), 1, 1.48, -73.98006, 40.726957, -74.000492, 40.730592, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '0rhJ09cf736eUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 7, tzinfo=datetime.timezone.utc), 1, 0.74, -73.9714, 40.763215, -73.976247, 40.7553, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ot0oR4m9wAWkIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 22, tzinfo=datetime.timezone.utc), 2, 1.3, -73.957055, 40.759315, -73.961698, 40.773665, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'KR69y43qdL5EyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 37, tzinfo=datetime.timezone.utc), 2, 1.32, -73.952887, 40.772165, -73.967725, 40.762843, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'EGFVYCIb0pJl/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 51, tzinfo=datetime.timezone.utc), 1, 1.21, -73.978722, 40.752957, -73.974717, 40.765015, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cMy66feyIN1UiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 6, tzinfo=datetime.timezone.utc), 2, 1.5, -73.968388, 40.770785, -73.972578, 40.780977, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VxaF477E2uLSMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 2, tzinfo=datetime.timezone.utc), 5, 1.42, -73.97811, 40.729493, -73.982262, 40.742485, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'BQd8LCPRFp3YiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 35, tzinfo=datetime.timezone.utc), 1, 1.31, -73.977327, 40.748835, -73.994827, 40.745177, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JKkR/vIQxNAX1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 23, tzinfo=datetime.timezone.utc), 5, 0.64, -74.004467, 40.757972, -74.011113, 40.762843, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'bboHbueFslpnUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 2, tzinfo=datetime.timezone.utc), 2, 1.72, -73.965478, 40.771132, -73.98779, 40.778715, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '9cKadzNY8o82DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 47, tzinfo=datetime.timezone.utc), 2, 1.0, -73.98879, 40.76857, -73.996727, 40.76082, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'vInCXmEknfsCbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 37, tzinfo=datetime.timezone.utc), 1, 1.43, -73.982103, 40.768743, -73.965403, 40.771923, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'PDRHeT4tJtTd8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 41, tzinfo=datetime.timezone.utc), 5, 1.15, -73.983075, 40.76094, -73.984195, 40.748392, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Z1mTm5HebcFyJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 36, tzinfo=datetime.timezone.utc), 2, 1.54, -73.976155, 40.776352, -73.97863, 40.760835, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'QHgVk2msI4dXGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.73, -73.97784, 40.773702, -73.973253, 40.756718, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ffOyeJBBMYKxqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 49, tzinfo=datetime.timezone.utc), 1, 1.09, -73.991065, 40.75082, -73.992405, 40.758095, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JkwofqPJSM9cNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 8, tzinfo=datetime.timezone.utc), 3, 1.9, -73.97089, 40.783242, -73.974623, 40.762013, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'kN47HH/cgNQwHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.17, -73.987035, 40.733282, -73.972465, 40.753682, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'WHtdp6HjUftciQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 21, tzinfo=datetime.timezone.utc), 5, 0.63, -73.991312, 40.751743, -73.985708, 40.752745, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'bI4AUBG8eIfuyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), 5, 0.93, -73.984663, 40.739487, -73.986507, 40.745938, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'T4pyapz8NgfX2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 49, tzinfo=datetime.timezone.utc), 1, 1.61, -73.9871, 40.771203, -73.971145, 40.78775, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ojW4JBBx/DwVsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 2, 1.75, -73.988645, 40.774045, -74.002553, 40.752738, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'abWjq3NxC4t5Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 53, tzinfo=datetime.timezone.utc), 5, 1.13, -73.987593, 40.741343, -73.989333, 40.752732, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'mOpw8CjZIGRA4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 12, tzinfo=datetime.timezone.utc), 1, 1.25, -73.999188, 40.72467, -73.988332, 40.737755, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '+4FWPR4EI9e7lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 0, tzinfo=datetime.timezone.utc), 1, 1.43, -73.976138, 40.776132, -73.979625, 40.789747, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'tisFNNbEpu0e2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 38, tzinfo=datetime.timezone.utc), 2, 1.63, -73.955782, 40.779603, -73.96642, 40.793308, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'df2a7b9q6miBpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 9, tzinfo=datetime.timezone.utc), 1, 1.99, -73.975157, 40.75147, -73.954112, 40.778463, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'TnyPR2XI8lQRQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 57, tzinfo=datetime.timezone.utc), 5, 1.3, -73.979677, 40.759565, -73.977945, 40.773365, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ZZ1vOA43j5FUcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 51, tzinfo=datetime.timezone.utc), 2, 2.0, -73.97019, 40.752263, -73.985548, 40.727692, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '0CxJX165YjzV/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 41, tzinfo=datetime.timezone.utc), 1, 1.22, -73.914092, 40.646062, -73.914565, 40.642617, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'jxvwEUYYjxzxzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.95, -73.984423, 40.769552, -73.978382, 40.761275, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JJlX3nJUG0FYwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 23, tzinfo=datetime.timezone.utc), 4, 1.07, -73.986023, 40.746728, -73.978638, 40.75161, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'pQxF9KJ8wZQ5JQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 4, tzinfo=datetime.timezone.utc), 1, 1.53, -73.966473, 40.764825, -73.95715, 40.783025, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '1OwrwnLGcRka0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 57, tzinfo=datetime.timezone.utc), 1, 1.3, -73.996852, 40.742048, -73.981113, 40.750402, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'vWWl25RoBGbH8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 11, tzinfo=datetime.timezone.utc), 1, 1.65, -73.966513, 40.75732, -73.982963, 40.738868, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '0V2ui0LSMQ+46w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 19, tzinfo=datetime.timezone.utc), 1, 1.2, -73.998627, 40.734975, -74.009887, 40.735002, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Q3jjWgmdSGbhTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 9, tzinfo=datetime.timezone.utc), 2, 1.41, -73.96594, 40.762427, -73.955605, 40.773602, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'V6v+dygB4kf/UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 10, tzinfo=datetime.timezone.utc), 1, 1.18, -73.955223, 40.764612, -73.952995, 40.776242, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'TTP/LXuFdkPAhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 36, tzinfo=datetime.timezone.utc), 2, 1.45, -74.001485, 40.729678, -74.001853, 40.729655, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '+cTyx0vnPH8bNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 10, tzinfo=datetime.timezone.utc), 3, 1.43, -73.987793, 40.754097, -73.98224, 40.771323, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'O2q7+2mXTQRsnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 57, tzinfo=datetime.timezone.utc), 2, 1.7, -73.997897, 40.761352, -74.00712, 40.739977, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cmk4owTK8uFCEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 32, tzinfo=datetime.timezone.utc), 1, 1.49, -73.976055, 40.744665, -73.97277, 40.760405, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'FdWSH95RR9fV2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 56, tzinfo=datetime.timezone.utc), 1, 1.74, -73.994478, 40.740743, -73.979432, 40.761873, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'gAGgoj9CLooPhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.96, -73.968252, 40.761065, -73.956423, 40.76324, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ja0L8qnqFHue1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 6, tzinfo=datetime.timezone.utc), 1, 1.63, -73.967318, 40.792733, -73.953782, 40.779147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '+XYU1lcd6CpHMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.86, -73.971245, 40.792747, -73.952873, 40.810812, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'R7VcyYPfo8Fh7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 41, tzinfo=datetime.timezone.utc), 5, 1.99, -73.987557, 40.73273, -73.973053, 40.755637, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'J8qBBiT9N4imwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 54, tzinfo=datetime.timezone.utc), 1, 1.38, -73.978765, 40.75839, -73.99955, 40.76129, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ylMoCUWUdh5Oew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 6, tzinfo=datetime.timezone.utc), 5, 1.18, -74.006283, 40.734163, -73.99034, 40.731608, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'I7ieaHCLMTqRTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 15, tzinfo=datetime.timezone.utc), 1, 1.05, -73.916858, 40.781932, -73.921137, 40.77948, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '/psCu4PnHrDL/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 47, tzinfo=datetime.timezone.utc), 1, 1.46, -73.954343, 40.774378, -73.974095, 40.778842, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'uAEKNKPYxadzbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 10, tzinfo=datetime.timezone.utc), 2, 1.36, -73.960673, 40.773312, -73.943205, 40.777385, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'E6dQ6DOzo2BHwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 58, tzinfo=datetime.timezone.utc), 1, 1.24, -73.968465, 40.768045, -73.9811, 40.766273, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'UbNLEvH4/NjryA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 32, tzinfo=datetime.timezone.utc), 1, 0.91, -73.972223, 40.761288, -73.980745, 40.749353, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '25+rkp/gUrVBaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 41, tzinfo=datetime.timezone.utc), 1, 1.15, -73.982547, 40.769822, -73.978635, 40.78519, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Z0rckCJIwy9ANA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 27, tzinfo=datetime.timezone.utc), 5, 1.81, -73.9849, 40.747573, -73.999202, 40.72785, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VsViSbftZH6FZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 32, tzinfo=datetime.timezone.utc), 5, 1.95, -73.90166, 40.750958, -73.93595, 40.750113, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'pMHovK+seQT8sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 17, tzinfo=datetime.timezone.utc), 1, 1.62, -73.951845, 40.782108, -73.9684, 40.769735, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'avLqwqEcSYWXZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 42, tzinfo=datetime.timezone.utc), 1, 1.93, -73.979203, 40.781987, -73.961433, 40.80616, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'vV7Tn2wd5/B8gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 18, tzinfo=datetime.timezone.utc), 1, 1.45, -73.952363, 40.798183, -73.953907, 40.782117, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'wz6Dxu/Hg8Bv8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 5, tzinfo=datetime.timezone.utc), 1, 1.35, -73.964517, 40.773122, -73.952302, 40.790015, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'sqao4HQtKW5iIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 29, tzinfo=datetime.timezone.utc), 1, 1.79, -74.001377, 40.74745, -73.978863, 40.752602, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '2PEfBd85OeYVKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 56, tzinfo=datetime.timezone.utc), 5, 1.43, -73.977415, 40.779313, -73.966932, 40.766715, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'z8nXis7Y7e+JyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 15, tzinfo=datetime.timezone.utc), 5, 1.39, -73.995142, 40.749907, -73.997123, 40.764473, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'adiQ3EILvTtTbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), 1, 1.02, -73.991675, 40.750545, -74.000737, 40.757608, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Z0u2k8+Sk0NvoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 59, tzinfo=datetime.timezone.utc), 1, 0.56, -74.000593, 40.737353, -74.000037, 40.743063, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'x5SbctDIhdctbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 28, tzinfo=datetime.timezone.utc), 1, 1.1, -73.966115, 40.765478, -73.95194, 40.769452, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'UwiMruFjRxzqBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 0, tzinfo=datetime.timezone.utc), 1, 1.26, -73.975337, 40.752377, -73.976828, 40.739172, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'g7g0c3iq4Ix4Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.34, -73.979348, 40.74362, -73.969955, 40.758923, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'AxcreO1DUlVz5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 25, tzinfo=datetime.timezone.utc), 5, 1.23, -73.973912, 40.763202, -73.980938, 40.748625, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'WfCHHcKcNaDyAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 6, tzinfo=datetime.timezone.utc), 2, 0.61, -73.984603, 40.769592, -73.982445, 40.763247, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'oQEUsSjJB9ACrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 44, tzinfo=datetime.timezone.utc), 1, 1.24, -73.958215, 40.76867, -73.971805, 40.759798, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '1p/9LkYjyau4Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.1, -74.011088, 40.715827, -74.012603, 40.704215, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'mVREeZ5v6qCw0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 22, 6, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 14, 5, tzinfo=datetime.timezone.utc), 1, 1.5, -73.993193, 40.741597, -73.974577, 40.746762, 'Cash', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'g9fASGS0luaKSg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 46, tzinfo=datetime.timezone.utc), 1, 1.24, -73.999393, 40.761512, -73.995198, 40.750048, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'jeUuPD7bGns3wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978548, 40.762108, -73.99114, 40.750653, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'n12EXyaBM5SkwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 11, tzinfo=datetime.timezone.utc), 1, 1.31, -73.982797, 40.761908, -74.000572, 40.75817, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '0uMdlkBZXVs0yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 19, tzinfo=datetime.timezone.utc), 1, 2.08, -73.983968, 40.737547, -73.96268, 40.758192, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'cnRUc8RQBmuL+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 53, tzinfo=datetime.timezone.utc), 1, 1.58, -73.982228, 40.775158, -73.969585, 40.785052, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'U+vSNS2i2NIyUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 1, tzinfo=datetime.timezone.utc), 2, 1.39, -73.986253, 40.746152, -73.97536, 40.754895, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Xx+VGOHRFfTumQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 7, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 8, 6, tzinfo=datetime.timezone.utc), 1, 1.57, -73.971132, 40.763773, -73.953975, 40.77482, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VTCWleF4GMQDIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 17, tzinfo=datetime.timezone.utc), 1, 1.01, -73.98173, 40.767217, -73.979165, 40.757183, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'eDvEppi0S+dxyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 27, tzinfo=datetime.timezone.utc), 1, 0.04, -73.973923, 40.636088, -73.973143, 40.636105, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'rwlBKjH4C/lmSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 11, tzinfo=datetime.timezone.utc), 5, 1.61, -73.984885, 40.779363, -73.966057, 40.789655, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'MYjFBnYLXuU92g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 28, tzinfo=datetime.timezone.utc), 5, 1.25, -73.992805, 40.753193, -73.9735, 40.74731, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'ufjwVu7VAFDQYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.0, -73.977087, 40.751892, -73.99063, 40.750737, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'no77z64Y9HiLfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 55, tzinfo=datetime.timezone.utc), 1, 0.9, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'zBtxAOT7110j1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 33, tzinfo=datetime.timezone.utc), 2, 1.04, -73.9815, 40.759637, -73.978105, 40.754673, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'wjCodEOyi3o9EA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 3, tzinfo=datetime.timezone.utc), 2, 1.21, -73.974682, 40.75861, -73.982832, 40.769068, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '3bnWM77luzU54g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 56, tzinfo=datetime.timezone.utc), 5, 1.13, -74.009317, 40.712983, -73.997405, 40.723147, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'B+0JwrBpS2gnkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 17, tzinfo=datetime.timezone.utc), 5, 1.79, -74.014155, 40.706937, -74.005773, 40.728672, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VYj3JuQCwm3+YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 42, tzinfo=datetime.timezone.utc), 5, 1.06, -73.967372, 40.752445, -73.979403, 40.749973, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'aqg/V7xEb7T7OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 51, tzinfo=datetime.timezone.utc), 1, 1.44, -73.951468, 40.76985, -73.967427, 40.758645, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '49l5VTbWFyQgZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.67, -73.962123, 40.77919, -73.970163, 40.759898, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '3rltOFpV8E064A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 41, tzinfo=datetime.timezone.utc), 1, 1.35, -73.9794, 40.735438, -73.981825, 40.748888, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Gy/B1JPGszHWaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 42, tzinfo=datetime.timezone.utc), 4, 1.96, -73.994025, 40.761638, -73.975115, 40.783373, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'sf9hxz7OmBXXRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 2, tzinfo=datetime.timezone.utc), 5, 1.02, -73.97281, 40.759477, -73.978497, 40.74759, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '16ndhkR9L4k81A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 25, tzinfo=datetime.timezone.utc), 1, 1.36, -73.956955, 40.780522, -73.97778, 40.786992, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'JlZ6oZpeY5jcwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 29, tzinfo=datetime.timezone.utc), 1, 1.12, -73.987803, 40.750172, -73.974188, 40.756052, 'Credit', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'teivLqEkemKiSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 54, tzinfo=datetime.timezone.utc), 5, 1.67, -73.874428, 40.773958, -73.872005, 40.75364, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'r3H6DoonrVZ0lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 43, tzinfo=datetime.timezone.utc), 3, 1.27, -73.983682, 40.766763, -73.966398, 40.766317, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'Twv8qy4F5doGTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 39, tzinfo=datetime.timezone.utc), 1, 1.03, -73.9859, 40.756855, -73.995927, 40.744017, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '1rB3pETMN9XdFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 4, tzinfo=datetime.timezone.utc), 3, 1.41, -73.985182, 40.762927, -73.99256, 40.75093, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'rvDbV589xjQjBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.57, -73.991082, 40.750775, -73.979005, 40.764223, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'VrL6UZTWX0MNww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 56, tzinfo=datetime.timezone.utc), 2, 0.96, -73.969183, 40.766565, -73.975207, 40.754417, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'twjxZ/unmJeRlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 15, tzinfo=datetime.timezone.utc), 1, 1.65, -73.969597, 40.764748, -73.952967, 40.783557, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', '4c65R95SNyXpEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 36, tzinfo=datetime.timezone.utc), 5, 1.44, -73.995687, 40.73282, -73.987482, 40.719993, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'fZCTPaHUtbqNGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 43, tzinfo=datetime.timezone.utc), 5, 1.16, -74.006773, 40.730255, -73.997937, 40.744195, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'n2Y+cOjjNlEq+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 1, tzinfo=datetime.timezone.utc), 1, 1.32, -73.980375, 40.748428, -73.978257, 40.763263, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'tuXoIRwomvv83w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 3, tzinfo=datetime.timezone.utc), 3, 1.24, -73.959653, 40.766702, -73.97845, 40.772732, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'rHbvz/wWYA8OHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 57, tzinfo=datetime.timezone.utc), 1, 1.11, -73.96027, 40.76207, -73.97132, 40.751187, 'CASH', 6.5, 0.0, 0.0, 0.0, 6.5, '1705685161.48292', 'jiNf0B1JqPfcjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 12, tzinfo=datetime.timezone.utc), 1, 1.55, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Sxf0mkcLGaSfZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 10, tzinfo=datetime.timezone.utc), 2, 1.42, -73.988135, 40.734637, -73.991797, 40.748867, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'LCk45bLT5iWaWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 7, tzinfo=datetime.timezone.utc), 1, 1.35, -73.99874, 40.739817, -73.989298, 40.72661, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '+V3M5j7XtnZzzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 21, tzinfo=datetime.timezone.utc), 1, 1.75, -73.998713, 40.744972, -73.990142, 40.762382, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'KRIer0Xm1MGxvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 9, tzinfo=datetime.timezone.utc), 5, 1.68, -73.989565, 40.743583, -73.994475, 40.72455, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Oy/pfif/W984KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 1, 1.59, -73.993955, 40.751667, -73.996127, 40.76743, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'asO689ilTSnkxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 5, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 5, 54, tzinfo=datetime.timezone.utc), 1, 2.02, -73.957182, 40.78585, -73.967983, 40.762805, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'OnQZCH0GEllurQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 13, tzinfo=datetime.timezone.utc), 5, 1.57, -73.9555, 40.77638, -73.96483, 40.791753, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '4RH3N69tIYKnGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 49, tzinfo=datetime.timezone.utc), 1, 1.45, -74.006642, 40.744292, -73.989982, 40.754675, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'GCC94e3p0DsSgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 6, tzinfo=datetime.timezone.utc), 1, 1.51, -74.003878, 40.723978, -73.991973, 40.741838, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'l27Q4D4Qjabqtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 43, tzinfo=datetime.timezone.utc), 5, 1.83, -73.992358, 40.734632, -73.99183, 40.754565, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'AbbZ+ejBciJWWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 0, tzinfo=datetime.timezone.utc), 1, 1.24, -73.988718, 40.72302, -74.005525, 40.724443, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'o/KqUeGjgyEDjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 57, tzinfo=datetime.timezone.utc), 4, 1.59, -74.012787, 40.708128, -73.99467, 40.718645, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'DHNdKU1RQJ21MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 57, tzinfo=datetime.timezone.utc), 1, 1.51, -73.979297, 40.762067, -73.979818, 40.7462, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'OhAUVqeAx6V5DQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 35, tzinfo=datetime.timezone.utc), 5, 1.6, -73.982245, 40.763775, -73.982727, 40.781938, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'yWxJaYVDIrQo7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 37, tzinfo=datetime.timezone.utc), 2, 1.27, -74.008015, 40.73868, -74.005642, 40.741088, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Xl6z7WgWyi43dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 43, tzinfo=datetime.timezone.utc), 2, 1.69, -73.958898, 40.626288, -73.96802, 40.631853, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'AIo9QG3Z6lXevw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 15, tzinfo=datetime.timezone.utc), 1, 1.81, -74.00884, 40.718162, -73.990942, 40.727997, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'LKXjvSrO38Ugkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 26, tzinfo=datetime.timezone.utc), 2, 1.4, -74.005238, 40.736043, -73.986625, 40.735458, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '/W2iZWUCtSeeWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 43, tzinfo=datetime.timezone.utc), 2, 1.52, -74.001298, 40.735863, -73.981437, 40.738158, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'tt4zZ7R7G2hqag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 33, tzinfo=datetime.timezone.utc), 2, 1.68, -73.972722, 40.755753, -73.957217, 40.774397, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'cQEdMCTC/hHvMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.65, -73.85387, 40.855478, -73.854832, 40.848188, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'TZYo/B33xtCTlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 22, tzinfo=datetime.timezone.utc), 2, 1.64, -74.002307, 40.730652, -73.982745, 40.739225, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'G9/pm1npLgvmBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 22, tzinfo=datetime.timezone.utc), 1, 1.27, -74.001288, 40.731105, -73.983108, 40.730518, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'OvIz8DA5sWg9dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 41, tzinfo=datetime.timezone.utc), 5, 1.75, -74.006445, 40.739738, -73.984583, 40.745925, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'xkECJVZF/fRT1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 18, tzinfo=datetime.timezone.utc), 3, 1.39, -73.98203, 40.766313, -73.989942, 40.749565, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'mO30+vRpmGGS9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 45, tzinfo=datetime.timezone.utc), 2, 1.81, -73.981717, 40.757383, -73.961095, 40.76998, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'ofa8IV6Sq1Rmhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 15, tzinfo=datetime.timezone.utc), 1, 1.34, -73.990547, 40.745672, -74.002705, 40.733397, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'UKqAoTRK0qxAmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 1, tzinfo=datetime.timezone.utc), 1, 1.72, -73.932987, 40.848827, -73.949235, 40.841, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'OZjnlx4TDjljWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 28, tzinfo=datetime.timezone.utc), 2, 1.83, -73.996308, 40.73799, -73.97672, 40.751608, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'FPbi9svi5wdbWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 42, tzinfo=datetime.timezone.utc), 3, 1.49, -74.011138, 40.708375, -73.994912, 40.721293, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'MkxusNsxzGhDOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 46, tzinfo=datetime.timezone.utc), 1, 1.47, -73.97858, 40.74508, -73.989795, 40.732675, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'HXQW3Y5jpUpqXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 13, tzinfo=datetime.timezone.utc), 1, 1.52, -73.982467, 40.775558, -73.967978, 40.761377, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Rz5NRJMbwN2Gqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 38, tzinfo=datetime.timezone.utc), 2, 1.3, -73.977852, 40.752373, -73.983843, 40.762907, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'p3lcZ61jKGVlSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 21, tzinfo=datetime.timezone.utc), 3, 1.52, -73.977268, 40.784445, -73.954165, 40.772948, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'jjNlXVuIeCPRWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.32, -73.977458, 40.784233, -73.98248, 40.768252, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'qE+jML08vUFjFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 51, tzinfo=datetime.timezone.utc), 1, 1.36, -73.987257, 40.763593, -73.979505, 40.752782, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'dmAPkWeDWxfkig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 3, tzinfo=datetime.timezone.utc), 1, 1.63, -74.005452, 40.740848, -74.002505, 40.728892, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'X03/SDGo2TxsWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 36, tzinfo=datetime.timezone.utc), 2, 1.59, -73.964237, 40.77466, -73.97132, 40.75567, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'rtdaCvGFlFvTpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 1, 4, tzinfo=datetime.timezone.utc), 1, 1.85, -73.844303, 40.721398, -73.834288, 40.7053, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'AUwpihSF0gkJBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.64, -73.979322, 40.761543, -73.99036, 40.746945, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '80bQK8DisXXjjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 53, tzinfo=datetime.timezone.utc), 1, 1.98, -73.950385, 40.775702, -73.935938, 40.798767, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '3qWn19BLaE0z5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 14, tzinfo=datetime.timezone.utc), 5, 1.13, -73.990217, 40.75671, -73.979883, 40.749863, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'aVgi0V9V6L1Efg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 45, tzinfo=datetime.timezone.utc), 1, 1.82, -73.988683, 40.757828, -73.989183, 40.778978, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'zqxIcIJkoyCLww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 4, tzinfo=datetime.timezone.utc), 1, 0.93, -74.005333, 40.719895, -73.994343, 40.722453, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'dMMo+9n2LHx5gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 19, tzinfo=datetime.timezone.utc), 1, 1.8, -73.99144, 40.739858, -73.970802, 40.75252, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'QWXMti8K0imDYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 3, tzinfo=datetime.timezone.utc), 5, 1.18, -73.98335, 40.739113, -73.979835, 40.727035, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'qPuXczIxZIHHTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 20, tzinfo=datetime.timezone.utc), 1, 1.6, -73.999948, 40.743405, -73.989185, 40.762412, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'cSv/UCi0gBDXww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 39, tzinfo=datetime.timezone.utc), 5, 1.38, -73.958068, 40.769333, -73.971518, 40.757173, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Ne/Eq7bhJEZWfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 22, tzinfo=datetime.timezone.utc), 2, 1.47, -73.984425, 40.743075, -73.988817, 40.757677, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'TqiKpiuyZ7lrSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.22, -73.972953, 40.755798, -73.99031, 40.756763, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'KuRuCSDbf66VPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 21, tzinfo=datetime.timezone.utc), 1, 1.57, -73.984118, 40.729222, -73.991883, 40.744168, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'rJa3bt2kvgf+ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 3, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 3, 18, tzinfo=datetime.timezone.utc), 1, 1.39, -73.952753, 40.77676, -73.968102, 40.787332, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'z+wCvyhjiKIQ5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 38, tzinfo=datetime.timezone.utc), 3, 1.51, -74.002485, 40.750037, -73.985497, 40.760607, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'S4InIbXEuNIkeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 50, tzinfo=datetime.timezone.utc), 5, 1.53, -73.987178, 40.742182, -73.972198, 40.756002, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'JvwkkIVtOZF3bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 46, tzinfo=datetime.timezone.utc), 1, 1.11, -73.96957, 40.785487, -73.952827, 40.776555, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'o63hcVc5EwO+jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 1, tzinfo=datetime.timezone.utc), 2, 1.43, -73.986177, 40.762055, -73.981042, 40.780865, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'umiiCYcAgNHBXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 2, tzinfo=datetime.timezone.utc), 1, 1.29, -73.999047, 40.739463, -73.990977, 40.731428, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'BFahTVL/WcwFzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 10, tzinfo=datetime.timezone.utc), 5, 0.96, -73.998533, 40.738992, -73.98854, 40.736395, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'WgflGhfJuASQIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 31, tzinfo=datetime.timezone.utc), 5, 1.68, -73.985565, 40.747937, -73.972208, 40.749553, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '6fsELaGT0GIM4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 9, tzinfo=datetime.timezone.utc), 2, 1.57, -73.982715, 40.76751, -73.979162, 40.786942, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'wKkmYB++Bgp10Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 9, tzinfo=datetime.timezone.utc), 1, 1.72, -73.975985, 40.757187, -73.958238, 40.77024, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'qm5xJRp1evf5Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 5, tzinfo=datetime.timezone.utc), 1, 1.71, -73.971478, 40.776342, -73.96024, 40.773218, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'bcEaT/6aUI7U/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 48, tzinfo=datetime.timezone.utc), 1, 1.43, -73.960117, 40.817775, -73.961312, 40.801472, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '1zpC6YH/lXgwPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 11, tzinfo=datetime.timezone.utc), 1, 1.61, -74.018432, 40.754898, -74.015872, 40.752957, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'uPLaFOdJWre7Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 17, tzinfo=datetime.timezone.utc), 2, 1.29, -73.965033, 40.755287, -73.982385, 40.765192, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'rEGyauC4itTjZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 52, tzinfo=datetime.timezone.utc), 3, 1.52, -74.000803, 40.732175, -73.992563, 40.720628, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'DC8PrGoSMKcuIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 42, tzinfo=datetime.timezone.utc), 4, 1.5, -73.986852, 40.695993, -73.967067, 40.684083, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'I8aMdImU99jZvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 21, tzinfo=datetime.timezone.utc), 1, 1.36, -73.971338, 40.67576, -73.986503, 40.688527, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '7yWU9difX04bhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), 1, 1.5, -73.981892, 40.771698, -73.969817, 40.785673, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'GGEpjGszs1ScDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 48, tzinfo=datetime.timezone.utc), 4, 1.7, -73.98158, 40.75775, -73.9626, 40.77043, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'g/evgrwxd5FHOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 32, tzinfo=datetime.timezone.utc), 1, 1.15, -73.984233, 40.754843, -74.002695, 40.760747, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'ZqEy5Jl1tMzWyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 26, tzinfo=datetime.timezone.utc), 1, 1.41, -73.98653, 40.742992, -73.974023, 40.759428, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'k9IWZu+++Yv2dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 22, tzinfo=datetime.timezone.utc), 1, 1.54, -73.9763, 40.788167, -73.954843, 40.775828, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'pPGaC5TY84Q1Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 9, tzinfo=datetime.timezone.utc), 2, 1.62, -73.985645, 40.744082, -73.987105, 40.760298, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'G3phFHI+ROTTwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 22, tzinfo=datetime.timezone.utc), 1, 1.66, -73.994087, 40.751253, -73.979322, 40.764222, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'pNayUD7e/9nyaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 16, tzinfo=datetime.timezone.utc), 5, 1.63, -73.974623, 40.742042, -73.98917, 40.726453, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'MH4w5UNAVOsysA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.14, -73.971705, 40.756817, -73.982442, 40.766895, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'DeZviRlbFsmNJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 4, tzinfo=datetime.timezone.utc), 5, 1.9, -73.967195, 40.772265, -73.983975, 40.749332, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'xJ/K7u0I8/dlHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 20, tzinfo=datetime.timezone.utc), 1, 1.63, -73.955155, 40.77315, -73.970027, 40.752787, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'CEUfY5mWqJsHWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 35, tzinfo=datetime.timezone.utc), 1, 1.3, -74.005707, 40.737312, -74.009722, 40.723517, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'xuuvwU5P431ysw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 15, tzinfo=datetime.timezone.utc), 2, 1.68, -73.961103, 40.765113, -73.980258, 40.755613, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'g0y5/FTcTeHVlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 26, tzinfo=datetime.timezone.utc), 1, 1.46, -73.98575, 40.74387, -73.970575, 40.755535, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'mmeKrhClJ4PPaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 50, tzinfo=datetime.timezone.utc), 1, 1.86, -73.973638, 40.761685, -73.976642, 40.780732, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '8Ffw03OSEwZQmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 45, tzinfo=datetime.timezone.utc), 5, 1.23, -73.987432, 40.729258, -74.0081, 40.734168, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'cb0z66wV+8R9IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 18, tzinfo=datetime.timezone.utc), 5, 2.14, -73.990993, 40.765888, -73.970857, 40.788528, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'MALIwsF7BeivRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 32, tzinfo=datetime.timezone.utc), 2, 1.62, -73.983388, 40.75279, -73.973897, 40.764188, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'vJb41YjjENzIWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 4, tzinfo=datetime.timezone.utc), 5, 1.31, -74.004887, 40.71721, -73.990252, 40.719778, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'ia006WWwZsU5Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 45, tzinfo=datetime.timezone.utc), 1, 1.73, -73.999605, 40.738582, -73.976015, 40.740438, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'OmzZSDcqAkmpNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 33, tzinfo=datetime.timezone.utc), 1, 1.64, -74.002452, 40.739852, -73.986323, 40.757375, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'pwsbW2uOx+ezoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 44, tzinfo=datetime.timezone.utc), 1, 1.56, -73.961862, 40.76419, -73.976137, 40.744382, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'GTfuPhgoUMjHKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 5, tzinfo=datetime.timezone.utc), 2, 1.63, -73.979553, 40.755203, -73.97676, 40.739303, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'Wkfe9uyuwr4cDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 34, tzinfo=datetime.timezone.utc), 5, 1.78, -73.96211, 40.779238, -73.9784, 40.75703, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'EpVT8B7qmu8VVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 20, tzinfo=datetime.timezone.utc), 1, 1.45, -73.986528, 40.740192, -74.007798, 40.741953, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'lXOcm0aQcSDZag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 0, tzinfo=datetime.timezone.utc), 5, 2.01, -73.993935, 40.761587, -73.97561, 40.786867, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'T49/JxDpD+zYMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 17, tzinfo=datetime.timezone.utc), 1, 1.55, -73.994682, 40.740282, -73.997872, 40.756245, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'h4B5j6O5QLOWiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 3, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 3, 28, tzinfo=datetime.timezone.utc), 2, 1.46, -73.993565, 40.752753, -73.98271, 40.762805, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '9gy4EWrkB8dJiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 29, tzinfo=datetime.timezone.utc), 5, 1.63, -73.985835, 40.757353, -73.976697, 40.775118, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'aArfHSYwG9n2iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 38, tzinfo=datetime.timezone.utc), 5, 1.69, -73.9843, 40.754588, -73.992642, 40.736862, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'QFypfduPJjX+Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 2, tzinfo=datetime.timezone.utc), 1, 1.49, -73.995617, 40.745923, -73.992795, 40.763303, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'FQcO4UVe3YjrgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 6, tzinfo=datetime.timezone.utc), 2, 1.23, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'RAjtQT148NJKWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 12, tzinfo=datetime.timezone.utc), 4, 1.8, -73.993765, 40.722393, -73.995745, 40.74178, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'nAooY5izAzd2QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 35, tzinfo=datetime.timezone.utc), 1, 1.68, -73.974183, 40.757475, -73.960963, 40.777598, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'R+Gw0fJa2vSi+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 36, tzinfo=datetime.timezone.utc), 1, 1.67, -73.954413, 40.77433, -73.971597, 40.786828, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'eMrosYovRk318Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 5, tzinfo=datetime.timezone.utc), 2, 1.35, -73.992315, 40.755093, -73.972103, 40.747308, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'JwQG2vdZYnsaBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 43, tzinfo=datetime.timezone.utc), 1, 1.73, -74.000607, 40.72715, -74.015602, 40.715282, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'EIghDWf9sad8CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 45, tzinfo=datetime.timezone.utc), 1, 1.33, -73.988317, 40.75109, -73.97523, 40.760243, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'BS623M/s4pdwtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 3, 1.47, -74.004242, 40.742392, -73.982763, 40.739325, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'pFJPEKBlhd/9bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 15, tzinfo=datetime.timezone.utc), 1, 1.73, -73.988342, 40.754878, -73.995472, 40.735015, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'H1IRuYTyTSxyxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.85, -73.985117, 40.758642, -74.005112, 40.741573, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'yvysockfNIV2dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 18, tzinfo=datetime.timezone.utc), 5, 1.44, -73.95407, 40.730253, -73.958852, 40.713475, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', '2785bFeiRJU6Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 36, tzinfo=datetime.timezone.utc), 5, 1.39, -73.984958, 40.747977, -73.97788, 40.734097, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'xJTzTPIavCV/wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 35, tzinfo=datetime.timezone.utc), 2, 1.21, -73.983192, 40.726492, -73.998827, 40.730648, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'AOvO+/4i03e2KQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 33, tzinfo=datetime.timezone.utc), 1, 1.09, -73.986438, 40.75788, -74.002427, 40.760803, 'CASH', 6.5, 0.5, 0.0, 0.0, 7.0, '1705685161.48292', 'TK1+dj3ivvYmaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 11, tzinfo=datetime.timezone.utc), 1, 0.9, -73.96608, 40.754082, -73.969057, 40.761607, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'R7T63oXw1UQTDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 45, tzinfo=datetime.timezone.utc), 2, 1.09, -73.972538, 40.752602, -73.98993, 40.75714, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '0WUVjX+VDd2guQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 19, tzinfo=datetime.timezone.utc), 1, 0.16, -73.977565, 40.75172, -73.993503, 40.744032, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '1CWMxcDBDdb+8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 11, tzinfo=datetime.timezone.utc), 1, 0.98, -73.974437, 40.755262, -73.962508, 40.756317, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'H0FpJoB72WKNzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 13, tzinfo=datetime.timezone.utc), 1, 0.13, -73.993362, 40.751962, -73.99279, 40.766002, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'zKbteMaCvIyfOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 17, tzinfo=datetime.timezone.utc), 5, 1.13, -73.951673, 40.76952, -73.958587, 40.779882, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'JkttVq/GnAp5MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 4, tzinfo=datetime.timezone.utc), 2, 1.09, -73.993458, 40.761328, -73.980353, 40.761648, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '4V3b5uwsQQtC3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.97, -73.974962, 40.777695, -73.97672, 40.780762, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'zFRKuNxTcOdPGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 23, tzinfo=datetime.timezone.utc), 1, 1.58, -74.005137, 40.72133, -74.005342, 40.73993, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '9M5zduAHVLGqnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 25, tzinfo=datetime.timezone.utc), 1, 1.65, -74.000462, 40.72558, -73.99907, 40.743893, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '2keLqKv3II8cIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 37, tzinfo=datetime.timezone.utc), 1, 1.34, -73.950168, 40.781992, -73.989315, 40.768338, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'IYRdSKnhpY5w6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 58, tzinfo=datetime.timezone.utc), 1, 1.68, -73.992418, 40.743538, -73.977368, 40.764052, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'mOlKW/Ghbro+Rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 26, tzinfo=datetime.timezone.utc), 1, 0.96, -73.99416, 40.751183, -73.984308, 40.759712, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'xQDBiXbesvzxiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 38, tzinfo=datetime.timezone.utc), 2, 1.19, -73.993088, 40.752643, -73.987122, 40.766283, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '1By4YSbLJIqR/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 31, tzinfo=datetime.timezone.utc), 1, 0.75, -74.003265, 40.740078, -73.99298, 40.734052, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'InCI1RhXeBRF9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 33, tzinfo=datetime.timezone.utc), 1, 1.22, -73.952272, 40.798147, -73.942492, 40.787348, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'kVZHejmgMxiNdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 19, tzinfo=datetime.timezone.utc), 4, 1.06, -74.010355, 40.720217, -74.005182, 40.718343, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '9zpDYpegx6Y3rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 11, tzinfo=datetime.timezone.utc), 5, 0.81, -73.984805, 40.768502, -73.986485, 40.760192, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'vqB+7WYMklPrhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 50, tzinfo=datetime.timezone.utc), 1, 0.91, -73.982877, 40.747962, -73.990815, 40.755885, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'gy2k7IsTEMxl7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), 1, 1.15, -74.0027, 40.71416, -74.005252, 40.705043, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '1iq2c3RPMYPLwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 56, tzinfo=datetime.timezone.utc), 1, 1.54, -73.95794, 40.765422, -73.95531, 40.78256, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'acBAJfTiN0SlRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 10, tzinfo=datetime.timezone.utc), 2, 1.42, -73.964107, 40.7702, -73.95411, 40.787333, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'EAu5URoDLknvrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 24, tzinfo=datetime.timezone.utc), 1, 0.58, -73.984383, 40.745712, -73.983593, 40.75219, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'lRmhSZMkG05YlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 32, tzinfo=datetime.timezone.utc), 1, 0.83, -73.98252, 40.772235, -73.990168, 40.761723, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'nH57dzoAlV+DOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 41, tzinfo=datetime.timezone.utc), 5, 0.72, -73.99079, 40.755523, -73.985013, 40.753438, 'Credit', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'SQeCGW/6//9ylA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 38, tzinfo=datetime.timezone.utc), 1, 1.85, -73.965378, 40.763503, -73.956552, 40.78394, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'stJB8SXzOVtoSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 37, tzinfo=datetime.timezone.utc), 1, 1.08, -73.999552, 40.718538, -74.00536, 40.728538, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'CfRTErD3O+RaVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 40, tzinfo=datetime.timezone.utc), 5, 0.98, -73.99414, 40.734338, -73.99414, 40.734338, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'JL0GXLfEz+YLrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 21, tzinfo=datetime.timezone.utc), 2, 1.17, -74.005855, 40.74122, -73.991558, 40.736812, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'kYs0HwqnDBRZ0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 43, tzinfo=datetime.timezone.utc), 5, 1.76, -73.973732, 40.78444, -73.961367, 40.80111, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'P+CJG1rs+Wu6ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 50, tzinfo=datetime.timezone.utc), 2, 0.79, -73.977907, 40.758507, -73.976882, 40.761562, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'CODsO17ad+h7hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 44, tzinfo=datetime.timezone.utc), 5, 1.06, -74.000473, 40.732492, -73.98527, 40.732587, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'RnqVsh1NzJKVxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 35, tzinfo=datetime.timezone.utc), 1, 1.94, -73.991343, 40.701042, -73.999867, 40.718167, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'q5TRaI5hyaWz5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 6, tzinfo=datetime.timezone.utc), 1, 1.61, -74.011202, 40.724058, -74.007797, 40.747042, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'XmfCVa02OPfhbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 27, tzinfo=datetime.timezone.utc), 5, 1.16, -73.987748, 40.74894, -73.979597, 40.738153, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'iT8cVa6IbnjuxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.81, -73.980292, 40.742927, -73.988542, 40.750058, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'OD4stg96RA41Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 44, tzinfo=datetime.timezone.utc), 1, 1.32, -73.984407, 40.72478, -73.99972, 40.721993, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'nmy+QxsbX/8PJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 11, tzinfo=datetime.timezone.utc), 2, 1.22, -73.997272, 40.721667, -73.99056, 40.736857, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'vpmpHHBP9arZLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 4, tzinfo=datetime.timezone.utc), 4, 1.55, -73.985927, 40.746743, -74.002582, 40.733842, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'eh49tBBvjBOBLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 55, tzinfo=datetime.timezone.utc), 2, 0.89, -73.97871, 40.753577, -73.990197, 40.756247, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'TpS7qU/SbHceaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 43, tzinfo=datetime.timezone.utc), 5, 1.06, -73.986947, 40.758202, -73.974388, 40.757618, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'ZVXxpgv/u0lcNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 6, tzinfo=datetime.timezone.utc), 1, 1.17, -74.001815, 40.729697, -73.995205, 40.72862, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'IoGcXGKCGYJAQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 44, tzinfo=datetime.timezone.utc), 1, 1.32, -73.980748, 40.747902, -73.978678, 40.762025, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'NobRM+iSLPsYbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 9, tzinfo=datetime.timezone.utc), 1, 1.8, -74.003715, 40.74854, -73.991253, 40.770432, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'fVV0Cd34EtF6Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 4, tzinfo=datetime.timezone.utc), 1, 1.72, -73.97115, 40.751558, -73.982392, 40.731253, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'DU7B0+S47mx6LA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 12, tzinfo=datetime.timezone.utc), 1, 1.3, -73.980727, 40.782405, -73.970788, 40.798473, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'OFWDKeIobhHPQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 25, tzinfo=datetime.timezone.utc), 2, 1.58, -73.995915, 40.738582, -73.989615, 40.756862, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'hFD92jvrkL4hzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 9, tzinfo=datetime.timezone.utc), 1, 1.38, -73.972512, 40.749513, -73.97428, 40.73696, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '0iIdzBQv+ELx9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 28, tzinfo=datetime.timezone.utc), 1, 0.92, -73.966162, 40.765242, -73.967252, 40.770863, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'XPOkqjbnoJ5ALA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 34, tzinfo=datetime.timezone.utc), 5, 1.74, -73.981563, 40.78113, -73.969633, 40.802155, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '6aGnCoEvGTN+dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 34, tzinfo=datetime.timezone.utc), 1, 1.62, -73.979402, 40.753485, -73.977905, 40.739277, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'EqMTi2LTOjSZxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 57, tzinfo=datetime.timezone.utc), 1, 1.69, -73.965468, 40.752512, -73.984838, 40.742905, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '+VyNeyHKq8SQWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 22, tzinfo=datetime.timezone.utc), 1, 1.96, -73.975197, 40.765247, -73.9577, 40.784552, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'DaANuBRYjOaHsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 30, tzinfo=datetime.timezone.utc), 1, 1.51, -74.00802, 40.711873, -73.992047, 40.699548, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', '3s8ZwckD645sIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 47, tzinfo=datetime.timezone.utc), 1, 1.33, -73.993295, 40.752363, -73.983495, 40.744108, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'bCkjJ37kgXZRhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 31, tzinfo=datetime.timezone.utc), 1, 1.07, -73.97132, 40.761087, -73.9855, 40.75785, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'liy6ZiYqLK4vaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 35, tzinfo=datetime.timezone.utc), 4, 1.07, -73.962143, 40.776422, -73.968693, 40.764352, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'kFAcG0g05cxXgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 39, tzinfo=datetime.timezone.utc), 1, 1.46, -73.972257, 40.762433, -73.95794, 40.779015, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'jCk6ui117puQ9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 39, tzinfo=datetime.timezone.utc), 2, 1.6, -73.991243, 40.73264, -73.974217, 40.742687, 'CASH', 6.5, 1.0, 0.0, 0.0, 7.5, '1705685161.48292', 'Cop4EK77QzDr7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 0, tzinfo=datetime.timezone.utc), 1, 1.1, -73.975085, 40.750973, -73.987158, 40.759538, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'X2gzSxcos7NjcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 28, tzinfo=datetime.timezone.utc), 5, 2.88, -73.949797, 40.77673, -73.969622, 40.751732, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '6sm7oAc80EGBhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 46, tzinfo=datetime.timezone.utc), 1, 1.71, -74.00153, 40.746542, -73.974413, 40.7369, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'h3iP6vSCjGHRWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 51, tzinfo=datetime.timezone.utc), 1, 1.68, -73.960142, 40.76196, -73.978195, 40.765303, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'OwXU4MnC+8sG7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 39, tzinfo=datetime.timezone.utc), 1, 1.01, -73.970503, 40.753935, -73.972448, 40.762255, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Z7SUQWxUXOXANQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 48, tzinfo=datetime.timezone.utc), 1, 1.83, -73.98933, 40.73008, -73.991733, 40.749072, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'QNo9fF+NmdgIAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 40, tzinfo=datetime.timezone.utc), 2, 1.49, -73.970392, 40.750883, -73.9542, 40.764247, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'L3kZ7x+IyoWTJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), 5, 0.76, -73.971948, 40.7498, -73.97758, 40.75468, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ISnho0zX2F+pkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 55, tzinfo=datetime.timezone.utc), 5, 0.95, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '7DB6GQcHbMZ/FA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 1, tzinfo=datetime.timezone.utc), 1, 1.99, -73.95696, 40.770772, -73.982343, 40.784898, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'O1SupwxaxN3Mjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 33, tzinfo=datetime.timezone.utc), 1, 1.82, -73.972432, 40.763033, -73.990635, 40.75129, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'aFPWA6efAE7D4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 3, tzinfo=datetime.timezone.utc), 5, 2.37, -73.975263, 40.777315, -73.976182, 40.753962, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'OTXYb5Z7bbJQbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 7, tzinfo=datetime.timezone.utc), 2, 2.13, -73.98172, 40.78352, -73.969103, 40.764032, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '4na1/a4sl7nSvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 44, tzinfo=datetime.timezone.utc), 1, 2.1, -73.986788, 40.761905, -74.005845, 40.737448, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '9pxzNsD4EitfTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 57, tzinfo=datetime.timezone.utc), 1, 2.91, -73.967375, 40.759378, -73.938338, 40.789807, 'Credit', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'K87yu0MW/v021A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 36, tzinfo=datetime.timezone.utc), 5, 1.65, -73.984778, 40.760465, -74.000583, 40.758245, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'bbzTza3cUi5Nqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 37, tzinfo=datetime.timezone.utc), 2, 2.19, -73.983908, 40.774587, -73.968915, 40.755273, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'jL2yXH+zQhGD2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 24, tzinfo=datetime.timezone.utc), 1, 2.04, -73.96947, 40.757785, -73.983833, 40.775777, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'rXiT1YfVYNQamA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 12, 30, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 40, 48, tzinfo=datetime.timezone.utc), 1, 1.9, -73.961134, 40.764982, -73.972526, 40.743459, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'a/21+Q43/C57ww', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 54, tzinfo=datetime.timezone.utc), 1, 0.31, -73.991705, 40.75009, -73.97491, 40.741753, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'q5j74OCzBz0s/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 37, tzinfo=datetime.timezone.utc), 5, 2.24, -73.993443, 40.74973, -73.982538, 40.773247, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lMz3zzVgLXCUCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 33, tzinfo=datetime.timezone.utc), 1, 1.54, -73.969307, 40.756762, -73.972865, 40.74372, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '/TAZVM2WSzOErQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 1, tzinfo=datetime.timezone.utc), 3, 1.52, -73.981538, 40.741813, -73.982537, 40.757795, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lCPwLBY/gWYQ8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 14, tzinfo=datetime.timezone.utc), 1, 1.62, -73.998665, 40.734903, -73.998032, 40.721592, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'eGi2UupvOKGkeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 57, tzinfo=datetime.timezone.utc), 1, 1.26, -73.988663, 40.755833, -73.993998, 40.767478, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'gZi9J9HvCUQzhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 19, tzinfo=datetime.timezone.utc), 5, 1.93, -74.00156, 40.715662, -73.986667, 40.740057, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'rjQsVRXFP+1y3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 33, tzinfo=datetime.timezone.utc), 1, 1.79, -73.982312, 40.776797, -73.960337, 40.774693, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lw4xgeyOR+JR2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 7, tzinfo=datetime.timezone.utc), 1, 2.0, -73.992347, 40.749763, -73.984743, 40.76941, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'eDWpmdxJT2z/wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 38, tzinfo=datetime.timezone.utc), 1, 2.31, -73.969382, 40.761037, -73.946023, 40.781528, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '/MCEpOwzAZiXdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 7, tzinfo=datetime.timezone.utc), 5, 2.46, -73.951, 40.775018, -73.979755, 40.760522, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lxwtTr6fhmfqtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 28, tzinfo=datetime.timezone.utc), 2, 1.73, -73.987868, 40.752305, -73.9915, 40.770085, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '9nwhgb4nlChxOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 28, tzinfo=datetime.timezone.utc), 1, 1.57, -73.98377, 40.773045, -73.972587, 40.75999, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'sa4S22m1CD3FSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 6, tzinfo=datetime.timezone.utc), 1, 2.1, -73.981687, 40.779323, -73.959713, 40.779608, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'N7IJT68Ml2Ennw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 26, tzinfo=datetime.timezone.utc), 1, 1.8, -73.981387, 40.763125, -73.989267, 40.753225, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'KdZCEX2OvCtXkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 14, tzinfo=datetime.timezone.utc), 1, 2.39, -74.016378, 40.704862, -73.997897, 40.725845, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'smj18IWoCU3ixg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 37, tzinfo=datetime.timezone.utc), 5, 1.59, -73.92523, 40.690168, -73.900535, 40.687647, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'vfvJy5vewYwziQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 11, tzinfo=datetime.timezone.utc), 3, 2.17, -73.976053, 40.781222, -73.979138, 40.756082, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'uGY/x3Mne8Gfzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 3, tzinfo=datetime.timezone.utc), 5, 2.26, -73.979108, 40.765987, -73.954998, 40.780188, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'NeAcFOKPIeqpyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 7, tzinfo=datetime.timezone.utc), 5, 1.7, -73.97884, 40.728822, -74.00096, 40.725827, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'EtTZzpe67kFFng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 17, tzinfo=datetime.timezone.utc), 1, 1.99, -73.967602, 40.756038, -73.987817, 40.765005, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'I7o5u5l9kSfBjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 7, 28, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 39, 30, tzinfo=datetime.timezone.utc), 1, 2.0, -73.956176, 40.778729, -73.972922, 40.75345, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'IGpdEYkWgjhgKA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 7, tzinfo=datetime.timezone.utc), 1, 1.8, -73.978545, 40.782852, -73.954925, 40.782587, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lER8noAApSHR8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 28, tzinfo=datetime.timezone.utc), 1, 2.5, -73.978338, 40.763818, -73.997742, 40.741207, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'rKePbh6D/IFVtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 11, tzinfo=datetime.timezone.utc), 1, 1.91, -74.004147, 40.747853, -73.983755, 40.765402, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'V2mzYah3pSaWDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 55, tzinfo=datetime.timezone.utc), 1, 1.92, -73.97378, 40.738115, -73.989723, 40.735605, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '48cJ59X2WezEPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 1, tzinfo=datetime.timezone.utc), 2, 2.59, -73.958742, 40.780678, -73.98481, 40.769388, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'YMhsWQfMSPOc6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 12, tzinfo=datetime.timezone.utc), 1, 1.84, -74.002747, 40.746953, -73.98371, 40.757955, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'y4XjV057n+AtwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 10, tzinfo=datetime.timezone.utc), 1, 2.59, -73.9715, 40.757447, -73.992108, 40.72924, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'MgAisSU/yTfTfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 20, tzinfo=datetime.timezone.utc), 5, 1.86, -74.001247, 40.741803, -73.97912, 40.750688, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Lo5VYbyuuZxCxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 2, 1.24, -73.952188, 40.769022, -73.960353, 40.780748, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'wwObxDQX61zz1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 5, tzinfo=datetime.timezone.utc), 2, 2.57, -73.996308, 40.694623, -74.004438, 40.711788, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ddHGkMMHW6Paeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 47, tzinfo=datetime.timezone.utc), 1, 2.28, -73.976127, 40.750475, -73.949955, 40.772865, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'qda+nxQlVHpsYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 52, tzinfo=datetime.timezone.utc), 1, 2.11, -73.96566, 40.759463, -73.956568, 40.783642, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'WC5QnpkI61kBjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 34, tzinfo=datetime.timezone.utc), 1, 2.81, -73.964527, 40.763735, -73.946635, 40.797075, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'O1J+Juu5gdBfXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 48, tzinfo=datetime.timezone.utc), 1, 1.42, -73.952983, 40.772445, -73.970352, 40.764677, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'GHOraKkyDjmxaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 14, tzinfo=datetime.timezone.utc), 5, 2.66, -73.962347, 40.794987, -73.98267, 40.765657, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'VI/XSIV7rdBMAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 19, tzinfo=datetime.timezone.utc), 1, 1.88, -73.960695, 40.772422, -73.98044, 40.753965, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ZgY9TUQL/GlcBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 3, tzinfo=datetime.timezone.utc), 5, 2.77, -73.9741, 40.743057, -73.948688, 40.777868, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'tu1XxP3+hvoyEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 50, tzinfo=datetime.timezone.utc), 1, 2.38, -73.975995, 40.744498, -74.001885, 40.724662, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '6pqDM4u1mzu3Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 32, tzinfo=datetime.timezone.utc), 1, 1.86, -73.971782, 40.792003, -73.94367, 40.790985, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'fVDRd06PHqSsOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 38, tzinfo=datetime.timezone.utc), 5, 1.72, -73.958217, 40.772955, -73.980723, 40.784875, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'E0uBQctuUIuyxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 41, tzinfo=datetime.timezone.utc), 1, 2.03, -73.983328, 40.78127, -73.966465, 40.76465, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Ivnf8ORygXPCow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 14, tzinfo=datetime.timezone.utc), 2, 2.3, -73.97821, 40.75344, -73.953322, 40.76802, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'EZ280RkcWMf8Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 34, tzinfo=datetime.timezone.utc), 1, 2.1, -73.939467, 40.804638, -73.955798, 40.77915, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'vv/GfSnAAPEBqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 39, tzinfo=datetime.timezone.utc), 6, 2.13, -73.999328, 40.745653, -73.991253, 40.723403, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'LDfFK+V1pTYVVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 13, tzinfo=datetime.timezone.utc), 3, 1.73, -73.952518, 40.768563, -73.953733, 40.778597, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '4rQKkzLuVgAmqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 25, tzinfo=datetime.timezone.utc), 3, 1.66, -74.000512, 40.71854, -73.995235, 40.739718, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '9hIjbTykx668ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 27, tzinfo=datetime.timezone.utc), 2, 1.6, -73.983998, 40.74329, -73.982682, 40.760282, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Xr3wG3UI/wWrtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 55, tzinfo=datetime.timezone.utc), 2, 1.16, -73.976607, 40.775335, -73.973463, 40.763372, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '8WXQeT7bqv0+Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 8, tzinfo=datetime.timezone.utc), 1, 1.47, -73.989392, 40.757243, -73.97082, 40.76456, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'rDVFtvi6bq1t2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 34, tzinfo=datetime.timezone.utc), 1, 2.48, -73.975823, 40.7805, -73.991697, 40.75148, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Xo7fZTgPaxHHmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 28, tzinfo=datetime.timezone.utc), 5, 1.93, -73.97368, 40.785477, -73.946478, 40.772522, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '7f3vKx45LddPkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 50, tzinfo=datetime.timezone.utc), 1, 1.09, -74.0105, 40.720247, -74.012573, 40.708033, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'bQ0NT5wrCspyHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 49, tzinfo=datetime.timezone.utc), 1, 1.85, -73.994337, 40.74082, -73.981982, 40.762517, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'XtB6zdyi2riCeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 22, tzinfo=datetime.timezone.utc), 1, 2.52, -73.978442, 40.745177, -73.977958, 40.715723, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'PsnniQpazEsV7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 49, tzinfo=datetime.timezone.utc), 5, 1.39, -73.972842, 40.752435, -73.98182, 40.759298, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'KCN9fDjvz0lCSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 2, tzinfo=datetime.timezone.utc), 3, 1.79, -73.97889, 40.777305, -73.993007, 40.75516, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'pGLMp6KvaXSYZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 46, tzinfo=datetime.timezone.utc), 1, 2.09, -73.95887, 40.783652, -73.979765, 40.765903, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'RyZHCfXOFWc7Ag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 4, 47, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 4, 55, 2, tzinfo=datetime.timezone.utc), 1, 2.7, -74.004643, 40.730243, -73.987212, 40.760993, 'Cash', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'Nr3UAtWrpzcrMg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 37, tzinfo=datetime.timezone.utc), 2, 2.38, -73.94413, 40.775815, -73.97013, 40.752108, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'KSPgNZ1paER5Mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 57, tzinfo=datetime.timezone.utc), 2, 1.63, -73.979138, 40.781985, -73.980252, 40.76446, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ykAYuyEEQnhHvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 16, tzinfo=datetime.timezone.utc), 3, 1.88, -73.969847, 40.761363, -73.949393, 40.771078, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'o9RfMSmQHoIRow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 54, tzinfo=datetime.timezone.utc), 5, 1.3, -73.977737, 40.763818, -73.960093, 40.76042, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'kPnqLlAJPSjfxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.87, -73.995377, 40.73678, -73.973895, 40.743208, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ge5TnKVqXEWeaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 51, tzinfo=datetime.timezone.utc), 2, 2.56, -74.009647, 40.709522, -74.006608, 40.743235, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'YAfpSuahaVpXvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 42, tzinfo=datetime.timezone.utc), 1, 2.06, -73.969882, 40.756887, -73.950983, 40.774692, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '08E8hV5sJVCqJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.67, -73.955643, 40.768422, -73.976748, 40.759928, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'eovYKoJ2fHM2BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 30, tzinfo=datetime.timezone.utc), 5, 2.41, -73.994465, 40.750898, -73.97613, 40.78056, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'x/zEv8lah0oPBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 13, tzinfo=datetime.timezone.utc), 2, 1.87, -73.974527, 40.751188, -73.95302, 40.76491, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'wrRn/g0uahFj5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 41, tzinfo=datetime.timezone.utc), 1, 2.54, -73.976732, 40.787918, -73.972697, 40.762168, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '+9Nu1ZubwZ5jSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 6, tzinfo=datetime.timezone.utc), 1, 1.78, -73.994312, 40.750965, -73.987758, 40.767138, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'mPe2DAmckj2eDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 7, tzinfo=datetime.timezone.utc), 1, 1.65, -73.999197, 40.739265, -73.976905, 40.738978, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'qbNOlwKWr7iTbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 44, tzinfo=datetime.timezone.utc), 3, 2.72, -74.005683, 40.72718, -73.993912, 40.757313, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'dXOEszjE6OCxmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 42, tzinfo=datetime.timezone.utc), 5, 1.61, -73.95511, 40.784367, -73.959668, 40.765813, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'bkBsIIEMVLCdIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 29, tzinfo=datetime.timezone.utc), 1, 2.03, -73.987723, 40.750903, -73.971878, 40.757053, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lV1bBfhTT2LYEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 31, tzinfo=datetime.timezone.utc), 3, 2.15, -73.954687, 40.783042, -73.968395, 40.759348, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ljKalECH7LIzBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 38, tzinfo=datetime.timezone.utc), 3, 2.42, -73.962267, 40.799997, -73.984642, 40.76929, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'wp7A4Tz5Fm2HQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 4, tzinfo=datetime.timezone.utc), 2, 1.23, -73.991332, 40.750732, -73.985773, 40.75242, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'dGPOnvnG1f7D5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 16, tzinfo=datetime.timezone.utc), 5, 2.35, -74.01574, 40.711063, -73.999477, 40.73375, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'OgT0PW8bLiuEvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 36, tzinfo=datetime.timezone.utc), 1, 2.65, -73.992977, 40.72438, -73.969103, 40.75266, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'dx+xDtXkIGOuZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 12, tzinfo=datetime.timezone.utc), 5, 1.37, -73.955958, 40.779263, -73.969943, 40.762192, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'GbO1xJY7lGrwAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 2, tzinfo=datetime.timezone.utc), 1, 1.93, -73.988183, 40.769413, -73.962872, 40.775337, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '+5dlhssOV8nOjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 50, tzinfo=datetime.timezone.utc), 5, 2.08, -73.984177, 40.748958, -74.007963, 40.731782, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'E/s65yYTiFm2uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 36, tzinfo=datetime.timezone.utc), 1, 2.36, -73.990683, 40.723658, -73.990428, 40.748403, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'lgynP56+0jtixg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 20, tzinfo=datetime.timezone.utc), 2, 1.53, -73.972435, 40.76511, -73.954682, 40.769525, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'WQI8faiwxFbgtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 57, tzinfo=datetime.timezone.utc), 5, 1.54, -73.996918, 40.742333, -73.975182, 40.741412, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'XaUw0x29cIfYiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 35, tzinfo=datetime.timezone.utc), 5, 1.8, -73.968033, 40.755613, -73.986152, 40.739223, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '0Hjy17adMg2qZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 23, tzinfo=datetime.timezone.utc), 1, 2.36, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'BOtOH3ekt1BBCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 14, tzinfo=datetime.timezone.utc), 1, 2.14, -73.95521, 40.777588, -73.979927, 40.770927, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'wYrr9yjdAO27xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 9, tzinfo=datetime.timezone.utc), 1, 2.75, -74.000195, 40.727125, -73.979787, 40.760285, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', '0TQxEP2w4/MAmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 4, tzinfo=datetime.timezone.utc), 1, 1.36, -73.992615, 40.76864, -73.97727, 40.759262, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'yl60I/1lhy6L0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 20, tzinfo=datetime.timezone.utc), 1, 1.74, -73.995348, 40.733333, -73.981008, 40.752047, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'ieTH4zoMspi8Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 47, tzinfo=datetime.timezone.utc), 1, 1.31, -73.964453, 40.776385, -73.951357, 40.783897, 'CASH', 8.5, 0.0, 0.0, 0.0, 8.5, '1705685161.48292', 'rKn0j5L9LM2pKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 52, tzinfo=datetime.timezone.utc), 1, 2.94, -73.983898, 40.770443, -73.961638, 40.802263, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'E/msQ2n9T7a5dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 48, tzinfo=datetime.timezone.utc), 1, 2.69, -73.999922, 40.733168, -73.974505, 40.764555, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'psmg7ePir3xXAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 30, tzinfo=datetime.timezone.utc), 2, 2.29, -73.970903, 40.79856, -73.98694, 40.77111, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'B04AzEZWNsd8zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.94, -73.984227, 40.74318, -73.990568, 40.761107, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'olROKSPRChX0Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.83, -73.99352, 40.721612, -73.9821, 40.745945, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '/IwNShRGcl0gyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 30, tzinfo=datetime.timezone.utc), 1, 2.05, -73.972683, 40.785705, -73.991605, 40.759823, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'nhqsIBW2XNQ/4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 3, tzinfo=datetime.timezone.utc), 2, 2.53, -73.990033, 40.772177, -74.0056, 40.740983, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'lofFG5bdgNH0ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 51, tzinfo=datetime.timezone.utc), 1, 1.79, -73.999883, 40.731193, -73.981832, 40.743817, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'SUvU3G4B8OdlLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 11, tzinfo=datetime.timezone.utc), 2, 2.46, -73.969175, 40.75829, -73.954982, 40.787285, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'gT9R08ou5vnOYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 27, tzinfo=datetime.timezone.utc), 3, 2.05, -73.967823, 40.758855, -73.989075, 40.741177, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'h/2fUKu/cxMFMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 16, tzinfo=datetime.timezone.utc), 1, 1.62, -73.984152, 40.770017, -73.977445, 40.75361, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'n22j0G7vt0YJuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 3, tzinfo=datetime.timezone.utc), 5, 2.45, -74.005505, 40.732278, -73.991115, 40.758082, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '15W7+WSusTHRDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 15, tzinfo=datetime.timezone.utc), 1, 2.45, -73.996685, 40.756088, -73.979233, 40.781915, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'N1YBSUbw/Prliw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 23, tzinfo=datetime.timezone.utc), 2, 1.8, -73.971308, 40.755755, -73.99139, 40.755637, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'fXKjW8r0qsDDjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 21, tzinfo=datetime.timezone.utc), 1, 1.15, -73.987618, 40.75856, -73.974282, 40.754902, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'YvDwe9iojecfHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 40, tzinfo=datetime.timezone.utc), 1, 2.42, -73.984963, 40.747732, -73.999783, 40.719143, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'sR5+Rhwe4HNqyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 2, tzinfo=datetime.timezone.utc), 1, 2.84, -73.989292, 40.720385, -73.97112, 40.754173, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Zau56fijZKMvjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 36, tzinfo=datetime.timezone.utc), 1, 2.05, -73.983373, 40.751278, -73.963295, 40.774267, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Gb0qyT9/vw+llw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 34, tzinfo=datetime.timezone.utc), 4, 1.86, -73.99984, 40.738423, -73.978503, 40.744762, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Uq0Wg5xW4UkBRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 10, tzinfo=datetime.timezone.utc), 1, 2.41, -73.992337, 40.745068, -73.98409, 40.721483, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'mrtshVf+6V4U9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 11, tzinfo=datetime.timezone.utc), 1, 2.61, -74.000543, 40.730022, -73.983553, 40.75898, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '/fRuYDrIjYlqCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 57, tzinfo=datetime.timezone.utc), 2, 2.13, -73.99002, 40.755948, -73.96192, 40.759622, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '4CyNwGJnw+qpyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 47, tzinfo=datetime.timezone.utc), 5, 2.18, -74.000155, 40.743422, -73.974622, 40.7539, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'ry0ZkhkVOYTDMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 13, tzinfo=datetime.timezone.utc), 2, 2.67, -73.978637, 40.745708, -73.95365, 40.777077, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '89ejstp674SlEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 15, tzinfo=datetime.timezone.utc), 1, 2.08, -73.987442, 40.720193, -74.007198, 40.707582, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '8IE78sk1ULpSuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 17, tzinfo=datetime.timezone.utc), 5, 2.21, -73.968437, 40.759655, -73.976742, 40.779128, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Xh7XRCfVXO4lbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 3, tzinfo=datetime.timezone.utc), 3, 2.24, -73.995547, 40.724967, -73.991323, 40.750207, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'dv+i9o5GqQ9d1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 15, tzinfo=datetime.timezone.utc), 3, 1.79, -73.986443, 40.726128, -74.006157, 40.735023, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'nCn1kJJyk5R2AA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 24, tzinfo=datetime.timezone.utc), 1, 2.45, -73.988717, 40.769142, -73.985142, 40.747333, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '0vlcWrApq3K6sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 1, 7, tzinfo=datetime.timezone.utc), 2, 2.53, -73.843755, 40.721425, -73.813543, 40.720227, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'wMyGi+O3GGOE/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 37, tzinfo=datetime.timezone.utc), 5, 2.24, -73.965228, 40.766105, -73.993733, 40.759778, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '/ViL6KCG8HNQQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 32, tzinfo=datetime.timezone.utc), 2, 2.13, -73.992105, 40.694582, -73.958825, 40.691532, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'ssDOAE+c+/EZWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 28, tzinfo=datetime.timezone.utc), 1, 2.11, -73.965088, 40.759212, -73.996092, 40.763955, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'n89p6Cypnn9RUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 9, tzinfo=datetime.timezone.utc), 5, 2.27, -73.989988, 40.739128, -74.010347, 40.717868, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'd/jwJ387FDIqBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 32, tzinfo=datetime.timezone.utc), 1, 2.3, -73.972863, 40.759905, -73.989798, 40.735535, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'IkphC/eJGm0FSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 3, tzinfo=datetime.timezone.utc), 5, 2.11, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'kUTTeCdgBUS24w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 2, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 2, 13, tzinfo=datetime.timezone.utc), 1, 2.35, -73.84422, 40.721323, -73.849508, 40.696198, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'JXz7VlX5l3oOtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 44, tzinfo=datetime.timezone.utc), 3, 2.41, -73.981508, 40.756143, -73.987917, 40.727923, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '4qanZPncF1WpCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 19, tzinfo=datetime.timezone.utc), 5, 2.59, 0.0, 0.0, 0.0, 0.0, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'PKmglGRVic6nYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 0, tzinfo=datetime.timezone.utc), 1, 2.32, -74.000813, 40.729085, -73.979538, 40.749707, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'J0b863nrPdr2UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 36, tzinfo=datetime.timezone.utc), 3, 2.68, -74.004497, 40.74211, -73.981937, 40.762992, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'E2Jab5+/QDb9ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 54, tzinfo=datetime.timezone.utc), 3, 1.52, -73.981863, 40.736922, -73.987263, 40.722272, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'PU1B7OPm+V95Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 24, tzinfo=datetime.timezone.utc), 1, 2.12, -73.981475, 40.772652, -73.971055, 40.753302, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '8cag4bYiHNS9Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 46, tzinfo=datetime.timezone.utc), 1, 1.87, -73.858397, 40.72444, -73.852047, 40.725165, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Eb9f0Cg19Yh/4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 36, tzinfo=datetime.timezone.utc), 1, 2.4, -74.011613, 40.709238, -73.992163, 40.690077, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '/woDl08PyJrv7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 16, tzinfo=datetime.timezone.utc), 1, 2.05, -74.003228, 40.7439, -73.99459, 40.724865, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'RvXBDgt8jFm41g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 58, tzinfo=datetime.timezone.utc), 1, 2.31, -74.00158, 40.707955, -73.992713, 40.735645, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'H4YFqCpXB/R6nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 23, tzinfo=datetime.timezone.utc), 3, 1.85, -73.982425, 40.739943, -73.999208, 40.728987, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '1SlsiOC73gTCWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 21, tzinfo=datetime.timezone.utc), 3, 2.2, -73.98288, 40.754282, -73.98488, 40.776995, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'fXhGhPMygH2rUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 40, tzinfo=datetime.timezone.utc), 3, 1.71, -73.97729, 40.726178, -74.001718, 40.737573, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'WD483zEOBUHQ4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 56, tzinfo=datetime.timezone.utc), 2, 2.76, -73.982548, 40.739582, -73.956705, 40.771097, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '4rbQLOQy2XFNWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 1, tzinfo=datetime.timezone.utc), 6, 2.27, -73.979515, 40.780875, -73.949037, 40.780147, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'EFsUZ/1AjhRagQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 8, tzinfo=datetime.timezone.utc), 5, 2.46, -73.976238, 40.758823, -73.981322, 40.782622, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'j5RPRdPJLjTxig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 36, tzinfo=datetime.timezone.utc), 1, 2.14, -73.984758, 40.759983, -73.98375, 40.741298, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'YxnUdyuPaywUQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 52, tzinfo=datetime.timezone.utc), 3, 2.4, -73.983393, 40.75559, -74.004513, 40.733435, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'nRfdFYr2TznZag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 9, tzinfo=datetime.timezone.utc), 4, 1.24, -73.98553, 40.732792, -73.998078, 40.722245, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'dg4g/iz/4LiCqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 24, tzinfo=datetime.timezone.utc), 1, 2.32, -73.979723, 40.771063, -73.958443, 40.800047, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'eETmEs66w0a44A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 59, tzinfo=datetime.timezone.utc), 1, 2.24, -73.9931, 40.752505, -73.990137, 40.776053, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'XvwMhpTrO6eqXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 41, tzinfo=datetime.timezone.utc), 1, 1.93, -74.005513, 40.727098, -73.980667, 40.727185, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'VFNPjW6jP4LM2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 13, tzinfo=datetime.timezone.utc), 1, 2.18, -73.987922, 40.7241, -73.997968, 40.745247, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'ZfORvmUg8ZhouA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 45, tzinfo=datetime.timezone.utc), 1, 2.61, -74.004665, 40.752015, -73.975848, 40.764947, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'CditHD0YyP1JDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 31, tzinfo=datetime.timezone.utc), 1, 2.79, -73.998338, 40.71317, -73.974753, 40.725332, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'uxxpYXPKz79GNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 29, tzinfo=datetime.timezone.utc), 5, 2.15, -73.984297, 40.675108, -73.96246, 40.687128, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '+Tmjv4hBfvfK/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 52, tzinfo=datetime.timezone.utc), 1, 2.51, -73.976607, 40.748268, -73.980957, 40.773222, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Wia374aTjY8k7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 22, tzinfo=datetime.timezone.utc), 1, 2.42, -73.97302, 40.764005, -73.997377, 40.743233, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '0bOWExCojZMskA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 7, tzinfo=datetime.timezone.utc), 2, 2.46, -73.997797, 40.746258, -73.970408, 40.76379, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '7AZmMpjCfQiOzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 44, tzinfo=datetime.timezone.utc), 1, 2.47, -73.95915, 40.767903, -73.984445, 40.747178, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'Lm++F2VHlrWSHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 26, tzinfo=datetime.timezone.utc), 1, 2.2, -74.010325, 40.70958, -73.991805, 40.735035, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'jSqdK5as0EozFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 0, tzinfo=datetime.timezone.utc), 2, 2.74, -74.01576, 40.714197, -73.986727, 40.710875, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'J9flHSqV4BiOSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 10, tzinfo=datetime.timezone.utc), 2, 1.97, -74.008083, 40.714873, -73.991797, 40.735532, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'i51cX6TanxyTcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 42, tzinfo=datetime.timezone.utc), 3, 2.07, -73.95384, 40.779118, -73.97747, 40.774033, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'WgjDSKRBm2YjZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 15, tzinfo=datetime.timezone.utc), 1, 2.09, -74.006787, 40.736322, -73.977648, 40.738268, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'ZOnjJ/4990Kc8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 26, tzinfo=datetime.timezone.utc), 5, 2.41, -73.992702, 40.743092, -73.985662, 40.768657, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'd2je/eR4Mz3DrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 40, tzinfo=datetime.timezone.utc), 4, 2.57, -73.993037, 40.743718, -73.991935, 40.71758, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'j5crxQX49XqSqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 2, tzinfo=datetime.timezone.utc), 1, 1.84, -73.990143, 40.730358, -73.990073, 40.749638, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'XRvflxBx+imGsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 23, tzinfo=datetime.timezone.utc), 1, 1.43, -73.987518, 40.74372, -74.005265, 40.740305, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'EzMrr1LybTRkkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 12, tzinfo=datetime.timezone.utc), 2, 2.4, -73.971627, 40.755233, -73.97703, 40.779165, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'WRQX6GYEQjhUVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 28, tzinfo=datetime.timezone.utc), 1, 2.48, -73.955135, 40.766772, -73.976658, 40.74372, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'YVk5dLMFs5jPgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 52, tzinfo=datetime.timezone.utc), 5, 1.68, -73.973808, 40.751997, -73.994005, 40.763907, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'sfr5zJXn6GMerw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 43, tzinfo=datetime.timezone.utc), 1, 2.68, -73.994602, 40.750555, -73.962528, 40.763535, 'Credit', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'snkOJ56Dw51b4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 35, tzinfo=datetime.timezone.utc), 4, 3.12, -74.003945, 40.725625, -73.978617, 40.763955, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'QBsrI4P0lFAK2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 9, tzinfo=datetime.timezone.utc), 5, 2.45, -73.977152, 40.751808, -74.005297, 40.74027, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'DHSHidwmxlgrbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 24, tzinfo=datetime.timezone.utc), 5, 2.22, -73.844445, 40.721402, -73.816305, 40.727547, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', '1ehhCNSGheGKwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 57, tzinfo=datetime.timezone.utc), 5, 2.65, -73.965637, 40.754463, -73.983768, 40.73096, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'chBFP2cPJ0szwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 40, tzinfo=datetime.timezone.utc), 1, 2.17, -73.986048, 40.754835, -73.981563, 40.779132, 'CASH', 8.5, 0.5, 0.0, 0.0, 9.0, '1705685161.48292', 'HHbLUK/m/ab6Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 12, tzinfo=datetime.timezone.utc), 2, 2.73, -74.005305, 40.7256, -73.981927, 40.756378, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '736D6BC3D7DG8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 3, tzinfo=datetime.timezone.utc), 5, 2.1, -73.9908, 40.756033, -74.001742, 40.735273, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '+rviRc+/7ttJ0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 23, tzinfo=datetime.timezone.utc), 2, 2.08, -73.971772, 40.759818, -73.947103, 40.771547, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'cZAy05wilW133Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.99, -73.954818, 40.76524, -73.969262, 40.753565, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '4lw17bEb0pMhKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 43, tzinfo=datetime.timezone.utc), 5, 2.06, -73.981878, 40.778212, -73.956785, 40.771558, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '+i51dlOttQGaig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 49, tzinfo=datetime.timezone.utc), 2, 1.88, -73.981658, 40.773898, -73.980142, 40.752702, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'IZ0j7uuinkQ8jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 6, tzinfo=datetime.timezone.utc), 5, 1.49, -73.975007, 40.76509, -73.982883, 40.771948, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'BN42oYT7EZoegw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 53, tzinfo=datetime.timezone.utc), 5, 2.35, -73.992817, 40.737133, -73.985558, 40.762893, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'HC+OdbC30RSC0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 44, tzinfo=datetime.timezone.utc), 1, 2.15, -73.9577, 40.784563, -73.984752, 40.779402, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '86rJ8cG+L88hbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 53, tzinfo=datetime.timezone.utc), 1, 2.27, -73.962805, 40.77827, -73.952928, 40.780158, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'u7hWZ8IhwcHRoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 1, tzinfo=datetime.timezone.utc), 2, 2.58, -73.984655, 40.75932, -73.985578, 40.731565, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'O9HcO3hs50KQqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 21, tzinfo=datetime.timezone.utc), 1, 1.53, -73.969047, 40.761138, -73.977535, 40.774355, 'Credit', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'Tg0bkPZiCQzdaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 30, tzinfo=datetime.timezone.utc), 1, 2.18, -73.994682, 40.72498, -73.992272, 40.749365, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'P647BdyOauQJvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 55, tzinfo=datetime.timezone.utc), 1, 1.99, -73.98563, 40.73524, -74.008492, 40.73466, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'EH9fhYGTlK5bpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.49, -73.953782, 40.791063, -73.981817, 40.773188, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'PHf+OdgNGn5mWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 49, tzinfo=datetime.timezone.utc), 1, 1.2, -73.961185, 40.756547, -73.978488, 40.756638, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'HxgknSVQf2C2eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 43, tzinfo=datetime.timezone.utc), 3, 1.5, -74.006693, 40.716343, -73.98883, 40.722945, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'ut508Co6pNXaJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 5, tzinfo=datetime.timezone.utc), 1, 1.87, -73.986487, 40.740542, -73.987975, 40.75861, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'yerYxjPoMmchJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 51, tzinfo=datetime.timezone.utc), 5, 2.33, -73.982373, 40.761872, -73.987203, 40.736598, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '9DcoRcO+uoJdFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 26, tzinfo=datetime.timezone.utc), 1, 2.28, -74.005858, 40.740215, -74.015958, 40.717603, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'gZBNjknw8NrYHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 54, tzinfo=datetime.timezone.utc), 1, 1.33, -73.969377, 40.766473, -73.984892, 40.76844, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '8VTxp73UfJqFdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 3, tzinfo=datetime.timezone.utc), 1, 2.69, -73.987712, 40.770307, -73.969488, 40.802027, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'sED6a8Oh7lGnxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 0, tzinfo=datetime.timezone.utc), 1, 2.55, -73.95977, 40.771262, -73.953753, 40.799535, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'qwcGCCFpWuj0mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 49, tzinfo=datetime.timezone.utc), 5, 2.51, -73.991803, 40.742337, -73.962627, 40.758627, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '8IjammCM+NnBqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 19, tzinfo=datetime.timezone.utc), 2, 1.82, -73.996495, 40.724397, -74.006127, 40.736852, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'iDZXpYbF+QajvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.94, -74.007015, 40.741695, -74.013035, 40.717353, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '8ljgvg9rtWqyMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 45, tzinfo=datetime.timezone.utc), 1, 1.93, -74.000633, 40.737113, -73.988003, 40.719103, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'AHIAw1iEq3tspw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 33, tzinfo=datetime.timezone.utc), 5, 1.65, -73.983158, 40.768543, -73.968232, 40.752695, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'abMUcsVaAL1rRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 50, tzinfo=datetime.timezone.utc), 1, 1.84, -73.977927, 40.736568, -73.979907, 40.750142, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'uFLATKII322HXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 45, tzinfo=datetime.timezone.utc), 1, 2.14, -73.978212, 40.773817, -73.953142, 40.779953, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'T+zCwTi/OlnC4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 1, tzinfo=datetime.timezone.utc), 5, 1.03, -73.990157, 40.7616, -73.99498, 40.750207, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'InCiwFu8V4dDNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 42, tzinfo=datetime.timezone.utc), 1, 2.25, -73.95936, 40.77435, -73.980127, 40.749023, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'RxEVF4frw0ha3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 18, tzinfo=datetime.timezone.utc), 1, 2.06, -73.951847, 40.778052, -73.980822, 40.780855, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'AIqy8WBMjuAsJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 40, tzinfo=datetime.timezone.utc), 1, 1.62, -73.96202, 40.759458, -73.960223, 40.776347, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'PSdkQ98rTEGsJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 42, tzinfo=datetime.timezone.utc), 1, 2.18, -74.003058, 40.727993, -73.979562, 40.743618, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', 'hdH05X5taLeSzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 17, tzinfo=datetime.timezone.utc), 2, 1.54, -73.995917, 40.764022, -73.972305, 40.753695, 'CASH', 8.5, 1.0, 0.0, 0.0, 9.5, '1705685161.48292', '8VWWlmfJnlfp2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 44, tzinfo=datetime.timezone.utc), 1, 0.0, 0.0, 0.0, -73.949325, 40.831935, 'Credit', 10.0, 0.0, 0.0, 0.0, 10.0, '1705685161.48292', 'gwcgTfYHI8izAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 29, tzinfo=datetime.timezone.utc), 1, 2.6, -73.9943, 40.751155, -73.97378, 40.782977, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'fkXibjm/lqwS9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 27, tzinfo=datetime.timezone.utc), 1, 1.96, -73.979552, 40.73529, -73.979867, 40.735138, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '5dFUj8yXktdqbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 38, tzinfo=datetime.timezone.utc), 1, 3.21, -74.005265, 40.72894, -73.972673, 40.756402, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'KLX9k6DmsTuCFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 4, tzinfo=datetime.timezone.utc), 1, 2.95, -73.992062, 40.731247, -73.97144, 40.764962, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'JWdSrxiZhkeRLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 20, tzinfo=datetime.timezone.utc), 5, 3.66, -74.010418, 40.71172, -73.984735, 40.75792, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '8ZZ8uanzg3anEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 7, tzinfo=datetime.timezone.utc), 3, 2.91, -73.953682, 40.779587, -73.920423, 40.806372, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'rJ0EXPpwt3Yipw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 55, tzinfo=datetime.timezone.utc), 1, 2.51, -73.992322, 40.759312, -73.965927, 40.769373, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'NVkAvpmJu29icA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 47, tzinfo=datetime.timezone.utc), 1, 0.25, -74.005637, 40.750805, -74.006737, 40.718917, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '5O74Hki7A3xtUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 24, tzinfo=datetime.timezone.utc), 1, 1.57, -73.991868, 40.750898, -73.980963, 40.749985, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'mKM4lXImzBhUSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 27, tzinfo=datetime.timezone.utc), 1, 3.24, -73.959478, 40.79885, -73.983623, 40.760985, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'j+iimvaeJR84VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 51, tzinfo=datetime.timezone.utc), 1, 2.94, -73.981425, 40.750627, -74.008905, 40.724397, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'qCdLMAAoejlGjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 33, tzinfo=datetime.timezone.utc), 1, 2.58, -73.955042, 40.773273, -73.982255, 40.751528, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'hQq7fYCJxUtRMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 31, tzinfo=datetime.timezone.utc), 5, 1.37, -73.970468, 40.768165, -73.984617, 40.758907, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Psc68h7J3V3HiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 31, tzinfo=datetime.timezone.utc), 5, 3.16, -73.979703, 40.749048, -73.948538, 40.781578, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'tNo8P638I+Zo1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 45, tzinfo=datetime.timezone.utc), 5, 1.78, -73.972425, 40.781133, -73.975623, 40.761067, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'm7uxsq0zXkFgdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 32, tzinfo=datetime.timezone.utc), 1, 2.03, -73.977987, 40.773565, -73.962008, 40.768622, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'GbapWT1F2Gu5vA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 47, tzinfo=datetime.timezone.utc), 2, 2.43, -73.986505, 40.744052, -74.002767, 40.716327, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'pqT+xJXTVwAXTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 5, tzinfo=datetime.timezone.utc), 3, 2.65, -73.972878, 40.761065, -73.977313, 40.789843, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Fc2BM5JsUGQelg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 20, tzinfo=datetime.timezone.utc), 1, 3.66, -74.008995, 40.710978, -73.985932, 40.756555, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'UMqCCz41WfEtGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 39, tzinfo=datetime.timezone.utc), 1, 2.29, -73.979538, 40.747192, -73.99653, 40.716495, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'SVaAuR9b3U+ANg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 37, tzinfo=datetime.timezone.utc), 1, 1.21, -73.980313, 40.755258, -73.995657, 40.749203, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'x6Wbn/AvaN6C5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 17, tzinfo=datetime.timezone.utc), 5, 2.92, -73.968825, 40.75481, -74.000895, 40.733287, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'dWRCI2TxkfxFuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 8, tzinfo=datetime.timezone.utc), 1, 2.39, -73.982078, 40.778712, -73.954222, 40.770227, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'RnxovKpXkQ+nSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 53, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978425, 40.753413, -73.982583, 40.76649, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'TD9OC0GvF0l/pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 42, tzinfo=datetime.timezone.utc), 2, 2.91, -73.973588, 40.759407, -73.998313, 40.724818, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'DdBiL8UCraYnuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 30, tzinfo=datetime.timezone.utc), 4, 2.77, -73.969367, 40.784908, -73.978455, 40.75424, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'PLMjCCozcm50kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 42, tzinfo=datetime.timezone.utc), 1, 3.02, -74.004947, 40.74078, -73.982658, 40.765033, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'PaifnFZyrfAQKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 25, tzinfo=datetime.timezone.utc), 2, 3.29, -73.974513, 40.7546, -73.974827, 40.787858, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'ENLplqxGeNjSLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 19, tzinfo=datetime.timezone.utc), 1, 1.58, -73.983203, 40.756923, -73.975892, 40.770825, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'kyhu3hxSGhDK5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 40, tzinfo=datetime.timezone.utc), 1, 3.4, -73.997098, 40.67601, -74.004365, 40.716225, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'OgzQaggtP2TySQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 15, tzinfo=datetime.timezone.utc), 6, 2.77, -73.991035, 40.755938, -73.955875, 40.765832, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'EdtIHCV/fWTwZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 35, tzinfo=datetime.timezone.utc), 1, 3.34, -74.008052, 40.723168, -73.97382, 40.75538, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'iSb8dIx9gWb0mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 8, tzinfo=datetime.timezone.utc), 5, 1.85, -74.008165, 40.738817, -73.997093, 40.725233, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'b3i82rBS22RTbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 43, tzinfo=datetime.timezone.utc), 1, 2.59, -73.953798, 40.781903, -73.988158, 40.779333, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'bKO9wqlCqHJp2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 14, tzinfo=datetime.timezone.utc), 2, 2.85, -73.972683, 40.78698, -73.9694, 40.756663, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'gk7V3rUTjDJoSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 0, tzinfo=datetime.timezone.utc), 1, 1.62, -73.978672, 40.763748, -73.993172, 40.755307, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'VIqJhK5NAm8prA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 1, 2.9, -73.988968, 40.757922, -74.00806, 40.730992, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'ZbRz8mNIvYNvOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 19, 59, tzinfo=datetime.timezone.utc), 2, 3.02, -73.955355, 40.764348, -73.990557, 40.745323, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Tozczzfg7kXLUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 23, tzinfo=datetime.timezone.utc), 3, 1.32, -73.991218, 40.750267, -73.97821, 40.749965, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Gf/Hht9pplytGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 56, tzinfo=datetime.timezone.utc), 5, 2.43, -73.979573, 40.771203, -73.953207, 40.782853, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'SV/udG8asyiPEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 34, tzinfo=datetime.timezone.utc), 2, 3.33, -73.974392, 40.750618, -73.99275, 40.713962, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Tq8jM3N0Rivvgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 28, tzinfo=datetime.timezone.utc), 1, 2.16, -73.980137, 40.734438, -74.008023, 40.728685, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'kQJ+lJzsRzqRuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 32, tzinfo=datetime.timezone.utc), 2, 1.34, -73.968655, 40.754278, -73.993135, 40.762792, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'K7tdSra3/ju8kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 24, tzinfo=datetime.timezone.utc), 5, 2.68, -73.99715, 40.742028, -73.99076, 40.771835, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'h0C+slNDhFOw0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 20, tzinfo=datetime.timezone.utc), 2, 1.55, -73.963385, 40.77159, -73.983123, 40.76195, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'wAjcxcOK84b/Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 40, tzinfo=datetime.timezone.utc), 1, 2.63, -74.003315, 40.71426, -73.975465, 40.724955, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'vnSU4L/m//b2mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 34, tzinfo=datetime.timezone.utc), 1, 2.55, -73.981155, 40.758655, -73.953088, 40.778317, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'otHIrR8ViMwceg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 30, tzinfo=datetime.timezone.utc), 3, 2.59, -73.989825, 40.75697, -73.958397, 40.76876, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'v2VB7GbR8VjqMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 28, tzinfo=datetime.timezone.utc), 2, 2.58, -73.999602, 40.738582, -73.97839, 40.766812, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'EiS+q0pkkHrH6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 8, tzinfo=datetime.timezone.utc), 5, 2.2, -73.984008, 40.780718, -73.960182, 40.770522, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'ysttl5hLSIWWvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 38, tzinfo=datetime.timezone.utc), 1, 2.09, -73.98831, 40.769765, -73.98831, 40.769765, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'jPvSqDCS/mY/7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 33, tzinfo=datetime.timezone.utc), 1, 0.55, -73.970597, 40.760785, -73.984673, 40.7512, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'A61s1YJ7lsNJDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 3, tzinfo=datetime.timezone.utc), 1, 2.49, -73.981483, 40.749898, -73.959273, 40.781198, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'kTBDxXeC10yj8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 34, tzinfo=datetime.timezone.utc), 1, 3.15, -73.98554, 40.75274, -73.95693, 40.784307, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'uUPBQE7pulh0Ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 0, tzinfo=datetime.timezone.utc), 1, 3.13, -73.991707, 40.764688, -74.009865, 40.722333, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'wzCZCLXnQkd/gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 31, tzinfo=datetime.timezone.utc), 5, 1.99, -73.974908, 40.756275, -74.000588, 40.757837, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'CVDfeyGqtDRD6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 59, tzinfo=datetime.timezone.utc), 5, 2.48, -73.966522, 40.772227, -73.974422, 40.795875, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'LhSEuKPxLjoe7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 8, tzinfo=datetime.timezone.utc), 1, 2.83, 0.0, 0.0, 0.0, 0.0, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'MnuWWUEjf+NXGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 54, tzinfo=datetime.timezone.utc), 1, 2.79, -74.01612, 40.711708, -73.993247, 40.737788, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'sCFHAlZkudkBng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 12, tzinfo=datetime.timezone.utc), 5, 1.97, -73.972572, 40.780987, -73.971445, 40.763542, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'rgD7SFnr7R9c0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 7, tzinfo=datetime.timezone.utc), 1, 2.91, -73.989448, 40.740737, -73.96361, 40.762248, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Gl8YnQR+1CKXbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 3, tzinfo=datetime.timezone.utc), 4, 3.32, -73.987363, 40.72466, -73.957458, 40.766212, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '9eeVxNrVFGMUYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 31, tzinfo=datetime.timezone.utc), 1, 2.58, -74.000108, 40.717862, -73.984625, 40.748278, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'JEzNIHfVJqWAtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 24, tzinfo=datetime.timezone.utc), 5, 2.75, -73.983153, 40.766577, -73.96216, 40.779497, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'ZqXgkAp8mi7XFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 36, tzinfo=datetime.timezone.utc), 2, 2.99, -74.004727, 40.716235, -73.98486, 40.75377, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'R0QvI8tTm5Vk3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 5, tzinfo=datetime.timezone.utc), 4, 3.52, -73.97272, 40.764928, -73.939013, 40.805148, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'ceTjQnziSaPHLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 47, tzinfo=datetime.timezone.utc), 5, 3.2, -73.998277, 40.72627, -73.954717, 40.716662, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Jw19dNfTjdYqIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 12, tzinfo=datetime.timezone.utc), 1, 2.14, -74.006338, 40.751207, -73.975343, 40.74794, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'yNfR2mZNuPOZRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 43, tzinfo=datetime.timezone.utc), 2, 2.71, -73.981017, 40.725348, -73.957008, 40.714178, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'H5Lv2t4cUU9R4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 12, tzinfo=datetime.timezone.utc), 2, 3.32, -73.989568, 40.745597, -73.981598, 40.778673, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'XOce04Wn9QqV8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 19, tzinfo=datetime.timezone.utc), 2, 1.65, -73.988033, 40.75081, -73.981075, 40.764053, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'CcWIgQJ8hoSqmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 31, tzinfo=datetime.timezone.utc), 1, 2.21, -73.977773, 40.73411, -73.97697, 40.75673, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'SNLOQgLWxbstpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 32, tzinfo=datetime.timezone.utc), 1, 3.27, -73.977237, 40.733988, -73.967422, 40.76851, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '8f7yYurqhs7yDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 47, tzinfo=datetime.timezone.utc), 1, 2.84, -73.95584, 40.764007, -73.98938, 40.757773, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '+QpnwK2um8dOtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 5, tzinfo=datetime.timezone.utc), 4, 2.73, -73.990568, 40.693317, -74.00773, 40.707233, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'gQpbFDY3EoDlyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 1, 55, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 2, 8, 21, tzinfo=datetime.timezone.utc), 1, 2.9, -73.9999, 40.728482, -73.974483, 40.75846, 'Cash', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '0ZAzvaoSGLcewQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 8, tzinfo=datetime.timezone.utc), 1, 2.89, -74.016293, 40.706418, -74.007735, 40.747263, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'mz+sqVvKxazaxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 56, tzinfo=datetime.timezone.utc), 5, 3.08, -73.99704, 40.729793, -73.972885, 40.761787, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'Q+NOxUNMUHDbBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 42, tzinfo=datetime.timezone.utc), 5, 3.45, -73.993195, 40.717287, -73.980753, 40.70925, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'U4Ed3BGuaVNjqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), 1, 2.33, -74.005503, 40.738622, -73.9958, 40.716523, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'gMjf63P4iZPyGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 42, tzinfo=datetime.timezone.utc), 1, 3.2, -73.98547, 40.748115, -73.981783, 40.714553, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'fJ7N1SaJkeXUaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 42, tzinfo=datetime.timezone.utc), 1, 1.57, -73.992463, 40.735522, -73.976332, 40.748952, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', '3Ty5jiLfo+QCWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 10, tzinfo=datetime.timezone.utc), 1, 2.44, -73.975132, 40.752183, -74.004868, 40.740835, 'CASH', 10.5, 0.0, 0.0, 0.0, 10.5, '1705685161.48292', 'zDZr/EsU1abC6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 40, tzinfo=datetime.timezone.utc), 2, 3.17, -74.01102, 40.71557, -73.978778, 40.736473, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'SZzGFm199v+HmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 5, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 5, 58, tzinfo=datetime.timezone.utc), 6, 3.18, -73.979578, 40.735007, -73.984548, 40.769613, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'DL5DVxY+v8tRhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 13, tzinfo=datetime.timezone.utc), 5, 3.43, -73.98624, 40.734628, -73.954438, 40.776335, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'O0j8phFo5DElMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 13, tzinfo=datetime.timezone.utc), 1, 3.25, -73.99814, 40.745702, -73.98105, 40.784737, 'Credit', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'xRTp3x8kvnSY7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 31, tzinfo=datetime.timezone.utc), 1, 3.37, -74.010153, 40.709812, -73.985128, 40.746825, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'NpcGpC2bNGF49g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 54, tzinfo=datetime.timezone.utc), 3, 3.41, -74.00741, 40.743348, -73.968967, 40.767448, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'mX8ABD73GUhb8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 27, tzinfo=datetime.timezone.utc), 1, 3.65, -73.952155, 40.790057, -73.984908, 40.747182, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'EUaog9Ff+l5RQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 47, tzinfo=datetime.timezone.utc), 1, 3.04, -73.95584, 40.772458, -73.988115, 40.745958, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'k1NdIIWVk/vy8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 51, tzinfo=datetime.timezone.utc), 5, 3.49, -73.988897, 40.749143, -73.975847, 40.788092, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '53nSDp745WG8wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 56, tzinfo=datetime.timezone.utc), 1, 3.27, -73.985152, 40.760573, -73.996365, 40.72212, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'HWPYWOf9DpjP2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 19, tzinfo=datetime.timezone.utc), 1, 3.05, -73.98118, 40.749945, -73.980658, 40.721535, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'VJ7Eap8U0b3j2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 52, tzinfo=datetime.timezone.utc), 5, 3.16, -74.000357, 40.71827, -73.955248, 40.71046, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'oZd93TsyQkiGsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 2, tzinfo=datetime.timezone.utc), 1, 2.59, -73.994813, 40.750127, -73.993532, 40.727335, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'tvhzRooSQkeokg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 11, tzinfo=datetime.timezone.utc), 5, 2.02, -73.98384, 40.72558, -74.003688, 40.742923, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '+ak4FOP6POiwvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 34, tzinfo=datetime.timezone.utc), 1, 1.99, -74.006032, 40.739955, -73.982165, 40.746, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '59JJ/jIZ9OHTfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 59, tzinfo=datetime.timezone.utc), 2, 2.75, -73.962993, 40.810868, -73.98236, 40.77549, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'zTCY+5SmnnBAlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 57, tzinfo=datetime.timezone.utc), 3, 2.87, -74.005947, 40.735967, -73.973215, 40.754055, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'F5TGziQf1VpOMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 24, tzinfo=datetime.timezone.utc), 1, 3.53, -73.983952, 40.761245, -73.945477, 40.790333, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'S5cW9x0xKEu6UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 37, tzinfo=datetime.timezone.utc), 1, 2.76, -73.983637, 40.726098, -74.014955, 40.716348, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'xUqtxeQygXiS1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 23, tzinfo=datetime.timezone.utc), 1, 3.21, -73.9464, 40.74247, -73.98624, 40.733623, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'NP3zjfJwBj4uaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 14, tzinfo=datetime.timezone.utc), 1, 2.27, -73.972145, 40.755007, -73.990617, 40.734617, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '1SUlYzW0QqHEMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 52, tzinfo=datetime.timezone.utc), 1, 3.22, -73.979718, 40.764215, -73.95491, 40.803972, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'QagHoRBUWpEV4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 32, tzinfo=datetime.timezone.utc), 5, 3.62, -73.994022, 40.751347, -73.95862, 40.776898, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'oh25X+9hzA72CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 40, tzinfo=datetime.timezone.utc), 1, 2.92, -73.984638, 40.748397, -73.953638, 40.76676, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'tjtmMUH27ANUbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 37, tzinfo=datetime.timezone.utc), 2, 2.52, -73.98505, 40.763377, -73.991813, 40.735315, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'QkUc3G4Kxz4TBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 46, tzinfo=datetime.timezone.utc), 1, 2.79, -73.95588, 40.775303, -73.984095, 40.748372, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'VFdbhEViDhQ7tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 48, tzinfo=datetime.timezone.utc), 1, 2.87, -73.97505, 40.761715, -74.001608, 40.732237, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '0qJemy/NPAblrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 11, tzinfo=datetime.timezone.utc), 1, 2.52, -73.972343, 40.757092, -74.003683, 40.751323, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '0t7cVNNN0F4r+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 40, tzinfo=datetime.timezone.utc), 2, 2.97, -73.986885, 40.739363, -73.959213, 40.776163, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '53zCIPanhwQuFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 29, tzinfo=datetime.timezone.utc), 1, 2.75, -73.988735, 40.737642, -73.969087, 40.762523, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'Sy5yrKfEUXUfIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 16, tzinfo=datetime.timezone.utc), 1, 1.74, -73.994573, 40.749603, -73.9922, 40.733917, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '1pki7B5adqpchQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 27, tzinfo=datetime.timezone.utc), 2, 3.27, -73.968088, 40.756725, -74.005638, 40.745638, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'I/Rj6ekr1FM5Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 55, tzinfo=datetime.timezone.utc), 2, 3.67, -73.991077, 40.760573, -73.971757, 40.799665, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'ab1lyH0PfrUteQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 46, tzinfo=datetime.timezone.utc), 1, 2.73, -74.005612, 40.740597, -73.982143, 40.755932, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', 'rePdsDrHvt/RGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 36, tzinfo=datetime.timezone.utc), 1, 3.46, -73.966365, 40.804822, -73.993767, 40.766445, 'CASH', 10.5, 0.5, 0.0, 0.0, 11.0, '1705685161.48292', '9lzElyRhNV0lBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.38, -73.988702, 40.736523, -74.005658, 40.740228, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'qTVZrcN0UrEv/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 54, tzinfo=datetime.timezone.utc), 1, 2.75, -73.989193, 40.714802, -73.958888, 40.76253, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'e/2o42s3Ijpxaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 2, tzinfo=datetime.timezone.utc), 1, 3.03, -73.990398, 40.718972, -73.973698, 40.68755, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '5v2AmpKG2Qzc8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 32, tzinfo=datetime.timezone.utc), 5, 2.72, -73.990217, 40.752185, -74.003175, 40.717318, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '3Jy76KTUZNiJRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 18, tzinfo=datetime.timezone.utc), 1, 2.55, -73.969715, 40.759997, -73.97938, 40.783613, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'IAqa1/Fg5KDg/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 45, tzinfo=datetime.timezone.utc), 1, 2.74, -73.972445, 40.745088, -73.959338, 40.777032, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'XR/uWUfb6TJ+eA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 13, tzinfo=datetime.timezone.utc), 1, 2.15, -73.98949, 40.737748, -73.998797, 40.751637, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '3KEN/kU6Rt9E8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 35, tzinfo=datetime.timezone.utc), 1, 3.29, -74.007207, 40.71323, -73.983617, 40.724523, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'JmqhNyP6pVsuGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 52, tzinfo=datetime.timezone.utc), 5, 2.67, -73.96774, 40.762977, -73.997745, 40.741137, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '0YdAVp4+Z3y3Ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 53, tzinfo=datetime.timezone.utc), 2, 2.82, -73.971763, 40.749175, -73.963892, 40.757082, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'eUrtEsONl0pqxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 53, tzinfo=datetime.timezone.utc), 5, 3.21, -73.992035, 40.744215, -73.959705, 40.777922, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'hMtBZgYHP2dkbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 40, tzinfo=datetime.timezone.utc), 1, 2.69, -73.970417, 40.79669, -73.945962, 40.773575, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'Jz/DqdFi9WukLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 28, tzinfo=datetime.timezone.utc), 1, 2.58, -73.981388, 40.767153, -73.989442, 40.741632, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'BnKY9q75laOuVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 44, tzinfo=datetime.timezone.utc), 5, 2.79, -73.985917, 40.755592, -73.986162, 40.730863, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'd4rvJgTNfvi+Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 43, tzinfo=datetime.timezone.utc), 5, 2.35, -73.980632, 40.765065, -73.985338, 40.73869, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'AW4UxMt7K/C7eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 27, tzinfo=datetime.timezone.utc), 2, 1.42, -73.975472, 40.755207, -73.982225, 40.769485, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'vcB01ArKQhW0Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 51, tzinfo=datetime.timezone.utc), 1, 1.97, -73.993155, 40.752613, -73.968085, 40.758242, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'rRiSNHWIzH7aaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 45, tzinfo=datetime.timezone.utc), 1, 3.07, -74.000173, 40.721417, -73.96149, 40.716318, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'Ya+5bvZRYHiB+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 29, tzinfo=datetime.timezone.utc), 5, 1.67, -73.96722, 40.762618, -73.988187, 40.761635, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '9FvztyEJwI8kVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 40, tzinfo=datetime.timezone.utc), 1, 2.04, -73.977112, 40.755383, -73.953183, 40.766642, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '3jTQAlL9bdw4yQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 47, tzinfo=datetime.timezone.utc), 4, 1.82, -73.980848, 40.765838, -74.002627, 40.760742, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'URXLR+rR3N25Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 11, tzinfo=datetime.timezone.utc), 1, 2.86, -73.984498, 40.768817, -73.948407, 40.778195, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'GTes13UbOqWZZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 29, tzinfo=datetime.timezone.utc), 2, 2.67, -73.97885, 40.772187, -73.980332, 40.74338, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '4+zZEl5rNb2QZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 4, tzinfo=datetime.timezone.utc), 1, 2.85, -73.969453, 40.749127, -73.947382, 40.781892, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'Ysxn974Oa5NlzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 0, tzinfo=datetime.timezone.utc), 1, 3.28, -73.983355, 40.741463, -73.949793, 40.773767, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', '8EkdOlKDkW43Tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 46, tzinfo=datetime.timezone.utc), 1, 2.64, -73.988475, 40.748622, -73.996598, 40.722128, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'E878clrHGbrzLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 43, tzinfo=datetime.timezone.utc), 1, 2.49, -73.991477, 40.730993, -74.009753, 40.746813, 'CASH', 10.5, 1.0, 0.0, 0.0, 11.5, '1705685161.48292', 'SBQrnpbEEDxRVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 41, tzinfo=datetime.timezone.utc), 5, 3.19, -73.954938, 40.767398, -73.974737, 40.790662, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'slwRzx88B5rQSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 13, tzinfo=datetime.timezone.utc), 1, 4.13, -73.994047, 40.741303, -73.958153, 40.784632, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'ok2F/w++Kh2/Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 23, tzinfo=datetime.timezone.utc), 1, 4.41, -73.862932, 40.769232, -73.913233, 40.776508, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'XkPBa3+3qFqCTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 15, tzinfo=datetime.timezone.utc), 4, 3.89, -74.014202, 40.704352, -73.984455, 40.748642, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'ZT7nTg74hoS2Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 39, tzinfo=datetime.timezone.utc), 1, 3.47, -73.98804, 40.718872, -73.970882, 40.759962, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'Dc1z1Ww24cUXvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 32, tzinfo=datetime.timezone.utc), 1, 2.66, -73.997712, 40.765998, -73.974912, 40.749103, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'mlPICxaaaxt33w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 22, tzinfo=datetime.timezone.utc), 1, 3.54, -73.954967, 40.800017, -73.979085, 40.758773, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'B9+dxS3osQKjIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 30, tzinfo=datetime.timezone.utc), 5, 2.8, -73.9506, 40.77922, -73.976775, 40.74873, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '+W2Zfj2csK3smQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 0, tzinfo=datetime.timezone.utc), 1, 4.41, -74.016538, 40.716303, -73.989537, 40.77143, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'MmsWRxVs0QIJ8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 27, tzinfo=datetime.timezone.utc), 1, 4.08, -73.959513, 40.798842, -73.99846, 40.75345, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'P76B8GjL/+AgHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 11, tzinfo=datetime.timezone.utc), 1, 3.71, -73.99504, 40.749887, -74.014182, 40.709677, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'HD0+VI6cZtlkDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 4.2, -73.971537, 40.787478, -73.978815, 40.74077, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'wh00krHk5dOg/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 6, tzinfo=datetime.timezone.utc), 1, 2.97, -73.980328, 40.775422, -73.984243, 40.744332, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '0O5QoPcfpJ8+6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 38, tzinfo=datetime.timezone.utc), 5, 3.81, -73.992787, 40.753268, -73.962607, 40.79922, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'UqQjBhhn+TSGrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 10, tzinfo=datetime.timezone.utc), 2, 2.97, -73.984703, 40.759035, -74.004123, 40.7209, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'EuTnGcDXoPIoGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 8, tzinfo=datetime.timezone.utc), 1, 1.68, -73.97735, 40.779643, -73.961365, 40.77173, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'a7BsqF4EjxOX8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 1, tzinfo=datetime.timezone.utc), 5, 2.45, -73.967098, 40.772347, -73.988822, 40.756625, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'VeGDj7yjy1G32Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 14, tzinfo=datetime.timezone.utc), 1, 3.97, -73.944472, 40.779438, -73.98133, 40.737155, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '02YEX3g3Wta5Ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 52, tzinfo=datetime.timezone.utc), 1, 2.97, -74.002728, 40.714163, -73.977358, 40.751693, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'PzqG9h0OyKcfsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 0, tzinfo=datetime.timezone.utc), 1, 3.63, -74.016632, 40.70993, -73.989993, 40.738727, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'iFlyLXej9J/iVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 25, tzinfo=datetime.timezone.utc), 1, 2.6, -73.999713, 40.734415, -73.982052, 40.76304, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'q77ezaRPYuQtCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 5, tzinfo=datetime.timezone.utc), 2, 4.44, -73.93768, 40.804038, -73.978732, 40.75071, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'xIzAxP9lm5uE2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 15, tzinfo=datetime.timezone.utc), 1, 2.1, -73.99639, 40.725165, -73.996727, 40.717862, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '/Ld64CmFZF9SjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 38, tzinfo=datetime.timezone.utc), 1, 3.71, -73.98191, 40.768067, -73.996333, 40.726867, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'niggxrq8dXeVTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 27, tzinfo=datetime.timezone.utc), 5, 2.98, -73.965375, 40.754373, -73.973805, 40.784138, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'CViQYmeUhXR6cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 10, tzinfo=datetime.timezone.utc), 2, 2.85, -73.95668, 40.786262, -73.980398, 40.752258, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '/Bm0EiwPbQwY/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 16, tzinfo=datetime.timezone.utc), 1, 4.69, -73.975565, 40.74538, -74.011378, 40.703898, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'wA5n/VnOwMNhrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 41, tzinfo=datetime.timezone.utc), 1, 2.16, -74.009897, 40.712753, -73.984427, 40.724805, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '0eCQiyMTL/HsGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 46, tzinfo=datetime.timezone.utc), 5, 4.82, -73.981215, 40.733357, -73.952682, 40.789358, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'TU+M7TqF3iTnwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), 1, 3.32, -73.977408, 40.769765, -74.00572, 40.740338, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'atVHztfy5n24Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 14, tzinfo=datetime.timezone.utc), 1, 2.91, -73.993057, 40.751907, -74.005157, 40.718948, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'n7U7PvpWYZHi4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 56, tzinfo=datetime.timezone.utc), 2, 4.31, -73.992193, 40.748653, -73.945482, 40.778668, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'v7FuD/4kbonuXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 56, tzinfo=datetime.timezone.utc), 2, 3.45, -73.962872, 40.75783, -73.991778, 40.742503, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'xHS3OsD/rVjEEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 41, tzinfo=datetime.timezone.utc), 3, 3.25, -73.97748, 40.763638, -73.96222, 40.802308, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'CTwgspJmpAuG7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 1, tzinfo=datetime.timezone.utc), 2, 2.51, -73.979743, 40.735057, -73.990332, 40.757382, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'Fs3Eh8YwmhNR0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 18, tzinfo=datetime.timezone.utc), 1, 3.63, -73.978152, 40.757282, -74.004112, 40.717767, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '6vehzYuTiR0REA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 2, tzinfo=datetime.timezone.utc), 1, 1.29, -73.967268, 40.769388, -73.960772, 40.760813, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '7yjLKVS15whaIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 45, tzinfo=datetime.timezone.utc), 5, 3.53, -73.953418, 40.776033, -73.99167, 40.749443, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'f/rgKEkRIhzmkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 2, tzinfo=datetime.timezone.utc), 2, 4.29, -74.006833, 40.730233, -73.964435, 40.77063, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '3fcFCPS2r8cTYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 19, tzinfo=datetime.timezone.utc), 1, 3.51, -74.006948, 40.734952, -73.984548, 40.76725, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '2FEA+oVTA0aD2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 34, tzinfo=datetime.timezone.utc), 1, 2.51, -73.981765, 40.778727, -73.975008, 40.752208, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'OYeMa42Duryslw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 31, tzinfo=datetime.timezone.utc), 2, 3.03, -74.000837, 40.828912, -73.956083, 40.837638, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', '7wMKd6VP8HHpuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 54, tzinfo=datetime.timezone.utc), 1, 4.54, -73.987957, 40.718612, -73.964397, 40.771347, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'RdxGm6UFjPkNAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 9, tzinfo=datetime.timezone.utc), 1, 2.92, -73.98006, 40.775412, -73.983985, 40.756853, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'EluOaCniantmUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 38, tzinfo=datetime.timezone.utc), 5, 3.38, -73.964645, 40.80712, -73.983268, 40.762592, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'TTDjFT5dOOc83Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 2, tzinfo=datetime.timezone.utc), 1, 2.41, -73.998665, 40.734632, -73.993997, 40.761437, 'CASH', 12.5, 0.0, 0.0, 0.0, 12.5, '1705685161.48292', 'pe5iIu+hktEjjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 4, tzinfo=datetime.timezone.utc), 1, 4.48, -73.947423, 40.779187, -73.944663, 40.829025, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'eIWoCTrYkXjoig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 51, tzinfo=datetime.timezone.utc), 2, 4.03, -73.993548, 40.721522, -73.990915, 40.765977, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'UFjbNroPS933JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 5, tzinfo=datetime.timezone.utc), 1, 4.12, -74.007928, 40.738068, -73.969683, 40.786847, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'k0rcc5z47vdHTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 21, tzinfo=datetime.timezone.utc), 3, 2.37, -73.987067, 40.776045, -73.984757, 40.742112, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'GqkSLHSPW9XmCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 34, tzinfo=datetime.timezone.utc), 1, 3.4, -74.015145, 40.718165, -74.002792, 40.760552, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'mDMUwhDSgR7Yzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 58, tzinfo=datetime.timezone.utc), 2, 4.09, -73.970392, 40.758388, -73.907353, 40.743247, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'r0Pgqr/sWSUSJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 20, tzinfo=datetime.timezone.utc), 1, 4.05, -73.998228, 40.75509, -73.977138, 40.71913, 'Credit', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'xlSo5Ra1NTJ7YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 4, tzinfo=datetime.timezone.utc), 1, 4.03, -73.96372, 40.761415, -73.956735, 40.805875, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'scJBig6TjW5bsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 1, 4.79, -74.006052, 40.740345, -73.966352, 40.799597, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', '11N6IY/kPYUqbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 32, tzinfo=datetime.timezone.utc), 3, 4.35, -73.994542, 40.726165, -73.952345, 40.772923, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'AjCUx/HO3SuQ7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 49, tzinfo=datetime.timezone.utc), 1, 4.12, -74.007548, 40.705558, -73.943693, 40.711707, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'QZoa6gE/4cwVEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 4, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 5, 2, tzinfo=datetime.timezone.utc), 1, 4.65, -74.000695, 40.737402, -73.95201, 40.777757, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'yiiPpUVjpVr8nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 10, tzinfo=datetime.timezone.utc), 2, 4.09, -73.998427, 40.7245, -73.968618, 40.764278, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', '0fHO8GppRlZHCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 52, tzinfo=datetime.timezone.utc), 1, 4.43, -73.957198, 40.760867, -73.92206, 40.774633, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'BRPRXCOMGaL/0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 34, tzinfo=datetime.timezone.utc), 1, 3.48, -73.959853, 40.762622, -74.004292, 40.758497, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'ashOUMAe5QmpEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 3, tzinfo=datetime.timezone.utc), 2, 4.16, -73.983038, 40.722603, -73.982383, 40.767283, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'C+KAQcFaqkQfuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 6, tzinfo=datetime.timezone.utc), 1, 3.65, -73.988507, 40.7485, -73.950282, 40.779908, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'PYrWbXFm6d0ONQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 12, tzinfo=datetime.timezone.utc), 5, 3.08, -73.971027, 40.76337, -73.98869, 40.73875, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', '1AnUB7P/kp1fCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 51, tzinfo=datetime.timezone.utc), 1, 4.74, -73.977567, 40.78423, -73.940978, 40.839295, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'EjNFaVxBbW+M/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 7, tzinfo=datetime.timezone.utc), 1, 4.06, 0.0, 0.0, 0.0, 0.0, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'nAMXL8mfccONWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 30, tzinfo=datetime.timezone.utc), 2, 4.43, -73.995508, 40.749903, -73.96518, 40.803647, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'RGWfYMN+vHzu0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 29, tzinfo=datetime.timezone.utc), 1, 3.84, -74.005802, 40.74035, -73.974595, 40.760572, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'DrnPKKxm0LElOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 25, tzinfo=datetime.timezone.utc), 1, 3.6, -73.993207, 40.697172, -73.979257, 40.661737, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'mewwiaJpZR4FLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 58, tzinfo=datetime.timezone.utc), 5, 4.54, -73.974783, 40.758703, -73.94149, 40.801793, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'VkDOFRWtg3wxlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 3, tzinfo=datetime.timezone.utc), 3, 4.44, -73.952625, 40.776328, -74.000307, 40.73738, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'Vjl7ZRKef1FHDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 33, tzinfo=datetime.timezone.utc), 1, 3.7, -74.0101, 40.706295, -74.010295, 40.706348, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'AoQemNRFkjTsgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 26, tzinfo=datetime.timezone.utc), 2, 3.64, -73.956298, 40.818667, -73.98234, 40.772835, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'GhqsB9Z5RdMrkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 30, tzinfo=datetime.timezone.utc), 1, 3.9, -73.976143, 40.756608, -74.011183, 40.728957, 'CASH', 12.5, 0.5, 0.0, 0.0, 13.0, '1705685161.48292', 'pGwTU905+asfxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), 2, 3.1, -73.970388, 40.793933, -73.963552, 40.762788, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'WY7tatlrkCuPNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 21, tzinfo=datetime.timezone.utc), 5, 2.5, -73.985913, 40.759735, -73.965427, 40.762927, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '6wxpgpvwzXYyRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 29, tzinfo=datetime.timezone.utc), 2, 1.31, -73.975775, 40.761302, -74.000045, 40.74268, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'Ai3RlqmFCSx0zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 37, tzinfo=datetime.timezone.utc), 2, 3.48, -74.015872, 40.71134, -73.99472, 40.750285, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'kMaAV6o9t0hSdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 59, tzinfo=datetime.timezone.utc), 2, 2.46, -73.969668, 40.790528, -73.98781, 40.759872, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'Z4VuYvVjrkAj4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 42, tzinfo=datetime.timezone.utc), 2, 3.17, -73.977855, 40.7547, -73.97135, 40.782487, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '55d8kP29n76SPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 35, tzinfo=datetime.timezone.utc), 5, 2.8, -73.956537, 40.78049, -73.98431, 40.748623, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '8pBgUDkFDHdnFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 18, tzinfo=datetime.timezone.utc), 5, 4.19, -74.006777, 40.713862, -73.989567, 40.759227, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'qWLj7SWgi2ynNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 39, tzinfo=datetime.timezone.utc), 5, 3.81, -73.999865, 40.741478, -73.981592, 40.781085, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '4LOU6ihvsBM9dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 48, tzinfo=datetime.timezone.utc), 1, 2.62, -73.97136, 40.763623, -73.995917, 40.73285, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'w5sCB0FL4qjsjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 17, tzinfo=datetime.timezone.utc), 1, 2.64, -73.991305, 40.75012, -73.961378, 40.761798, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'HqsunrYQBilUtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 5, tzinfo=datetime.timezone.utc), 5, 2.33, -73.958292, 40.760578, -73.987583, 40.762703, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '9WzVFx3BnQN5oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 5, tzinfo=datetime.timezone.utc), 1, 1.61, -73.971087, 40.761148, -73.989747, 40.756315, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'shWK6JDc5yrVkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.87, -73.979672, 40.760117, -73.987103, 40.738788, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'XEVytwiRsa+LEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 22, tzinfo=datetime.timezone.utc), 1, 2.87, -73.953545, 40.810252, -73.973655, 40.763505, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'WucsICyRwMdVYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 3, tzinfo=datetime.timezone.utc), 2, 3.75, -73.97796, 40.779527, -74.005567, 40.740103, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'fomsWw6CSBomtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 35, tzinfo=datetime.timezone.utc), 1, 3.65, -73.956833, 40.785898, -73.993143, 40.762007, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'pgFBWb4EsoRRuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 47, tzinfo=datetime.timezone.utc), 5, 3.26, -73.974203, 40.752093, -73.974253, 40.787408, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', '8uQJD88tdpmzYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 6, tzinfo=datetime.timezone.utc), 1, 3.63, -73.983072, 40.755867, -73.968238, 40.800615, 'CASH', 12.5, 1.0, 0.0, 0.0, 13.5, '1705685161.48292', 'ZYYS1fSmJ9ZWoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 7, tzinfo=datetime.timezone.utc), 1, 4.51, -73.991762, 40.751493, -74.013345, 40.705692, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'GDuinUkDPIXT1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 48, tzinfo=datetime.timezone.utc), 1, 3.58, -73.999595, 40.72334, -73.971112, 40.764287, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'WUWFZCbsh4b6kQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 9, 17, tzinfo=datetime.timezone.utc), 1, 5.63, -73.978037, 40.745457, -73.966032, 40.808627, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '83Wae7pzwtYgVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 56, tzinfo=datetime.timezone.utc), 1, 2.93, -73.99168, 40.737645, -73.961542, 40.756165, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '9HiWK2uSLaYlpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 44, tzinfo=datetime.timezone.utc), 1, 4.09, -73.99918, 40.744217, -74.013553, 40.702308, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'rms7bBGqscIWaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 42, tzinfo=datetime.timezone.utc), 3, 4.91, -73.982302, 40.74582, -73.964728, 40.801662, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'LdoFRuas7lN0Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 21, tzinfo=datetime.timezone.utc), 5, 3.2, -73.952487, 40.779438, -73.969828, 40.778055, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'CrBgvFVi91YltA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 7, tzinfo=datetime.timezone.utc), 1, 4.86, -73.894665, 40.740212, -73.968535, 40.764383, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '3z6ZgbV33V9Wxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 39, tzinfo=datetime.timezone.utc), 1, 5.34, -73.947825, 40.771615, -73.994782, 40.725887, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'X8mhYLVLbAh4fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 26, tzinfo=datetime.timezone.utc), 1, 3.89, 0.0, 0.0, 0.0, 0.0, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '+PueqbXCTuJeIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 3, tzinfo=datetime.timezone.utc), 1, 3.37, -73.991607, 40.755717, -73.951918, 40.779222, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'S3gjHmpEO9QaQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 48, tzinfo=datetime.timezone.utc), 5, 3.86, -73.95434, 40.77809, -73.96053, 40.81606, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '0tIZzcsDA1B5xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 48, tzinfo=datetime.timezone.utc), 1, 4.45, -73.952083, 40.772948, -73.990377, 40.735168, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '8gLiPA8YT9BQ3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 20, tzinfo=datetime.timezone.utc), 2, 5.24, -73.982012, 40.770725, -74.016032, 40.710762, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'uOH0Hyep34etMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 9, tzinfo=datetime.timezone.utc), 5, 5.66, -73.969728, 40.757158, -74.012628, 40.702012, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'CiK9Yt20wSgpAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 22, 31, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 49, 55, tzinfo=datetime.timezone.utc), 1, 4.8, -73.98768, 40.780143, -74.004213, 40.719325, 'Cash', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'gnY9p4B5O96uAg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 49, tzinfo=datetime.timezone.utc), 5, 4.43, -73.986967, 40.750953, -73.9651, 40.806248, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'Ou3slgOtMEusyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 1, tzinfo=datetime.timezone.utc), 5, 3.07, -73.972305, 40.743317, -73.960302, 40.779027, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '+95wYKE1z9qkDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 57, tzinfo=datetime.timezone.utc), 2, 3.84, -73.97064, 40.76503, -73.967823, 40.807807, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'AxXVPexu650obQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 6, tzinfo=datetime.timezone.utc), 1, 3.95, -73.965373, 40.806022, -73.97508, 40.76126, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'V2fAjs9tyfeWGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 10, tzinfo=datetime.timezone.utc), 1, 3.85, -73.9666, 40.770142, -73.924743, 40.741323, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'SdZtLNgWPkkG5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 51, tzinfo=datetime.timezone.utc), 1, 2.98, -73.99496, 40.744888, -74.009653, 40.71118, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '4VhME42Y/u3P6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 46, tzinfo=datetime.timezone.utc), 1, 3.78, -73.987225, 40.751947, -74.012022, 40.708235, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'sQV8lfPKiCzf1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 50, tzinfo=datetime.timezone.utc), 5, 2.82, -73.96607, 40.773897, -73.995005, 40.752802, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', 'ZfigfCnPGP7GoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 50, tzinfo=datetime.timezone.utc), 1, 4.24, -73.97367, 40.763612, -74.006715, 40.719812, 'CASH', 14.5, 0.0, 0.0, 0.0, 14.5, '1705685161.48292', '5omVVPXHKYb8pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 17, tzinfo=datetime.timezone.utc), 5, 3.61, -74.00701, 40.734847, -73.997488, 40.761053, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '2lKuvW4WP7uhlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 26, tzinfo=datetime.timezone.utc), 1, 4.22, -73.997817, 40.724122, -73.964062, 40.76984, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '3AUqTIiB1+/aBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 4, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 4, 36, tzinfo=datetime.timezone.utc), 1, 5.16, -73.966773, 40.756647, -73.90675, 40.760448, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'iZ2VeceFzdhFCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 2, 46, tzinfo=datetime.timezone.utc), 5, 5.61, -74.000847, 40.736535, -73.947065, 40.783007, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'wCwEKbW5pO8Wzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 52, tzinfo=datetime.timezone.utc), 3, 4.0, -73.97751, 40.752142, -73.960177, 40.798155, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'OQZ5az+i2QEKCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 17, tzinfo=datetime.timezone.utc), 1, 5.76, -74.009468, 40.705017, -73.967787, 40.7552, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'y3elMQbtrm1pqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 47, tzinfo=datetime.timezone.utc), 5, 4.63, -73.958137, 40.71344, -74.001178, 40.74647, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '9njBRSzYpDiqsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 7, tzinfo=datetime.timezone.utc), 1, 4.8, -74.008063, 40.716877, -73.989127, 40.774937, 'Credit', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '0JQ25Z53ArgJRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 55, tzinfo=datetime.timezone.utc), 1, 3.69, -73.98195, 40.767437, -73.993642, 40.727427, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'HAERVkDEIscIxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 43, tzinfo=datetime.timezone.utc), 4, 5.09, -73.967742, 40.757325, -74.002087, 40.708352, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'EMqo0FMWXLa85w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 50, tzinfo=datetime.timezone.utc), 5, 4.49, -73.971713, 40.782143, -74.007377, 40.73296, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'Ib9Ol/LOeMjqkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 50, tzinfo=datetime.timezone.utc), 1, 5.03, -74.00079, 40.746998, -73.950678, 40.804158, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '5tuiYbRH2hDt+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 33, tzinfo=datetime.timezone.utc), 5, 4.69, -73.980138, 40.730168, -73.939653, 40.688772, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '0FkkiAaM5rJ3uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 56, tzinfo=datetime.timezone.utc), 1, 4.19, -73.981245, 40.755755, -73.9579, 40.774258, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'bzbisNwT8DJXxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 59, tzinfo=datetime.timezone.utc), 5, 5.35, -73.95243, 40.773207, -73.983847, 40.725663, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'CliKfACQZM+SbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 3, tzinfo=datetime.timezone.utc), 3, 5.86, -74.003335, 40.706102, -73.965425, 40.754853, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'eCRypgc6wkzdUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 7, tzinfo=datetime.timezone.utc), 2, 5.09, -73.993292, 40.727788, -73.978152, 40.78315, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'HZSk7l0zodDZZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 28, tzinfo=datetime.timezone.utc), 2, 4.76, -74.00026, 40.730155, -73.978953, 40.67245, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'GQcGvbiYXH98ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 5, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 5, 54, tzinfo=datetime.timezone.utc), 1, 4.39, -73.988848, 40.723402, -73.932, 40.698407, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'RvLijqRVcyTzXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 34, tzinfo=datetime.timezone.utc), 1, 5.31, -73.994387, 40.76103, -73.944523, 40.824255, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'LlZo/6owBDB6Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), 1, 4.55, -74.016168, 40.710972, -73.987953, 40.759155, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'vxsw9xEIiQFBEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 52, tzinfo=datetime.timezone.utc), 5, 5.2, 0.0, 0.0, 0.0, 0.0, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'LshrYysGTPlFdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 55, tzinfo=datetime.timezone.utc), 2, 5.89, -74.004318, 40.70692, -73.960872, 40.765248, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'dRud59NkxdHHjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 42, tzinfo=datetime.timezone.utc), 1, 4.3, -74.018067, 40.705737, -73.989412, 40.743053, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'UvKTuegFgq1vbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 38, tzinfo=datetime.timezone.utc), 1, 5.06, -73.969773, 40.774188, -73.986522, 40.759547, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'rTMJf3l7ammHHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 51, tzinfo=datetime.timezone.utc), 5, 4.99, -73.959823, 40.813772, -73.991122, 40.751157, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '4+l2seKLzJkUqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 57, tzinfo=datetime.timezone.utc), 1, 5.85, -73.980945, 40.71151, -73.909133, 40.728163, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'O36qhx1yXzH5qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 8, tzinfo=datetime.timezone.utc), 5, 5.58, -73.948595, 40.777933, -73.987443, 40.72004, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '8AsSq20cyPulxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 50, tzinfo=datetime.timezone.utc), 6, 4.77, -73.972133, 40.742673, -73.988912, 40.74156, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'u2KYNfDq4JQu7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 41, tzinfo=datetime.timezone.utc), 1, 5.34, -73.953707, 40.714105, -73.94661, 40.774005, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'yQ6pqiiexLOoyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 3, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 46, tzinfo=datetime.timezone.utc), 1, 5.46, -73.9818, 40.757557, -73.942815, 40.72683, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', '5TVPlLw9pf0vhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 42, tzinfo=datetime.timezone.utc), 5, 5.28, -73.98732, 40.75445, -73.932723, 40.801398, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'shnkxg6PBVE9rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 51, tzinfo=datetime.timezone.utc), 2, 4.77, -73.999, 40.721555, -73.961122, 40.679617, 'CASH', 14.5, 0.5, 0.0, 0.0, 15.0, '1705685161.48292', 'MJDU86f5I0uRtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 19, tzinfo=datetime.timezone.utc), 1, 3.14, -73.9859, 40.74409, -73.953092, 40.765055, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'qdEnAjB//dCRVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 1, tzinfo=datetime.timezone.utc), 1, 3.66, -73.959567, 40.781152, -73.987288, 40.736073, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'xUW6rOShu/DBbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 17, 0, tzinfo=datetime.timezone.utc), 1, 2.1, -73.937992, 40.797095, -73.916503, 40.818688, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', '4YgWdsjpIEDN1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 49, tzinfo=datetime.timezone.utc), 2, 4.92, -74.012387, 40.70691, -73.987445, 40.738947, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', '96D6aSfXIGO81A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 43, tzinfo=datetime.timezone.utc), 1, 4.7, -74.004448, 40.705395, -73.981238, 40.747893, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'gwAzIJ78tl/GCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 22, tzinfo=datetime.timezone.utc), 1, 3.18, -73.97963, 40.73536, -73.96681, 40.772437, 'Credit', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'OXqd/tZGsIoHiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 34, tzinfo=datetime.timezone.utc), 5, 3.78, -74.00284, 40.723437, -73.971647, 40.757068, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'PEKNr0Wd/iloDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 47, tzinfo=datetime.timezone.utc), 5, 5.94, -74.005418, 40.706792, -73.953812, 40.766632, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'ZVP2bPVA2I7uPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 49, tzinfo=datetime.timezone.utc), 1, 3.97, -73.977803, 40.777277, -73.987513, 40.732922, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'jVxzLSqLDn7Euw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 17, tzinfo=datetime.timezone.utc), 5, 4.11, -73.997745, 40.73606, -73.977338, 40.783613, 'CASH', 14.5, 1.0, 0.0, 0.0, 15.5, '1705685161.48292', 'iO0ZaIety9ynsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 3, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 3, 31, tzinfo=datetime.timezone.utc), 1, 0.0, -73.99065, 40.75796, -73.99065, 40.75796, 'Credit', 16.0, 0.0, 0.0, 0.0, 16.0, '1705685161.48292', '9K4F8+8H43DCLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 42, tzinfo=datetime.timezone.utc), 1, 6.02, -73.975182, 40.792715, -73.9233, 40.760925, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'nnOOr0fC1dU2Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 33, tzinfo=datetime.timezone.utc), 2, 5.5, -73.920692, 40.741285, -73.920615, 40.741053, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', '5qx0S32fwBpWqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 51, tzinfo=datetime.timezone.utc), 5, 5.54, -73.987855, 40.760432, -73.93439, 40.757282, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'v7+g7tctAe8jyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 51, tzinfo=datetime.timezone.utc), 1, 6.28, -74.009402, 40.71341, -73.976393, 40.792863, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'k9ITEEEhfQeGmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 57, tzinfo=datetime.timezone.utc), 1, 5.6, -73.977508, 40.758013, -73.952295, 40.711123, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'm0tCOVDjieMrYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 36, tzinfo=datetime.timezone.utc), 3, 5.99, -74.007688, 40.72884, -73.963143, 40.798905, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'aVLMPZuo1uwKfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 2, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 2, 58, tzinfo=datetime.timezone.utc), 1, 5.88, -73.991545, 40.75985, -73.945568, 40.82225, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'h5CCpmMigCIwCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 58, tzinfo=datetime.timezone.utc), 1, 5.82, -73.97959, 40.77625, -73.894877, 40.755862, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', '8xOkEB4Z1eHikg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 0, 51, tzinfo=datetime.timezone.utc), 1, 6.34, -74.004685, 40.751975, -73.915932, 40.747267, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'NjgyfJSIfJ3hOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 4, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 37, tzinfo=datetime.timezone.utc), 1, 6.98, -73.962475, 40.760738, -74.016362, 40.70591, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', '+veLE0JQpywizg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 11, tzinfo=datetime.timezone.utc), 5, 5.4, -73.970212, 40.75758, -73.954365, 40.804813, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'uiWaXTZKS/e3Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 32, tzinfo=datetime.timezone.utc), 2, 4.64, -74.005067, 40.73581, -73.963698, 40.768373, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'VJRvxldMcjVb+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 27, tzinfo=datetime.timezone.utc), 1, 0.59, -74.01562, 40.711092, -73.968357, 40.767705, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'sA/MD0m1h9WPAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 30, tzinfo=datetime.timezone.utc), 2, 5.56, -74.00385, 40.725438, -73.972708, 40.787098, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'adI/7O4G8ISNFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 19, tzinfo=datetime.timezone.utc), 5, 5.67, -73.969432, 40.797758, -74.006397, 40.739168, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'J1q6EEwDdde0jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 36, tzinfo=datetime.timezone.utc), 1, 4.93, -73.983198, 40.756512, -73.907517, 40.75771, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', '6OudQXFacZ0FHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 49, tzinfo=datetime.timezone.utc), 3, 5.42, -73.970007, 40.794772, -73.9775, 40.733242, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'd5Goy59jMxG90g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 28, tzinfo=datetime.timezone.utc), 1, 6.85, -73.781853, 40.644767, -73.865965, 40.67082, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', '1I3P8C2d9n0FSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 55, tzinfo=datetime.timezone.utc), 5, 6.32, -73.78355, 40.648663, -73.740332, 40.70809, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'tvP09me+R1/Hzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 22, tzinfo=datetime.timezone.utc), 2, 6.16, -73.957192, 40.776842, -73.889588, 40.747355, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'ckQBMpVG8TYClA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 14, tzinfo=datetime.timezone.utc), 1, 5.76, -73.999413, 40.743862, -73.939755, 40.715123, 'CASH', 16.5, 0.5, 0.0, 0.0, 17.0, '1705685161.48292', 'oIDi0MtTptolVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 45, tzinfo=datetime.timezone.utc), 1, 0.0, -73.953877, 40.813338, -73.953868, 40.81334, 'CASH', 17.5, 0.5, 0.0, 0.0, 18.0, '1705685161.48292', 'uLn8YXAkNZKWtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 29, tzinfo=datetime.timezone.utc), 1, 6.29, -73.987368, 40.728947, -73.961695, 40.648557, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'GbwUU5a3AOarqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 47, tzinfo=datetime.timezone.utc), 1, 7.64, -73.980617, 40.764535, -73.897972, 40.759967, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'lfbgcqCuBwdEIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 30, tzinfo=datetime.timezone.utc), 1, 6.07, -73.963605, 40.757563, -73.869437, 40.749197, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'l+sdiwIjvB4+AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 23, tzinfo=datetime.timezone.utc), 1, 7.35, -73.960865, 40.765597, -74.01701, 40.708335, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'P8Z0ztBHV7iQjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 7, tzinfo=datetime.timezone.utc), 5, 6.97, -73.98648, 40.751343, -73.947428, 40.827618, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'tnkVWf7+VtkzXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 14, tzinfo=datetime.timezone.utc), 5, 5.8, -73.948612, 40.774037, -73.951327, 40.80994, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'NbMN1PHvsByKvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 30, tzinfo=datetime.timezone.utc), 1, 6.2, -73.983397, 40.718648, -73.946738, 40.779913, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', '1RpSsCiWsg4sTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 51, tzinfo=datetime.timezone.utc), 3, 6.39, -74.00733, 40.73367, -73.947453, 40.779428, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'RkT3ucrQCkUTZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 0, 35, tzinfo=datetime.timezone.utc), 1, 5.87, -73.97849, 40.73705, -73.942332, 40.712428, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'aVad462Na8Up6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 6, tzinfo=datetime.timezone.utc), 6, 5.21, -73.985145, 40.76029, -73.917123, 40.741643, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 's90HfkRsw1qIBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 12, tzinfo=datetime.timezone.utc), 1, 5.51, -73.978635, 40.67918, -74.000003, 40.743107, 'Credit', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'kOIfNWUiFHHYXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 5, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 8, tzinfo=datetime.timezone.utc), 1, 6.31, -73.987923, 40.759917, -73.904312, 40.776205, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'RW+qNgPJed/Lyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 25, tzinfo=datetime.timezone.utc), 1, 6.93, -73.991438, 40.750027, -73.949755, 40.82211, 'CASH', 18.5, 0.5, 0.0, 0.0, 19.0, '1705685161.48292', 'z2J3dKURtFJzew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 30, tzinfo=datetime.timezone.utc), 1, 0.0, -74.004965, 40.718703, -74.004962, 40.718688, 'Credit', 20.0, 0.0, 0.0, 0.0, 20.0, '1705685161.48292', 'TVzZqjGAABbxLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 7, tzinfo=datetime.timezone.utc), 2, 7.9, -73.966587, 40.80448, -73.90214, 40.862885, 'CASH', 20.5, 0.5, 0.0, 0.0, 21.0, '1705685161.48292', 'Kf4uA0ZyAq/wgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 36, tzinfo=datetime.timezone.utc), 1, 7.11, -73.98799, 40.737958, -73.95138, 40.77786, 'CASH', 20.5, 0.5, 0.0, 0.0, 21.0, '1705685161.48292', 'rCYshZCYTGkjVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 45, tzinfo=datetime.timezone.utc), 1, 9.36, -73.9929, 40.759608, -73.932623, 40.899467, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685161.48292', 'mjkkOHV0YZkPhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 53, tzinfo=datetime.timezone.utc), 5, 8.27, -74.008938, 40.715297, -73.960222, 40.81137, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685161.48292', 'pjhOEYjR4/2lPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 41, tzinfo=datetime.timezone.utc), 2, 7.67, -73.989018, 40.763193, -73.936708, 40.695328, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685161.48292', '1LVpvfDJ8bLFFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 20, tzinfo=datetime.timezone.utc), 1, 9.4, -73.991192, 40.71746, -73.925182, 40.768515, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685161.48292', 'SxQQj8Dndv4QWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 7, tzinfo=datetime.timezone.utc), 5, 9.44, -73.965543, 40.754732, -73.999138, 40.675707, 'CASH', 22.5, 0.5, 0.0, 0.0, 23.0, '1705685161.48292', 'aXjz1QX/acqFzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 6, 8, tzinfo=datetime.timezone.utc), 1, 10.47, -73.976717, 40.739505, -73.856597, 40.828427, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', 'NkB8CfXuTXNjcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 22, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978468, 40.750423, -73.991005, 40.750398, 'Credit', 25.0, 0.0, 0.0, 0.0, 25.0, '1705685161.48292', 'AxU8f3riDy0q3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 57, tzinfo=datetime.timezone.utc), 1, 9.86, -73.97666, 40.74744, -73.96927, 40.646302, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', 'f89DByL8lN93Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 22, tzinfo=datetime.timezone.utc), 1, 9.91, -73.977195, 40.75455, -73.978358, 40.659522, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', 'S5UGemUK84jZoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 45, tzinfo=datetime.timezone.utc), 2, 10.08, -74.004758, 40.747993, -73.916728, 40.850808, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', 'NHE6El1IzSsZCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 32, tzinfo=datetime.timezone.utc), 1, 9.73, -74.01172, 40.793592, -73.982895, 40.74009, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', '+h7O3gC79ylTQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 12, tzinfo=datetime.timezone.utc), 1, 10.39, -73.871065, 40.773778, -73.972502, 40.76103, 'CASH', 24.5, 0.5, 0.0, 0.0, 25.0, '1705685161.48292', 'vKBbddKBXpLGYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 59, tzinfo=datetime.timezone.utc), 5, 11.6, -73.983635, 40.769583, -73.851222, 40.831182, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685161.48292', 'yrn839zNF/6yGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 10, tzinfo=datetime.timezone.utc), 1, 11.6, -73.862798, 40.769057, -73.986237, 40.678698, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685161.48292', 'IUp/Nd7AJ6Xhhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 0, tzinfo=datetime.timezone.utc), 1, 8.69, -74.001302, 40.736458, -73.974518, 40.668588, 'CASH', 26.5, 0.5, 0.0, 0.0, 27.0, '1705685161.48292', 'al41p8gJFtrDWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 22, tzinfo=datetime.timezone.utc), 2, 8.34, -73.98789, 40.764653, -73.876255, 40.715413, 'CASH', 22.5, 0.5, 0.0, 5.0, 28.0, '1705685161.48292', '68Oo1EoQatgpuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.0, -73.979822, 40.74635, -73.979822, 40.74635, 'Credit', 28.0, 0.0, 0.0, 0.0, 28.0, '1705685161.48292', 'YmlO3M0nn2rZww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 34, tzinfo=datetime.timezone.utc), 1, 9.22, -73.986165, 40.755627, -73.986165, 40.755627, 'CASH', 22.5, 0.5, 0.0, 5.0, 28.0, '1705685161.48292', 'LAK4hScl/vQTfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 2, tzinfo=datetime.timezone.utc), 1, 9.56, -73.874655, 40.774115, -73.977342, 40.78683, 'Credit', 24.5, 0.5, 0.0, 5.0, 30.0, '1705685161.48292', 'qOSR+4zY3K4wzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 54, tzinfo=datetime.timezone.utc), 1, 12.83, -73.993632, 40.720272, -73.923185, 40.86584, 'CASH', 30.5, 0.5, 0.0, 0.0, 31.0, '1705685161.48292', 'MiQen8wsRTNlcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 24, tzinfo=datetime.timezone.utc), 2, 16.91, -73.989907, 40.758123, -73.782998, 40.64393, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685161.48292', 'epD9egxXlKJYvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 41, tzinfo=datetime.timezone.utc), 4, 18.11, -73.790052, 40.643992, -73.982357, 40.75542, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685161.48292', '3CS5LwT6xx94QA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 1, tzinfo=datetime.timezone.utc), 1, 0.0, -74.027912, 40.740292, -74.027818, 40.740147, 'Credit', 50.0, 0.0, 0.0, 0.0, 50.0, '1705685161.48292', '3cPToAUMXFsOgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 32, tzinfo=datetime.timezone.utc), 1, 7.58, -73.878082, 40.771318, -73.977718, 40.760797, 'Credit', 50.0, 0.0, 0.0, 0.0, 50.0, '1705685161.48292', 'N0DTenwaXVHn6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 21, tzinfo=datetime.timezone.utc), 1, 17.0, -73.930555, 40.801448, -73.782922, 40.64397, 'CASH', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685161.48292', 'rGZdDqCy5d/DfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 45, tzinfo=datetime.timezone.utc), 1, 0.0, -73.788955, 40.641577, -73.78895, 40.64157, 'Credit', 45.0, 0.0, 0.0, 5.0, 50.0, '1705685161.48292', 'jxdj+/2cmEYgzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 59, tzinfo=datetime.timezone.utc), 3, 11.65, -73.872208, 40.77393, -73.992868, 40.75209, 'CASH', 28.1, 0.0, 0.0, 4.15, 32.25, '1705685161.48292', 'ZlTpYBsu+hnaOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 38, tzinfo=datetime.timezone.utc), 2, 12.03, -73.980482, 40.782613, -73.870577, 40.773882, 'CASH', 30.1, 0.0, 0.0, 4.15, 34.25, '1705685161.48292', 'Nlo/eFTKTSIyTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 1, tzinfo=datetime.timezone.utc), 1, 10.66, -73.994947, 40.740018, -74.01459, 40.627023, 'CASH', 32.1, 0.0, 0.0, 4.15, 36.25, '1705685161.48292', 'i9aEnm3AGQNQsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 47, tzinfo=datetime.timezone.utc), 2, 12.38, -73.874493, 40.774043, -73.992512, 40.756603, 'CASH', 34.1, 0.0, 0.0, 4.15, 38.25, '1705685161.48292', 'YtEcLSMtTWMC4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 24, tzinfo=datetime.timezone.utc), 5, 8.38, -73.95389, 40.770608, -73.872265, 40.774483, 'CASH', 20.1, 0.0, 0.0, 4.15, 24.25, '1705685161.48292', 'VQVf74x3vas1zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 48, tzinfo=datetime.timezone.utc), 3, 8.43, -73.865303, 40.76913, -73.948635, 40.773822, 'CASH', 20.1, 0.0, 0.0, 4.15, 24.25, '1705685161.48292', 'arBGn9wogRst0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 22, tzinfo=datetime.timezone.utc), 1, 8.14, -73.872177, 40.773795, -73.978287, 40.7485, 'CASH', 22.1, 0.0, 0.0, 4.15, 26.25, '1705685161.48292', 'E41OeUUzfwAJQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 49, tzinfo=datetime.timezone.utc), 1, 9.15, -73.863317, 40.770005, -73.985528, 40.752868, 'Credit', 22.1, 1.0, 0.0, 4.15, 27.25, '1705685161.48292', 'kPkCIPf8y93www', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 23, tzinfo=datetime.timezone.utc), 1, 9.07, -73.864418, 40.770662, -73.977602, 40.754783, 'CASH', 24.1, 0.0, 0.0, 4.15, 28.25, '1705685161.48292', 'NBViQ57s8GGeaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 1, tzinfo=datetime.timezone.utc), 4, 10.33, -73.872522, 40.77406, -73.972978, 40.755865, 'CASH', 24.1, 1.0, 0.0, 4.15, 29.25, '1705685161.48292', 'GfW9I5N6ICD4UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 14, tzinfo=datetime.timezone.utc), 1, 11.28, -73.977367, 40.755212, -73.86174, 40.768432, 'CASH', 26.1, 0.0, 0.0, 4.15, 30.25, '1705685161.48292', 'vcGsQzcNbEmeAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 53, tzinfo=datetime.timezone.utc), 1, 10.13, -73.970987, 40.754362, -73.885538, 40.77317, 'CASH', 26.1, 0.0, 0.0, 4.15, 30.25, '1705685161.48292', 'u5GQO2Mn2YaTlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 51, tzinfo=datetime.timezone.utc), 1, 11.0, -73.972663, 40.755013, -73.861703, 40.768357, 'CASH', 26.1, 1.0, 0.0, 4.15, 31.25, '1705685161.48292', 'JGVUZJpHuegRmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 23, tzinfo=datetime.timezone.utc), 5, 13.59, -73.976915, 40.738778, -73.85531, 40.666458, 'CASH', 34.5, 0.0, 0.0, 0.0, 34.5, '1705685161.48292', 'yg6ZLDr1o7WKXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 22, tzinfo=datetime.timezone.utc), 5, 13.34, -73.789632, 40.646702, -73.982407, 40.671527, 'CASH', 34.5, 0.0, 0.0, 0.0, 34.5, '1705685161.48292', 'D1/yGsw86uXnhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 2, tzinfo=datetime.timezone.utc), 1, 15.2, -73.785555, 40.639998, -73.930962, 40.76948, 'Credit', 36.5, 0.0, 0.0, 0.0, 36.5, '1705685161.48292', 'aCVRk+aH5TONNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 21, tzinfo=datetime.timezone.utc), 2, 12.83, -73.954228, 40.764265, -73.856183, 40.784557, 'CASH', 36.5, 0.0, 0.0, 0.0, 36.5, '1705685161.48292', 'Mxj2r9iRxqRzsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 23, tzinfo=datetime.timezone.utc), 1, 2.59, -73.789815, 40.655165, -73.850998, 40.91951, 'CASH', 89.0, 0.0, 0.0, 0.0, 89.0, '1705685161.48292', 'IW0EbxyhNuPvmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 25, tzinfo=datetime.timezone.utc), 1, 4.81, -73.989367, 40.747577, -73.949262, 40.800977, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'lZ6XFkOnS1i8Zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 15, tzinfo=datetime.timezone.utc), 1, 6.36, -73.998625, 40.723233, -73.977425, 40.656013, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'ZWlGt90JJVH2Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 31, tzinfo=datetime.timezone.utc), 1, 4.21, -73.978892, 40.77733, -73.977335, 40.7365, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', '5zfzASkvUad1ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 1, tzinfo=datetime.timezone.utc), 1, 4.64, -73.965508, 40.800382, -73.985035, 40.748042, 'Credit', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'hbMgjyQEpSAZIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), 5, 4.73, -73.991877, 40.722027, -73.987933, 40.663313, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'cxK3+WgiNv/Rxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 5, tzinfo=datetime.timezone.utc), 1, 6.82, -73.870905, 40.773755, -73.81103, 40.71695, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', '6J/JiAXPotpCRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 18, tzinfo=datetime.timezone.utc), 1, 6.18, -74.008485, 40.745298, -73.995768, 40.695928, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'Cd3her4h3UwB8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.77, -74.000462, 40.732397, -73.957132, 40.780385, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', '9JdS0royOV53iA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 32, tzinfo=datetime.timezone.utc), 3, 5.23, -73.984323, 40.759663, -74.016765, 40.704732, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'ZTq08lxJa9RJDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 0, tzinfo=datetime.timezone.utc), 1, 1.66, -73.96125, 40.77736, -73.979352, 40.760108, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'X7ZgMV1pmp5uvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 59, tzinfo=datetime.timezone.utc), 1, 4.39, -73.964157, 40.807938, -73.979205, 40.753, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', '88qHx8YsjiPnng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 44, tzinfo=datetime.timezone.utc), 1, 6.78, -73.944053, 40.775953, -74.005895, 40.70625, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'pVLeHdteeQs4fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 5, tzinfo=datetime.timezone.utc), 1, 6.19, -74.006985, 40.704138, -73.970608, 40.764175, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'yJTuSL3qizlfJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 0, tzinfo=datetime.timezone.utc), 5, 6.25, -73.979865, 40.73488, -73.972408, 40.793997, 'CASH', 16.5, 0.0, 0.0, 0.0, 16.5, '1705685161.48292', 'TT4Z9gutu95aMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 5, tzinfo=datetime.timezone.utc), 2, 4.02, -73.984487, 40.730403, -73.99023, 40.768885, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685161.48292', 'jEFJT+MWQEUMIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 48, tzinfo=datetime.timezone.utc), 1, 4.35, -74.004977, 40.740758, -73.953647, 40.766852, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685161.48292', 'dUuXXB8G8C6v9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 11, tzinfo=datetime.timezone.utc), 1, 2.46, -73.963607, 40.757013, -73.997268, 40.756245, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685161.48292', 'ZRSB8PBm0fmiow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 45, tzinfo=datetime.timezone.utc), 2, 3.44, -73.975903, 40.763633, -73.985515, 40.723435, 'CASH', 16.5, 1.0, 0.0, 0.0, 17.5, '1705685161.48292', '0nzSSPtxmHcPjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 1, tzinfo=datetime.timezone.utc), 5, 0.0, -73.939005, 40.79339, -73.938993, 40.793395, 'CASH', 17.5, 1.0, 0.0, 0.0, 18.5, '1705685161.48292', 'AnoO7RiNUNw2ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 14, tzinfo=datetime.timezone.utc), 1, 5.38, -73.936802, 40.813917, -73.984868, 40.760653, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', '7LgEdOocQxJZOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 10, tzinfo=datetime.timezone.utc), 5, 0.07, -73.913375, 40.82503, -73.912878, 40.826007, 'CASH', 17.5, 1.0, 0.0, 0.0, 18.5, '1705685161.48292', 'Pv1NJOmyjhWOFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 22, tzinfo=datetime.timezone.utc), 1, 5.63, -74.012265, 40.701432, -73.991668, 40.75009, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'NXn3y+YBG9T4tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 47, tzinfo=datetime.timezone.utc), 1, 4.89, -73.97367, 40.782915, -73.992963, 40.727992, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'DXEY8OGkyM2+Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 28, tzinfo=datetime.timezone.utc), 1, 7.73, -73.919967, 40.868135, -73.981368, 40.781943, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'JMFr0lOlSWjfzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 48, tzinfo=datetime.timezone.utc), 1, 6.11, -74.007692, 40.712618, -73.966528, 40.76006, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'jWMkXjSTiu4FnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 9, 1, 31, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 52, 21, tzinfo=datetime.timezone.utc), 1, 7.1, -74.000319, 40.730568, -73.92003, 40.775479, 'Cash', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'A/HyDijORQfiwQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 21, tzinfo=datetime.timezone.utc), 2, 3.37, -73.983145, 40.767877, -74.006868, 40.730533, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'hVHSSevFtFxkBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 8, 51, tzinfo=datetime.timezone.utc), 1, 7.46, -73.85262, 40.69732, -73.875202, 40.76272, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'sC8jtarfx5G0lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 35, tzinfo=datetime.timezone.utc), 2, 5.56, -73.989717, 40.735007, -73.950795, 40.798075, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'n7vuRNNAnetV7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 0, tzinfo=datetime.timezone.utc), 1, 5.03, -74.017228, 40.705118, -73.980752, 40.755493, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', '0xlmx6OEckrreg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 28, tzinfo=datetime.timezone.utc), 2, 7.73, -73.950635, 40.783307, -74.011247, 40.702153, 'CASH', 18.5, 0.0, 0.0, 0.0, 18.5, '1705685161.48292', 'E/mFJEL3v0Rlkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 58, tzinfo=datetime.timezone.utc), 2, 6.09, -73.972632, 40.76173, -74.016657, 40.70438, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'qYCWU9PYWsJoDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 32, tzinfo=datetime.timezone.utc), 1, 5.46, -73.998385, 40.723193, -73.952103, 40.780433, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'XEGu6m60QT5/Sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 52, tzinfo=datetime.timezone.utc), 2, 5.57, -73.961235, 40.777777, -74.005982, 40.720283, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'pFlFDHwpM86TgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 6, tzinfo=datetime.timezone.utc), 1, 6.11, -73.972968, 40.765117, -74.01396, 40.702497, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'mHciirYEUfmAdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 30, tzinfo=datetime.timezone.utc), 2, 8.46, -73.941563, 40.791703, -74.01074, 40.701922, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'k4uMYu/i3tbx4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 2, tzinfo=datetime.timezone.utc), 3, 7.78, -73.959052, 40.780887, -74.012243, 40.702713, 'CASH', 20.5, 0.0, 0.0, 0.0, 20.5, '1705685161.48292', 'N26PhYiLxFsjHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 52, tzinfo=datetime.timezone.utc), 5, 8.57, -74.0065, 40.704158, -73.950185, 40.787408, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685161.48292', 'Z7dpsxvRK1GFLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 23, tzinfo=datetime.timezone.utc), 1, 6.77, -74.012377, 40.705735, -73.980062, 40.788243, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685161.48292', '40d5TMkg23kpDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 50, tzinfo=datetime.timezone.utc), 1, 5.65, -73.984397, 40.75632, -73.963005, 40.711747, 'CASH', 20.5, 1.0, 0.0, 0.0, 21.5, '1705685161.48292', 'mG6xlHrsSrIe0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 1, 31, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 59, tzinfo=datetime.timezone.utc), 1, 8.5, -73.983676, 40.760499, -73.968365, 40.679322, 'Cash', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685161.48292', 'xDpK3huM8Lwe/A', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 42, tzinfo=datetime.timezone.utc), 5, 7.53, -73.973617, 40.764483, -74.01518, 40.715608, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685161.48292', '/VSsvyv44QiXXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 9, tzinfo=datetime.timezone.utc), 5, 8.56, -73.991233, 40.755863, -73.922088, 40.83079, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685161.48292', 'wNFEOwXGfuyjlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 54, tzinfo=datetime.timezone.utc), 1, 9.27, -73.971827, 40.74601, -73.924953, 40.861572, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685161.48292', 'glLt+bwI7UdLFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 10, tzinfo=datetime.timezone.utc), 1, 7.32, -74.010315, 40.711918, -73.959292, 40.77734, 'CASH', 22.5, 0.0, 0.0, 0.0, 22.5, '1705685161.48292', 'Pkh5QXsJz53kkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 39, tzinfo=datetime.timezone.utc), 1, 7.19, -73.952478, 40.780978, -73.864625, 40.838247, 'CASH', 22.5, 1.0, 0.0, 0.0, 23.5, '1705685161.48292', 'bGOErZ0b4Hq2Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 44, tzinfo=datetime.timezone.utc), 1, 8.75, -73.862745, 40.769105, -73.95318, 40.782735, 'CASH', 22.5, 1.0, 0.0, 0.0, 23.5, '1705685161.48292', 'ySMT5GeboCY9Yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 54, tzinfo=datetime.timezone.utc), 1, 9.85, -73.993388, 40.72166, -73.870985, 40.774142, 'CASH', 24.5, 0.0, 0.0, 0.0, 24.5, '1705685161.48292', 'OpOg0sAevXyDyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 38, tzinfo=datetime.timezone.utc), 5, 7.79, -74.0167, 40.704693, -74.000287, 40.725582, 'CASH', 24.5, 0.0, 0.0, 0.0, 24.5, '1705685161.48292', 'eVo1XlWRa7NNWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 44, tzinfo=datetime.timezone.utc), 3, 7.33, -73.99188, 40.749922, -73.945962, 40.807962, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685161.48292', 'boIbL08om0XPqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 57, tzinfo=datetime.timezone.utc), 1, 9.93, -73.862767, 40.768833, -73.986953, 40.718377, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685161.48292', 'rx9fbRN3EoVR5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 22, tzinfo=datetime.timezone.utc), 1, 9.8, -73.870642, 40.773652, -73.994858, 40.713423, 'CASH', 24.5, 1.0, 0.0, 0.0, 25.5, '1705685161.48292', 'nj055v3XB58I7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 8, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 49, 34, tzinfo=datetime.timezone.utc), 2, 10.4, -74.001483, 40.731141, -73.887011, 40.767925, 'Cash', 26.5, 0.0, 0.0, 0.0, 26.5, '1705685161.48292', 'EPyBELLj5jZ6NQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 43, tzinfo=datetime.timezone.utc), 2, 11.45, -73.988485, 40.754148, -73.872485, 40.774295, 'CASH', 26.5, 0.0, 0.0, 0.0, 26.5, '1705685161.48292', 'JHIdp6Xodl75wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 55, tzinfo=datetime.timezone.utc), 1, 9.57, 0.0, 0.0, 0.0, 0.0, 'CASH', 22.5, 0.0, 0.0, 5.0, 27.5, '1705685161.48292', 'zBJcrYfLeiFw9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 33, tzinfo=datetime.timezone.utc), 3, 12.32, -73.971368, 40.7469, -73.893302, 40.88889, 'CASH', 28.5, 0.0, 0.0, 0.0, 28.5, '1705685161.48292', 'ZS+xoApNnM8dGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 16, tzinfo=datetime.timezone.utc), 2, 11.88, -73.917205, 40.770057, -73.804332, 40.75348, 'CASH', 28.5, 0.0, 0.0, 0.0, 28.5, '1705685161.48292', 'MeyfZ3CLHw5xdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 6, tzinfo=datetime.timezone.utc), 1, 9.32, -73.870847, 40.773773, -73.9893, 40.730497, 'CASH', 22.5, 1.0, 0.0, 5.0, 28.5, '1705685161.48292', '7PzLRq6WVHvKwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 21, tzinfo=datetime.timezone.utc), 4, 10.08, -73.862755, 40.769133, -73.941198, 40.827332, 'CASH', 24.5, 0.0, 0.0, 5.0, 29.5, '1705685161.48292', 'xlsPIbTWp44uiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 6, tzinfo=datetime.timezone.utc), 1, 10.24, -73.87085, 40.77358, -73.982385, 40.755575, 'Credit', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685161.48292', 'xFwtVdpCXSaQYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 50, tzinfo=datetime.timezone.utc), 2, 10.26, -73.990927, 40.755822, -73.96446, 40.689868, 'Credit', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685161.48292', 'CWdySB+ngHJ9sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 5, tzinfo=datetime.timezone.utc), 1, 11.12, -73.862627, 40.76891, -73.978308, 40.76505, 'CASH', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685161.48292', 'xjexOJVO/bIQjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 19, tzinfo=datetime.timezone.utc), 5, 12.61, -73.862802, 40.769062, -73.98918, 40.757437, 'CASH', 30.5, 0.0, 0.0, 0.0, 30.5, '1705685161.48292', 'cyG8XqdColsK/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 42, tzinfo=datetime.timezone.utc), 2, 10.28, -73.984883, 40.757607, -73.865002, 40.770498, 'CASH', 26.5, 0.0, 0.0, 5.0, 31.5, '1705685161.48292', 'XNmZSa9GHdx4aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 17, tzinfo=datetime.timezone.utc), 5, 11.55, -73.783125, 40.648542, -73.865258, 40.770702, 'CASH', 30.5, 1.0, 0.0, 0.0, 31.5, '1705685161.48292', 'jx4QAqoXm6jRKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 28, tzinfo=datetime.timezone.utc), 1, 0.0, -73.873148, 40.774278, -73.87315, 40.774278, 'Credit', 37.0, 0.0, 0.0, 0.0, 37.0, '1705685161.48292', 'PjGLjDGCuu4jag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 14, tzinfo=datetime.timezone.utc), 1, 13.56, -73.990515, 40.734693, -73.909018, 40.655998, 'CASH', 36.5, 0.5, 0.0, 0.0, 37.0, '1705685161.48292', 'QawCpvUD+S5Y9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 50, tzinfo=datetime.timezone.utc), 1, 16.05, -74.012405, 40.70702, -74.021055, 40.618997, 'CASH', 42.5, 0.5, 0.0, 0.0, 43.0, '1705685161.48292', 'uM77U750HK17SA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 50, tzinfo=datetime.timezone.utc), 1, 18.29, -73.78801, 40.641498, -73.99327, 40.722027, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'ntYgUNhJqTRwYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 13, tzinfo=datetime.timezone.utc), 5, 19.03, -73.96786, 40.759817, -73.793902, 40.656642, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'axBvC1wE+ge6uQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.02, -73.969808, 40.75307, -73.969902, 40.752997, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'KyVOKwZzN1VjLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), 3, 18.38, -73.988888, 40.75618, -73.782497, 40.648778, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', '6NAX9DvqSNjEDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 24, tzinfo=datetime.timezone.utc), 1, 18.87, -73.78675, 40.652833, -73.77659, 40.645132, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'v6cDGLomnNU/Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 45, tzinfo=datetime.timezone.utc), 1, 16.41, -73.968562, 40.764283, -73.782503, 40.644093, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'TioBfYXnBMiz2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 0, 14, tzinfo=datetime.timezone.utc), 5, 20.26, -73.782023, 40.64481, -74.001087, 40.68075, 'CASH', 44.5, 0.5, 0.0, 0.0, 45.0, '1705685161.48292', 'KysW2O3j+FgfqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 37, tzinfo=datetime.timezone.utc), 5, 16.8, -73.98297, 40.765595, -73.782585, 40.644117, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'k0hVu7HFzQBTtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 0, tzinfo=datetime.timezone.utc), 1, 21.62, -73.78346, 40.648693, -74.0145, 40.70821, 'Credit', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'vypvOZ4lKDP5+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 51, tzinfo=datetime.timezone.utc), 2, 11.59, -73.892537, 40.689665, -73.747902, 40.561657, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'nnqLLgOqG8P++Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 11, tzinfo=datetime.timezone.utc), 1, 0.0, -73.974732, 40.742102, -73.974728, 40.742102, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'Iz3zQrOAxL1GMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 15, tzinfo=datetime.timezone.utc), 1, 18.04, -73.777405, 40.64526, -73.984597, 40.76931, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'SdhQ1ACjEgF83Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 43, tzinfo=datetime.timezone.utc), 1, 0.06, -73.96716, 40.761697, -73.966302, 40.762032, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'XBn+LAbgl+iljw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 48, tzinfo=datetime.timezone.utc), 1, 0.04, -73.8896, 40.755177, -73.890052, 40.75512, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'EJXKua85zGaOPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 8, tzinfo=datetime.timezone.utc), 1, 17.67, -74.003312, 40.723717, -73.785892, 40.638812, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'NMwG4U/yVDmRQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 40, tzinfo=datetime.timezone.utc), 5, 18.66, -74.00381, 40.72555, -73.77768, 40.644725, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', '5kR/SYh1ynKM1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 45, tzinfo=datetime.timezone.utc), 2, 0.44, -73.997277, 40.741697, -74.003715, 40.742673, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'up8yo0jmkUHkyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 41, tzinfo=datetime.timezone.utc), 1, 14.42, -73.791562, 40.66089, -73.996427, 40.710143, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', '1bPKRZewGuhU6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 3, tzinfo=datetime.timezone.utc), 1, 30.76, -73.778048, 40.646783, -73.941233, 40.849138, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'UsUPvw0J6nYI8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 24, 11, 47, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 47, 40, tzinfo=datetime.timezone.utc), 1, 0.0, -74.010269, 40.70984, -74.010405, 40.709903, 'Cash', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'S3xzx8OJl8XmTQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 28, tzinfo=datetime.timezone.utc), 2, 1.58, -73.995912, 40.738607, -73.982662, 40.757783, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'dRpZEMWdTR2y/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 12, tzinfo=datetime.timezone.utc), 1, 18.56, -74.005343, 40.720288, -73.776482, 40.644957, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'XQsps8MupAQyGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 5, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 1, tzinfo=datetime.timezone.utc), 5, 20.39, -73.974813, 40.782982, -73.783465, 40.643788, 'Credit', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'RmwJlp3S5aWHLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 38, tzinfo=datetime.timezone.utc), 1, 21.29, -73.790283, 40.643603, -73.960758, 40.764825, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'oDImpU32gGV08Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 27, tzinfo=datetime.timezone.utc), 1, 18.92, -73.924752, 40.732723, -74.008433, 40.731395, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'xma+KuFFX0KKnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.01, -73.970687, 40.764682, -73.970605, 40.764727, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'm7+HSiUfchOelA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 43, tzinfo=datetime.timezone.utc), 1, 17.81, -73.78949, 40.647283, -73.980423, 40.764742, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'S6Y9JkYxJeX5Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 44, tzinfo=datetime.timezone.utc), 2, 21.34, -73.790668, 40.645207, -74.009158, 40.716812, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'OKss4zzlIjc1Aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 31, tzinfo=datetime.timezone.utc), 2, 17.34, -73.976592, 40.76285, -73.78291, 40.64392, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', '6yhdtfcC/KhmkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 2, tzinfo=datetime.timezone.utc), 1, 1.34, -73.922557, 40.775357, -73.903853, 40.767867, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'pWRgihZpTAyz8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 52, tzinfo=datetime.timezone.utc), 1, 0.0, -73.960058, 40.758457, -73.960052, 40.758462, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'HXIUz32JM+VZkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 23, tzinfo=datetime.timezone.utc), 1, 17.06, -73.988985, 40.75412, -73.786512, 40.638868, 'CASH', 45.0, 0.0, 0.0, 0.0, 45.0, '1705685161.48292', 'XQfSoEqyG35E/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 44, tzinfo=datetime.timezone.utc), 1, 4.51, -73.991768, 40.759485, -74.029445, 40.738467, 'CASH', 45.0, 0.0, 0.0, 8.0, 53.0, '1705685161.48292', 'aYovhVmKn2trzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 20, tzinfo=datetime.timezone.utc), 1, 11.0, -73.874592, 40.77408, -73.985238, 40.759452, 'CASH', 30.1, 1.0, 0.0, 4.15, 35.25, '1705685161.48292', 'jsUP8q266iyJ6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 12, tzinfo=datetime.timezone.utc), 1, 10.97, -73.874473, 40.773992, -73.981587, 40.751948, 'CASH', 32.1, 1.0, 0.0, 4.15, 37.25, '1705685161.48292', 'PhQ36ecmRTRIcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), 2, 20.57, -73.954352, 40.764097, -73.954137, 40.577933, 'CASH', 48.1, 1.0, 0.0, 4.15, 53.25, '1705685161.48292', '81B65QNwOphdBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 41, tzinfo=datetime.timezone.utc), 2, 7.4, -73.872465, 40.773922, -73.948777, 40.78416, 'CASH', 18.1, 0.5, 0.0, 4.15, 22.75, '1705685161.48292', '1qwJ2MbCdwF3Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 6, tzinfo=datetime.timezone.utc), 3, 9.38, -73.862613, 40.768882, -73.973093, 40.755593, 'CASH', 22.1, 0.5, 0.0, 4.15, 26.75, '1705685161.48292', 'esasPKSvsNs6jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 31, tzinfo=datetime.timezone.utc), 5, 10.28, 0.0, 0.0, 0.0, 0.0, 'CASH', 24.1, 0.5, 0.0, 4.15, 28.75, '1705685161.48292', 'PdWlFE4vvJQ8rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 54, tzinfo=datetime.timezone.utc), 1, 10.88, -73.870873, 40.773698, -73.982452, 40.762475, 'CASH', 26.1, 0.5, 0.0, 4.15, 30.75, '1705685161.48292', '+jKK5aMQnvuG8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 5, tzinfo=datetime.timezone.utc), 5, 13.7, -73.993493, 40.721125, -74.177552, 40.695413, 'CASH', 49.5, 0.0, 0.0, 8.0, 57.5, '1705685161.48292', 'cGA4sRZm5iTaKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 56, tzinfo=datetime.timezone.utc), 1, 27.47, -73.994375, 40.756048, -74.21319, 40.545983, 'Credit', 95.0, 0.0, 0.0, 8.0, 103.0, '1705685161.48292', '0eOZrkdv9pe82w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 50, tzinfo=datetime.timezone.utc), 1, 21.52, -73.981992, 40.758053, -74.166142, 40.712655, 'CASH', 67.5, 0.0, 0.0, 8.0, 75.5, '1705685161.48292', 'Fj8MroiRy2TTqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 22, tzinfo=datetime.timezone.utc), 1, 0.32, -73.978382, 40.78673, -73.978952, 40.782983, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'd6q2mPuerCx4kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 37, tzinfo=datetime.timezone.utc), 2, 0.23, -73.967148, 40.793425, -73.969203, 40.790425, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'Xo9nXUG5SL4oKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 4, tzinfo=datetime.timezone.utc), 5, 0.12, -74.00596, 40.735145, -74.003633, 40.735558, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', '8e3PmB57v5Xv8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.2, -73.967427, 40.7613, -73.966588, 40.761912, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'lBctGqFLEn0qQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 39, tzinfo=datetime.timezone.utc), 1, 0.18, -73.975782, 40.756922, -73.974113, 40.758775, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'EHVWTHuU3TD+Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 36, tzinfo=datetime.timezone.utc), 2, 0.22, -73.952747, 40.780607, -73.952747, 40.780607, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'NHAGyg3QIy1yuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 39, tzinfo=datetime.timezone.utc), 1, 0.34, -73.975072, 40.758047, -73.972123, 40.762583, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'DTrwIFQoRd79fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 13, tzinfo=datetime.timezone.utc), 2, 0.28, -73.975558, 40.78211, -73.978047, 40.77839, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', '2CQEMfoGXZ8tug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 27, tzinfo=datetime.timezone.utc), 2, 0.17, -73.988113, 40.723882, -73.986545, 40.726092, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'qoEa6XtzWM5PWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), 1, 0.08, -73.98811, 40.750997, -73.98912, 40.75185, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'rfR6n+mC3D8NcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 37, tzinfo=datetime.timezone.utc), 3, 0.03, -73.988215, 40.761368, -73.987653, 40.761367, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', '8Hszk42WZntwFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 1, tzinfo=datetime.timezone.utc), 1, 0.33, -73.954155, 40.784595, -73.95707, 40.780422, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'XgZ91nh6hX3Nvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 27, tzinfo=datetime.timezone.utc), 1, 0.06, -73.946533, 40.776453, -73.946757, 40.77619, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', '+bPJqCXBjm/puQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 51, tzinfo=datetime.timezone.utc), 3, 0.24, -73.977873, 40.766347, -73.973973, 40.764782, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'o4JLhY8W0FsC7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 44, tzinfo=datetime.timezone.utc), 1, 0.21, -73.959997, 40.770265, -73.957957, 40.773175, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'K4jIQuBtHmPjkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 17, tzinfo=datetime.timezone.utc), 1, 0.31, -73.970582, 40.758635, -73.972968, 40.754552, 'CASH', 2.9, 0.0, 0.0, 0.0, 2.9, '1705685161.48292', 'uSR8ORMgIpb/Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 42, tzinfo=datetime.timezone.utc), 1, 0.15, -73.945763, 40.773482, -73.946758, 40.771798, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'h8cmtjucA50y0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 52, tzinfo=datetime.timezone.utc), 2, 0.1, -73.987617, 40.721823, -73.988487, 40.72082, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'NY6+WHefdRRByQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.2, -74.0082, 40.738722, -74.005847, 40.737483, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'W2eGcFo8Y+yk0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 35, tzinfo=datetime.timezone.utc), 1, 0.1, -73.978817, 40.745172, -73.978027, 40.745717, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', '7a1Y3vI+2IZI0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 41, tzinfo=datetime.timezone.utc), 3, 0.12, -73.986908, 40.74406, -73.989207, 40.743443, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'tTAHp3JPtgpnsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 31, tzinfo=datetime.timezone.utc), 1, 0.27, -73.778095, 40.646762, -73.781907, 40.647262, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'ayM1cZFMF49axA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 44, tzinfo=datetime.timezone.utc), 3, 0.25, -73.950585, 40.805968, -73.95284, 40.802905, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'vPGO7v7x7zuDdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 43, tzinfo=datetime.timezone.utc), 2, 0.21, -74.01627, 40.709202, -74.015843, 40.707507, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'qRqWBNukpDmiuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 51, tzinfo=datetime.timezone.utc), 1, 0.32, -73.96027, 40.775853, -73.958542, 40.779812, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', '/prFMnaZnlB3Rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 46, tzinfo=datetime.timezone.utc), 1, 0.16, -73.957827, 40.717788, -73.955488, 40.716368, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'Kej7P2NEIIWVLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 42, tzinfo=datetime.timezone.utc), 1, 0.12, -73.949922, 40.730297, -73.949672, 40.730782, 'CASH', 2.9, 0.5, 0.0, 0.0, 3.4, '1705685161.48292', 'WTCrn+wcMHi00g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 39, tzinfo=datetime.timezone.utc), 1, 0.05, -73.982592, 40.763875, -73.982693, 40.763403, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', '5DvZHNHDPxqNRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 32, tzinfo=datetime.timezone.utc), 5, 0.29, -73.956855, 40.780848, -73.956892, 40.780268, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'xe8SPeDGGQvSYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), 1, 0.36, -73.988432, 40.72337, -73.98431, 40.72553, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'rKtI8LKl/BU5GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 8, tzinfo=datetime.timezone.utc), 1, 0.2, -73.976735, 40.755473, -73.974328, 40.757622, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'DaWK9HKzBQ510Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 47, tzinfo=datetime.timezone.utc), 1, 0.26, 0.0, 0.0, 0.0, 0.0, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'd0R7aRZUG8hZaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 51, tzinfo=datetime.timezone.utc), 5, 0.05, -73.963283, 40.764987, -73.963022, 40.765498, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'vbLkp1WXcqcudw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 39, tzinfo=datetime.timezone.utc), 1, 0.04, -73.972502, 40.752075, -73.971957, 40.751712, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'sLk2dYcKEJ30ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 9, tzinfo=datetime.timezone.utc), 1, 0.22, -73.95374, 40.779073, -73.951662, 40.781795, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', '/gkBrvgskSBLtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 9, tzinfo=datetime.timezone.utc), 2, 0.23, -73.98077, 40.781797, -73.983338, 40.78381, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'tCrBLBmzdZl+eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 21, tzinfo=datetime.timezone.utc), 1, 0.37, -73.994802, 40.745183, -73.997173, 40.740682, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'ILb/m3YOGbD8mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.37, -73.999288, 40.74937, -74.002602, 40.74476, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', '4mNhjITKDrRceQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 20, tzinfo=datetime.timezone.utc), 1, 0.34, -73.951855, 40.824665, -73.955073, 40.82031, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'a3sw2r2PP1dQgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 52, tzinfo=datetime.timezone.utc), 1, 0.34, -73.95951, 40.774202, -73.962592, 40.769913, 'CASH', 2.9, 1.0, 0.0, 0.0, 3.9, '1705685161.48292', 'bLjU0isbWraA9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 19, tzinfo=datetime.timezone.utc), 5, 0.32, -73.965202, 40.769087, -73.96665, 40.772295, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'jNOKv1r1udlRyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 58, tzinfo=datetime.timezone.utc), 1, 0.47, -74.00746, 40.742617, -74.003077, 40.747222, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'xboXOK/uZDZDfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 18, tzinfo=datetime.timezone.utc), 1, 0.43, -73.975603, 40.78185, -73.979587, 40.776445, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'FGJrYUWfKV/M7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 54, tzinfo=datetime.timezone.utc), 1, 0.37, -73.775853, 40.593627, -73.77959, 40.594745, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'Lc2fupKDCxJsMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 15, tzinfo=datetime.timezone.utc), 5, 0.37, -73.960208, 40.769512, -73.957758, 40.773765, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', '2jn7AwpcDZlIfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 36, tzinfo=datetime.timezone.utc), 2, 0.46, -73.973912, 40.79209, -73.978222, 40.786383, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', '8kTkatt0YJxkdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 55, tzinfo=datetime.timezone.utc), 1, 0.5, -73.990232, 40.738632, -73.992373, 40.743417, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'TLtQd84DPZLfWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 35, tzinfo=datetime.timezone.utc), 1, 0.28, -73.988703, 40.768988, -73.986307, 40.772183, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'rGLsa/w48uBitA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), 1, 0.18, -73.992207, 40.690202, -73.994562, 40.68949, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', '01OYgY07jxQg9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 43, tzinfo=datetime.timezone.utc), 1, 0.43, -73.951823, 40.777977, -73.953573, 40.773508, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'YXw4dH9Lkv93SA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 6, tzinfo=datetime.timezone.utc), 2, 0.33, -73.976937, 40.749788, -73.980238, 40.74549, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'f/QeWWTk3ejClQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 25, tzinfo=datetime.timezone.utc), 1, 0.01, -73.96067, 40.756668, -73.960763, 40.757163, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'tMnCl8PFgC5M6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 43, tzinfo=datetime.timezone.utc), 1, 0.4, -73.980633, 40.74509, -73.980633, 40.74509, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'v2wQ9jY2QQdZIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 0, tzinfo=datetime.timezone.utc), 2, 0.39, -73.994832, 40.744758, -73.998665, 40.740425, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'zxx1V2viC8qrEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 37, tzinfo=datetime.timezone.utc), 2, 0.23, -73.997965, 40.754102, -73.994335, 40.752475, 'Credit', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'OoiisfXbYZUtPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 53, tzinfo=datetime.timezone.utc), 5, 0.25, -73.982118, 40.771893, -73.978758, 40.772323, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'C1LUT5B2GrgS+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 33, tzinfo=datetime.timezone.utc), 5, 0.24, -73.973317, 40.785125, -73.976258, 40.78618, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'lwssi+ddMNDDxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 54, tzinfo=datetime.timezone.utc), 2, 0.44, -73.987025, 40.733427, -73.983008, 40.738922, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'fAGzfjH7J90OBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 32, tzinfo=datetime.timezone.utc), 1, 0.5, -73.949705, 40.780463, -73.954275, 40.774252, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'nUu/wzAK6xgfZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 32, tzinfo=datetime.timezone.utc), 3, 0.34, -73.96735, 40.766823, -73.963377, 40.769248, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', '5U2se3eaURXmfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 0, tzinfo=datetime.timezone.utc), 1, 0.32, -73.94606, 40.77319, -73.950498, 40.775453, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'TXZZfxoo/qnwMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.17, -73.981823, 40.761512, -73.98342, 40.76096, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', 'Dmvsdm/wD/FpYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 12, tzinfo=datetime.timezone.utc), 1, 0.18, -73.966773, 40.764012, -73.965342, 40.764583, 'CASH', 3.3, 1.0, 0.0, 0.0, 4.3, '1705685161.48292', '0w+8it6vPOG51Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 57, tzinfo=datetime.timezone.utc), 1, 1.19, -73.970595, 40.75633, -73.962452, 40.771533, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'wRMUuMhU54UJkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 42, tzinfo=datetime.timezone.utc), 1, 1.08, -73.988108, 40.738455, -73.977583, 40.75155, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '+5FLWD8WkXrnzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 50, tzinfo=datetime.timezone.utc), 2, 0.69, -73.993905, 40.724488, -73.9877, 40.718232, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '6gxj0GNrtQkZ/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 36, tzinfo=datetime.timezone.utc), 5, 0.95, -73.961355, 40.757648, -73.973282, 40.754975, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'CFTtKWHN5NnDrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 42, tzinfo=datetime.timezone.utc), 5, 0.81, -73.982358, 40.752625, -73.97465, 40.751785, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'hv1L6Pzbs79fCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 8, tzinfo=datetime.timezone.utc), 1, 1.3, -73.959897, 40.773598, -73.971027, 40.758538, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'nEjN5nBqEL92tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 11, tzinfo=datetime.timezone.utc), 5, 1.33, -73.959707, 40.809412, -73.967835, 40.79393, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '440T8fBONX/5Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 0, tzinfo=datetime.timezone.utc), 1, 1.22, -73.960053, 40.782078, -73.97755, 40.789433, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'PCX4BJpE0QlIcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 30, tzinfo=datetime.timezone.utc), 2, 0.97, -73.9863, 40.74001, -73.99174, 40.749282, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '7o/fTS8A2ZMoFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 26, tzinfo=datetime.timezone.utc), 5, 0.86, -74.016137, 40.711273, -74.012968, 40.702365, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'moK5jTfKj3xcCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 19, 28, tzinfo=datetime.timezone.utc), 5, 0.99, -73.963072, 40.776798, -73.956447, 40.776472, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'zgLP/CssH3Nlcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 33, tzinfo=datetime.timezone.utc), 4, 0.65, -73.998985, 40.722802, -73.998443, 40.715707, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'dz7p66lnbsRt+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.7, -73.987765, 40.733582, -73.999108, 40.738428, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'KkAth3agAKtmCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 20, tzinfo=datetime.timezone.utc), 2, 1.4, -73.97859, 40.740968, -73.991198, 40.723562, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ycOtoVn8yVfOQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 28, tzinfo=datetime.timezone.utc), 1, 0.66, -73.963107, 40.774577, -73.964897, 40.766365, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'de0qAwXA+ZtK3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 48, tzinfo=datetime.timezone.utc), 2, 0.88, -74.003217, 40.72766, -73.99342, 40.733108, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'DNewFQzkwXc24g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 40, tzinfo=datetime.timezone.utc), 1, 0.72, -73.97773, 40.752902, -73.970748, 40.755723, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'VAQFztUkU9zq3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 39, tzinfo=datetime.timezone.utc), 1, 0.34, -73.974072, 40.764505, -73.976255, 40.76047, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'LnPG9Um/cGxJsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 24, tzinfo=datetime.timezone.utc), 1, 1.18, -73.981553, 40.732597, -73.970943, 40.747475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Sbf76Qw9piOX4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.15, -73.977688, 40.753535, -73.985263, 40.73891, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '2Qb9LzAtr/i/XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 44, tzinfo=datetime.timezone.utc), 2, 0.84, -73.990577, 40.756937, -73.978018, 40.753398, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'FDO2HPGRBpKUmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 32, tzinfo=datetime.timezone.utc), 2, 0.89, -73.955247, 40.779797, -73.957203, 40.769913, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ifhfqlmTOiwgLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 7, tzinfo=datetime.timezone.utc), 1, 1.14, -74.00268, 40.757587, -74.003112, 40.744965, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ppU1n94p5ZJZEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 58, tzinfo=datetime.timezone.utc), 1, 1.09, -73.991837, 40.738468, -74.00293, 40.731153, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Yum9bzmPo9rqWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 46, tzinfo=datetime.timezone.utc), 1, 0.66, -73.977682, 40.753883, -73.97711, 40.761003, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'eMwFIWTrFmTpkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 54, tzinfo=datetime.timezone.utc), 1, 0.71, -73.982627, 40.738663, -73.991862, 40.744312, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'O7tkpfRNBUfQBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 37, tzinfo=datetime.timezone.utc), 1, 0.75, -74.010393, 40.711705, -74.013125, 40.703072, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'h6cnDA2XEFYJ0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 23, tzinfo=datetime.timezone.utc), 1, 0.96, -73.97859, 40.75082, -73.978718, 40.740635, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'e7OxbTkF00CKOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.03, -73.970897, 40.751213, -73.981, 40.744157, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Q97KMsnkzA11wQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 40, tzinfo=datetime.timezone.utc), 5, 1.04, -73.988867, 40.736742, -74.002322, 40.733483, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'aQJK6ANBpsK4PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 28, tzinfo=datetime.timezone.utc), 1, 0.76, -73.974672, 40.762773, -73.977937, 40.753567, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'zeAmFx/7enEgEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 52, tzinfo=datetime.timezone.utc), 1, 1.13, -73.966523, 40.770538, -73.957902, 40.784627, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'xpreI+XKUrBUaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 28, tzinfo=datetime.timezone.utc), 2, 0.92, -73.983702, 40.756297, -73.997837, 40.748768, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ffQ1nSjpLbitYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 2, tzinfo=datetime.timezone.utc), 1, 0.9, -73.971963, 40.765498, -73.980402, 40.754338, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Kl8tDXx7MK6nig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 54, tzinfo=datetime.timezone.utc), 5, 1.05, -73.985225, 40.76849, -73.969737, 40.761998, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'J/GQRMKGCXmprw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 0, tzinfo=datetime.timezone.utc), 1, 1.14, -73.976715, 40.756382, -73.98253, 40.76718, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'G8Zspo3QQGjVjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 28, tzinfo=datetime.timezone.utc), 5, 1.04, -73.967932, 40.80212, -73.969757, 40.789963, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'BNJ5FITb2BqHUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 51, tzinfo=datetime.timezone.utc), 6, 0.83, -73.990625, 40.751193, -73.994032, 40.741122, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'SJ7tSb36bqWsXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 16, tzinfo=datetime.timezone.utc), 1, 1.2, -73.991753, 40.74452, -73.979632, 40.754502, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'BjLvGH835v8gSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 0, tzinfo=datetime.timezone.utc), 1, 0.65, -73.983458, 40.734358, -73.993498, 40.736853, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'WzfN/AuJTH8ruA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 25, tzinfo=datetime.timezone.utc), 5, 0.7, -73.997727, 40.757268, -73.990562, 40.751385, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'fmI/xBhyb67dCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 39, tzinfo=datetime.timezone.utc), 5, 1.09, -73.967025, 40.788662, -73.980965, 40.78516, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Qw/adm+/oQLNow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 27, tzinfo=datetime.timezone.utc), 1, 0.99, -73.988427, 40.727578, -74.001333, 40.725042, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'x8IRHvs8YU1A1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.02, -73.968878, 40.761515, -73.97238, 40.749683, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'aeFoOEQ/Ul6imw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 12, tzinfo=datetime.timezone.utc), 1, 1.44, -73.973607, 40.7893, -73.960177, 40.80783, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'J+LCEObYAheCdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 46, tzinfo=datetime.timezone.utc), 2, 0.85, -73.97668, 40.765133, -73.98258, 40.774092, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rlXracbMEAOSfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 32, tzinfo=datetime.timezone.utc), 1, 1.1, -73.988055, 40.750357, -73.97896, 40.763102, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'E485QFX2HO/fRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 50, tzinfo=datetime.timezone.utc), 1, 0.81, -73.992973, 40.767945, -73.986337, 40.761202, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'AxSL9BUJD5b3hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 35, tzinfo=datetime.timezone.utc), 1, 1.2, -73.991803, 40.73869, -73.987647, 40.746262, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '0QSFVjY5CssqPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 4, tzinfo=datetime.timezone.utc), 1, 0.29, -73.988135, 40.723792, -73.990072, 40.725632, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Dbyifr+ybokx7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 10, tzinfo=datetime.timezone.utc), 5, 0.93, -73.96129, 40.77443, -73.970608, 40.764212, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'vEiWGbbe7kWXgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 8, tzinfo=datetime.timezone.utc), 1, 0.97, -73.991033, 40.745248, -73.991055, 40.755702, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ProujjebDdIJFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 17, tzinfo=datetime.timezone.utc), 1, 1.05, -73.976682, 40.756505, -73.990042, 40.745112, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'g11TSOCnBxrWOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 48, tzinfo=datetime.timezone.utc), 2, 0.81, -73.960285, 40.764685, -73.962643, 40.772838, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'uUfJq/7CvQMoZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 11, tzinfo=datetime.timezone.utc), 1, 0.79, -73.996145, 40.74435, -73.990952, 40.736065, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rSnGvWGSEsYDSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 18, tzinfo=datetime.timezone.utc), 2, 0.73, -73.994805, 40.730252, -73.993867, 40.734288, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'UkrAx+1tMI018A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.64, -73.981425, 40.752798, -73.991472, 40.755217, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '2BprnyBKanPJbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.73, -73.966763, 40.75285, -73.974933, 40.74865, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'cugZUHTAnkAb9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 53, tzinfo=datetime.timezone.utc), 5, 0.91, -73.961958, 40.767805, -73.956102, 40.778737, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '4jDpsnKjpCvisA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 10, tzinfo=datetime.timezone.utc), 5, 0.86, -73.982448, 40.761633, -73.982573, 40.771412, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'YjdFzw7AiVx3bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 44, tzinfo=datetime.timezone.utc), 5, 0.81, -74.005178, 40.721328, -73.996437, 40.723792, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '4JXuFKzs3MwowQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 26, tzinfo=datetime.timezone.utc), 2, 0.85, -73.994012, 40.736398, -73.991902, 40.744115, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'VVtT+DAZGiVCxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 54, tzinfo=datetime.timezone.utc), 1, 0.83, -74.01353, 40.716102, -74.017173, 40.708335, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jPegWnYSZi7hYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 59, tzinfo=datetime.timezone.utc), 1, 1.26, -73.979487, 40.776822, -73.983152, 40.760452, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '/85+RC6ftkrkqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 32, tzinfo=datetime.timezone.utc), 1, 0.98, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ratStuU0UPKLqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 30, tzinfo=datetime.timezone.utc), 1, 0.97, -73.97767, 40.75556, -73.966433, 40.765397, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'eQlgg9ZTF8XaJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 51, tzinfo=datetime.timezone.utc), 2, 0.82, -73.979143, 40.785212, -73.981072, 40.774398, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '1OEBfOAJrFc/BQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 1, tzinfo=datetime.timezone.utc), 1, 0.98, -73.978518, 40.755387, -73.976075, 40.752938, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'dXItJB7DM8Aipg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 34, tzinfo=datetime.timezone.utc), 5, 1.02, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'BNTS/zAy/M0DHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 19, tzinfo=datetime.timezone.utc), 5, 1.1, -73.967995, 40.771157, -73.97748, 40.757785, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'WBT1uVAlWuHwqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 58, tzinfo=datetime.timezone.utc), 1, 0.74, -73.975332, 40.757925, -73.966298, 40.753305, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'k2AtIZaayd7UQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 0, tzinfo=datetime.timezone.utc), 1, 0.95, -73.950117, 40.77133, -73.961745, 40.76426, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'qj6mn5rhWghGMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 44, tzinfo=datetime.timezone.utc), 1, 0.9, -73.990898, 40.745168, -73.991405, 40.754798, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rliJzhSwp6pI7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 56, tzinfo=datetime.timezone.utc), 4, 0.93, -73.982112, 40.766567, -73.981248, 40.778927, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Ohi4Dzsz80pTVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 29, tzinfo=datetime.timezone.utc), 1, 0.94, -73.968783, 40.767203, -73.97472, 40.756403, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'm5X2wEjnZ3LsgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 0, tzinfo=datetime.timezone.utc), 1, 0.98, -73.982018, 40.774722, -73.984523, 40.761262, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'zsrAxDNsxixJxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 16, tzinfo=datetime.timezone.utc), 1, 0.99, -73.961982, 40.8107, -73.969543, 40.797813, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Y3cIycDp0aSh4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 2, tzinfo=datetime.timezone.utc), 1, 1.02, -73.966625, 40.752978, -73.964578, 40.764158, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'LY3s2yZodQ5cVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 56, tzinfo=datetime.timezone.utc), 1, 0.87, -73.96169, 40.773263, -73.949637, 40.773728, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'PB1Wv3IjWIuoJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 12, tzinfo=datetime.timezone.utc), 5, 0.67, -73.985137, 40.739575, -73.99527, 40.74221, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'TCdChZwsRpCn9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 55, tzinfo=datetime.timezone.utc), 1, 1.18, -73.970408, 40.75875, -73.958918, 40.768475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'bsvRkW2buKRHCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 53, tzinfo=datetime.timezone.utc), 1, 0.8, -73.969003, 40.761193, -73.978073, 40.756678, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 't5QIJKuDY2mrwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 47, tzinfo=datetime.timezone.utc), 5, 0.45, -74.00166, 40.747442, -73.995992, 40.74869, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'vpINq32jSY3cEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 20, tzinfo=datetime.timezone.utc), 1, 1.21, -73.955917, 40.781803, -73.957915, 40.768635, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'dj21xsOzYz4AYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 19, tzinfo=datetime.timezone.utc), 1, 0.98, -73.959073, 40.774913, -73.967918, 40.762848, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'oT6GA2vG3JB1NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 1, tzinfo=datetime.timezone.utc), 5, 0.88, -73.992928, 40.768282, -73.979322, 40.767042, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'B1xz5GGIeXFRwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 34, tzinfo=datetime.timezone.utc), 5, 1.41, -73.994218, 40.746373, -74.000665, 40.728847, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'lWUTMO3vJNfQfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 11, tzinfo=datetime.timezone.utc), 1, 1.04, -73.990787, 40.75089, -73.987583, 40.741413, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '6neT9XW5GH3vUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 17, tzinfo=datetime.timezone.utc), 1, 0.99, -73.994853, 40.76264, -73.989808, 40.752582, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'xz8OrRpRli9y9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 22, 50, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 56, 52, tzinfo=datetime.timezone.utc), 1, 0.9, -74.006567, 40.734366, -73.999138, 40.739594, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'gO2bnTN/QLNLOg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 31, tzinfo=datetime.timezone.utc), 1, 1.15, -73.989807, 40.756032, -73.990018, 40.756817, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'wLssUqxw0USFng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 47, tzinfo=datetime.timezone.utc), 5, 0.96, -73.983707, 40.762143, -73.99189, 40.749098, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '8UjDHZd7OhbkQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 9, 48, tzinfo=datetime.timezone.utc), 1, 1.05, -73.972338, 40.78655, -73.984365, 40.780055, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'asA190fXTfrtdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 5, tzinfo=datetime.timezone.utc), 2, 0.85, -73.985505, 40.751925, -73.978177, 40.757253, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'ri9ZZCGbBY/G+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 22, tzinfo=datetime.timezone.utc), 1, 1.0, -73.96154, 40.760123, -73.9694, 40.753717, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '0bFsM3vjRVouEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 41, tzinfo=datetime.timezone.utc), 1, 1.08, -73.993608, 40.75706, -73.988868, 40.768823, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'bGvZweOYF0cNpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 10, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980925, 40.759885, -73.97273, 40.756257, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Z9vTyU6IW+87Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.8, -73.983832, 40.7552, -73.973705, 40.755088, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '243Ri6e0WgiFDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 46, tzinfo=datetime.timezone.utc), 6, 1.33, -73.982528, 40.776243, -73.971027, 40.793298, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '0LACj4AVeAsm7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 28, tzinfo=datetime.timezone.utc), 1, 1.19, -73.964547, 40.790837, -73.950757, 40.799948, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Jk6X8Dq2aqm3mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 25, tzinfo=datetime.timezone.utc), 1, 1.03, -73.96542, 40.76609, -73.961897, 40.756087, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'S8cHlaMRaw+zdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 34, tzinfo=datetime.timezone.utc), 1, 1.35, -73.994418, 40.745818, -74.006427, 40.73021, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Luycnu/neRAPpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 13, 20, 58, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 2, 20, tzinfo=datetime.timezone.utc), 1, 1.4, -73.955908, 40.778687, -73.968869, 40.761032, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '8fWdl3kpVlm1kg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 11, tzinfo=datetime.timezone.utc), 5, 0.82, -73.989752, 40.756808, -73.979295, 40.758425, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Pxsp23Y70rKKOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 53, tzinfo=datetime.timezone.utc), 1, 1.16, -73.986588, 40.73046, -73.9864, 40.742192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jso25I38+yz8HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 13, tzinfo=datetime.timezone.utc), 1, 0.57, -73.996328, 40.686175, -73.992575, 40.693858, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 't2sJwkFXXsfMiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 48, tzinfo=datetime.timezone.utc), 1, 0.73, -74.000143, 40.726658, -73.991755, 40.733467, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '5NBXdtb5J0MvJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 22, tzinfo=datetime.timezone.utc), 2, 1.02, -73.98259, 40.776027, -73.98045, 40.786495, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'GCZoVLxtJCD+3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 9, tzinfo=datetime.timezone.utc), 1, 0.93, -73.969437, 40.762203, -73.958547, 40.766008, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'pu/2rML+t4V3YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 27, tzinfo=datetime.timezone.utc), 2, 1.25, -73.972885, 40.74454, -73.97186, 40.757065, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jlEiTGZ8Funmow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 47, tzinfo=datetime.timezone.utc), 1, 1.19, -74.00658, 40.731792, -73.99647, 40.742855, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'XypNZBEtfwc5sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 12, tzinfo=datetime.timezone.utc), 1, 0.91, -73.990682, 40.755817, -73.980378, 40.750223, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'BZr/HOVkp3tsbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), 5, 0.91, -73.830245, 40.75943, -73.816962, 40.761767, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'lMEaPPssRW3rKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 53, tzinfo=datetime.timezone.utc), 2, 0.81, -73.960507, 40.768772, -73.95818, 40.777772, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Jv1VuXhi/JSjSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 43, tzinfo=datetime.timezone.utc), 3, 0.97, -73.995095, 40.73401, -73.980283, 40.727173, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'EpqLZvEb5obu+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 2, tzinfo=datetime.timezone.utc), 2, 0.88, -73.984125, 40.752055, -73.984052, 40.746958, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'tfXIT4yezFZnJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 23, tzinfo=datetime.timezone.utc), 2, 1.03, -73.988968, 40.74138, -73.979505, 40.752358, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'NJ62YVNaD39teg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 32, tzinfo=datetime.timezone.utc), 1, 1.13, -73.990978, 40.745297, -73.982428, 40.756697, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '53NUnI1zCsBPQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 14, tzinfo=datetime.timezone.utc), 2, 0.76, -73.978385, 40.761793, -73.971788, 40.756488, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'XacXZj4wDlxO5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 49, tzinfo=datetime.timezone.utc), 1, 0.94, -73.984735, 40.75725, -73.99429, 40.747137, 'Credit', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'pTZAZYGMRgKIBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 3, tzinfo=datetime.timezone.utc), 1, 0.49, -73.98612, 40.7621, -73.97898, 40.762595, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'wOHRkyitGqFvkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 39, tzinfo=datetime.timezone.utc), 1, 0.91, -73.986878, 40.754763, -73.995123, 40.750028, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'e/STZix6HDBxJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 36, tzinfo=datetime.timezone.utc), 1, 0.71, -73.98237, 40.763822, -73.976665, 40.757127, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'sQkyfyoK1A33EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 57, tzinfo=datetime.timezone.utc), 1, 1.17, -73.991938, 40.740888, -73.984185, 40.754812, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'LVgl62ZqNSoZsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.93, -73.982705, 40.739668, -73.992643, 40.743142, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'p6agLjPOfUUbZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 7, tzinfo=datetime.timezone.utc), 1, 1.26, -74.003258, 40.742555, -74.001297, 40.756393, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'wGOzCjhKWlhxAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 29, tzinfo=datetime.timezone.utc), 1, 0.75, -73.96205, 40.767762, -73.963862, 40.775465, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '3ns2B5ixYX8tDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 6, tzinfo=datetime.timezone.utc), 1, 0.91, -74.008103, 40.73343, -73.992683, 40.734015, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'vsxn4twa2mkY2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 41, tzinfo=datetime.timezone.utc), 1, 0.92, -73.981825, 40.751385, -73.994372, 40.750178, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'I3nIdkTmX+sQWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 30, tzinfo=datetime.timezone.utc), 1, 0.84, -73.981457, 40.743963, -73.972157, 40.749612, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'YFt7L2gOV4boPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 20, tzinfo=datetime.timezone.utc), 3, 0.84, -73.998538, 40.745393, -74.008147, 40.747572, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'OAMKwvWVluRp2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 54, tzinfo=datetime.timezone.utc), 5, 0.74, -73.968013, 40.771058, -73.97025, 40.76823, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'BfGLq1TrNd/11w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 48, tzinfo=datetime.timezone.utc), 1, 0.85, -73.99164, 40.744502, -73.99082, 40.734582, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'hGIzvVrKSpL2DQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 54, tzinfo=datetime.timezone.utc), 1, 1.34, -73.990563, 40.75161, -74.001817, 40.734982, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'FLmqkLZyksHthg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 39, tzinfo=datetime.timezone.utc), 2, 0.93, -73.965978, 40.762347, -73.957463, 40.768487, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'XJ3SBUFVpywwkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 14, tzinfo=datetime.timezone.utc), 1, 0.48, -73.969315, 40.75805, -73.974023, 40.7573, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'RRH7TF50FmrJfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 56, tzinfo=datetime.timezone.utc), 2, 0.67, -73.997188, 40.722148, -74.000517, 40.728632, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'd9BPd6KsVWcpHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 25, tzinfo=datetime.timezone.utc), 1, 0.89, -73.967883, 40.787313, -73.974527, 40.793243, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Kwba9qKd4EAkTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 34, tzinfo=datetime.timezone.utc), 1, 0.96, -73.979388, 40.727463, -73.981745, 40.735803, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'cG/ymdK2m6S7FA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 43, tzinfo=datetime.timezone.utc), 1, 1.31, -73.966063, 40.762127, -73.959057, 40.777527, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'iqhjJJip5gqwFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 45, tzinfo=datetime.timezone.utc), 5, 0.98, -73.985813, 40.762477, -73.987813, 40.755683, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '91KwgPdk2Qet2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 8, tzinfo=datetime.timezone.utc), 3, 0.79, -73.987402, 40.735997, -73.999787, 40.738465, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'kS569ar95uab8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 56, tzinfo=datetime.timezone.utc), 1, 1.14, -73.945145, 40.774647, -73.945363, 40.78218, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rMxJZaB6yELw+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 51, tzinfo=datetime.timezone.utc), 2, 0.48, -73.952668, 40.786005, -73.947233, 40.782577, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '3ourrDALnzYh6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 27, tzinfo=datetime.timezone.utc), 1, 1.04, -73.986567, 40.769388, -73.98627, 40.75752, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'etvUm83iCE8vPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 9, 58, tzinfo=datetime.timezone.utc), 2, 1.06, -73.98643, 40.77741, -73.982075, 40.767275, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'iruJqIOwlBlSwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 15, tzinfo=datetime.timezone.utc), 5, 0.75, -73.978448, 40.754163, -73.979798, 40.76192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'J0eDwBqBwoCD2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 14, tzinfo=datetime.timezone.utc), 1, 1.15, -73.969052, 40.800893, -73.977477, 40.787153, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'hiA+HlVnzgNBpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 22, tzinfo=datetime.timezone.utc), 2, 0.97, -73.953302, 40.791585, -73.961942, 40.779347, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jYAruhbimQLDFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 45, tzinfo=datetime.timezone.utc), 5, 1.05, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rzPSKfv3f0Sb4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 27, tzinfo=datetime.timezone.utc), 5, 0.85, -74.005517, 40.748477, -73.998753, 40.742443, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'XBH3GdBfMRrZ3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 0, tzinfo=datetime.timezone.utc), 1, 0.97, -73.95862, 40.78089, -73.96579, 40.769478, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'zHHlcYAi8AcI9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 44, tzinfo=datetime.timezone.utc), 2, 0.87, -73.985885, 40.761793, -73.975843, 40.757023, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'MPQGdIF8ARKV9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 22, 44, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 49, 3, tzinfo=datetime.timezone.utc), 2, 1.2, -74.013018, 40.716553, -74.007719, 40.732278, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'HyS/bMvMzkvp1g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), 1, 0.61, -73.97341, 40.756515, -73.973187, 40.750227, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'W7KRsYxweyqZgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 12, 18, 25, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 32, 55, tzinfo=datetime.timezone.utc), 1, 0.5, -73.951534, 40.777843, -73.954427, 40.783806, 'Cash', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '0QevaBarc5wlOA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 36, tzinfo=datetime.timezone.utc), 6, 0.94, -74.007068, 40.743742, -73.992493, 40.740282, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'UeE/fqdkiXVFgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 50, tzinfo=datetime.timezone.utc), 1, 1.04, -73.975525, 40.745365, -73.974537, 40.736523, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'R8VY4of+dmYtFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 50, tzinfo=datetime.timezone.utc), 2, 0.81, -73.97715, 40.755285, -73.973622, 40.76307, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'W9T6F9vN/zY0VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.34, -74.003745, 40.713382, -73.99773, 40.720818, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'tmnCtNAKnNv0Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 25, tzinfo=datetime.timezone.utc), 2, 1.0, -73.95037, 40.775717, -73.951358, 40.786112, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'J/qEnJwss49rQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 20, tzinfo=datetime.timezone.utc), 2, 1.09, -73.95944, 40.771198, -73.970123, 40.762475, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'cmBdzB6ZBcgtWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 46, tzinfo=datetime.timezone.utc), 5, 1.54, -73.976112, 40.78619, -73.959963, 40.79974, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jULP95JEVUs/ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 3, tzinfo=datetime.timezone.utc), 1, 0.96, -73.992653, 40.758485, -74.001385, 40.746383, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'VLKa+YsSLWjeVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 21, tzinfo=datetime.timezone.utc), 5, 0.95, -73.976183, 40.744968, -73.991538, 40.749957, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'vo04cC1iNykDCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 37, tzinfo=datetime.timezone.utc), 2, 0.98, -73.972213, 40.764633, -73.981683, 40.755245, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'rXc8ow3d9YsGBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 7, tzinfo=datetime.timezone.utc), 1, 0.08, -73.979265, 40.755417, -73.986443, 40.754777, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '1PF/7uxzrpQvug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 26, tzinfo=datetime.timezone.utc), 1, 0.71, -73.956567, 40.778268, -73.960352, 40.769653, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'YDtq2OFd2/muYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 42, tzinfo=datetime.timezone.utc), 1, 1.09, -73.977813, 40.783737, -73.982352, 40.771363, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'e5CV92pVebzM0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 26, tzinfo=datetime.timezone.utc), 1, 0.88, -73.978602, 40.750422, -73.97021, 40.757192, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'FCj3v3U3G4Y8PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.27, -73.973472, 40.751305, -73.962332, 40.768298, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'sOFoGJ1HqbC03g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 13, tzinfo=datetime.timezone.utc), 1, 0.65, -73.975995, 40.740188, -73.980737, 40.746165, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'pwYfiskUTzTnRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 6, tzinfo=datetime.timezone.utc), 2, 0.69, -73.985543, 40.744648, -73.99481, 40.745457, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '9MtxqMoh591vkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 18, tzinfo=datetime.timezone.utc), 2, 0.61, -73.954625, 40.778187, -73.95376, 40.784928, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'GyNNjjovFjDcdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 45, tzinfo=datetime.timezone.utc), 1, 1.05, -73.989202, 40.736523, -74.006602, 40.744573, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'EOJ0fAybXwvWJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 48, tzinfo=datetime.timezone.utc), 2, 1.17, -73.985385, 40.73567, -73.975, 40.750147, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'u/bRNnsuHRUEOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 31, tzinfo=datetime.timezone.utc), 2, 0.88, -73.958882, 40.775208, -73.95677, 40.779447, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '5imyEDrf4dRYiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 38, tzinfo=datetime.timezone.utc), 2, 1.38, -73.977935, 40.74879, -73.961575, 40.756738, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'TGaEMoiu2esVcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 34, tzinfo=datetime.timezone.utc), 1, 0.83, -73.993857, 40.741657, -74.007305, 40.7482, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Gj8+75Q+amNpXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 55, tzinfo=datetime.timezone.utc), 2, 1.02, -73.989603, 40.741857, -74.00417, 40.735558, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '41/bGiRJ7VS+oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 31, tzinfo=datetime.timezone.utc), 2, 1.01, -73.977083, 40.75052, -73.991428, 40.7503, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Ii4PHePmi4wHyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 54, tzinfo=datetime.timezone.utc), 1, 1.21, -73.970295, 40.767892, -73.981825, 40.755085, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'kMgQgAIb45xJ4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 6, tzinfo=datetime.timezone.utc), 1, 0.41, -73.973218, 40.760765, -73.9776, 40.75809, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'VNHppND/U6vGvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.61, -73.969498, 40.757702, -73.963823, 40.765373, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '50o+uHH9fzlJSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 23, tzinfo=datetime.timezone.utc), 3, 1.33, -73.987178, 40.770855, -73.981207, 40.78684, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', '88Mk9hzDLDIMiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 4, tzinfo=datetime.timezone.utc), 5, 1.09, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'CxT96jnVSAdh6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 25, tzinfo=datetime.timezone.utc), 2, 1.37, -73.976983, 40.76259, -73.985742, 40.74893, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'eLZplBWuZNAnFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 23, tzinfo=datetime.timezone.utc), 1, 1.31, -74.006163, 40.7345, -73.994425, 40.750782, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'aJxonJp0DhdLKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 22, tzinfo=datetime.timezone.utc), 5, 0.76, -73.957265, 40.77459, -73.946157, 40.773718, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'jPY2q59GnO8l+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 54, tzinfo=datetime.timezone.utc), 3, 1.02, -73.979333, 40.75654, -73.972047, 40.74644, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'nuU+d8nbZGz8DA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 6, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 36, tzinfo=datetime.timezone.utc), 1, 1.05, -73.990072, 40.756135, -73.97625, 40.756778, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'CBMrqmzaC4bKzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 54, tzinfo=datetime.timezone.utc), 1, 1.12, -73.955872, 40.781992, -73.9505, 40.771172, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'VqmcOXjBOrc20w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.82, -73.975663, 40.74953, -73.968202, 40.759765, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'nnNDBizsoAGAEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 17, tzinfo=datetime.timezone.utc), 5, 0.84, -73.98594, 40.761723, -73.973732, 40.755067, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'CCNbiMBE1fNv1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 5, tzinfo=datetime.timezone.utc), 5, 1.04, -73.982452, 40.767962, -73.981043, 40.781507, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'vkbeZYZaJqvuSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 16, tzinfo=datetime.timezone.utc), 1, 0.62, -73.964868, 40.759622, -73.971043, 40.764182, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'Wdlg2HODEWfe2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 44, tzinfo=datetime.timezone.utc), 1, 1.15, -73.955997, 40.767732, -73.967597, 40.756283, 'CASH', 5.3, 0.0, 0.0, 0.0, 5.3, '1705685161.48292', 'atAaaCldNlocgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 10, tzinfo=datetime.timezone.utc), 2, 0.95, -74.008793, 40.719118, -73.99879, 40.717167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'GzSyiDyATOBCfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 18, tzinfo=datetime.timezone.utc), 1, 1.17, -73.980043, 40.751722, -73.990927, 40.751167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '0VV9Kpk9a/+IZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 8, tzinfo=datetime.timezone.utc), 1, 1.09, -73.988903, 40.666095, -73.998003, 40.656955, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'k0xVUKx8b3G8Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 7, tzinfo=datetime.timezone.utc), 1, 0.88, -73.985415, 40.762048, -73.97052, 40.757293, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'RvTZf/6ttUfAYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 43, tzinfo=datetime.timezone.utc), 1, 1.3, -73.952448, 40.778783, -73.941568, 40.79038, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'eM6CQR47GW9rAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 35, tzinfo=datetime.timezone.utc), 1, 0.87, -73.991258, 40.719632, -74.005432, 40.724368, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'qUeDPgQ4A5jnJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 54, tzinfo=datetime.timezone.utc), 2, 0.98, -73.989803, 40.747512, -74.004517, 40.752185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'nU+Pu4udcC/6fQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 24, tzinfo=datetime.timezone.utc), 1, 0.93, -73.991165, 40.745357, -73.978088, 40.745608, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '8LERZLIHTzwzUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 46, tzinfo=datetime.timezone.utc), 3, 1.43, -74.007717, 40.711745, -74.001382, 40.730317, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'H9T1sEl/qzaNNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 3, tzinfo=datetime.timezone.utc), 2, 0.92, -73.999032, 40.744462, -74.008218, 40.747368, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'TAZDbKvuvARUsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 19, tzinfo=datetime.timezone.utc), 6, 0.95, -73.988583, 40.758855, -73.974185, 40.75573, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '5CK1mnk8wQjPCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 21, tzinfo=datetime.timezone.utc), 1, 1.15, -73.970498, 40.76776, -73.971052, 40.748808, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'A7yjxrY3qhVO6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 4, tzinfo=datetime.timezone.utc), 1, 0.97, -73.993223, 40.728042, -73.978662, 40.724557, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'BxUgHin3eQ+DzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 39, tzinfo=datetime.timezone.utc), 2, 1.19, 0.0, 0.0, 0.0, 0.0, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ya7/s9cCL9cCLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 8, tzinfo=datetime.timezone.utc), 2, 1.27, -73.976142, 40.746685, -73.98137, 40.760167, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'zT41/Uheb2Kxcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 20, tzinfo=datetime.timezone.utc), 1, 1.43, -73.972185, 40.756222, -73.985943, 40.74391, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '66POCcBMbX8Cwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 32, tzinfo=datetime.timezone.utc), 1, 1.33, -73.965287, 40.755008, -73.962892, 40.769695, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '4HPcdzy1jBu8Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 30, tzinfo=datetime.timezone.utc), 2, 1.13, -73.96096, 40.774872, -73.952828, 40.788207, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'e+BuNr2FCDqvVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 4, 26, tzinfo=datetime.timezone.utc), 5, 1.0, -73.985168, 40.731573, -73.999027, 40.731378, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'igMNqvUiK7giZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 53, tzinfo=datetime.timezone.utc), 1, 1.36, -74.014147, 40.7174, -74.008623, 40.734778, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'omJG3QfX4Ik2Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 57, tzinfo=datetime.timezone.utc), 1, 1.15, -73.992505, 40.743095, -73.977725, 40.747297, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'wNSx35Vl9F25nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 19, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989332, 40.747982, -73.985747, 40.735745, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'laCML1TJfhcmLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 38, tzinfo=datetime.timezone.utc), 5, 0.9, -73.974083, 40.762943, -73.982325, 40.762775, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'D6jH+Hmf2tKcnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 28, tzinfo=datetime.timezone.utc), 5, 1.02, -73.99227, 40.736872, -73.99009, 40.748378, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'WYjhdzYNP2Kr8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 48, tzinfo=datetime.timezone.utc), 2, 0.99, -73.997443, 40.714182, -74.011163, 40.713472, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ApTsmAk/qImIRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 8, tzinfo=datetime.timezone.utc), 5, 0.99, -73.998207, 40.716953, -74.01009, 40.721967, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'byntNJhe+3soKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 34, tzinfo=datetime.timezone.utc), 1, 1.03, -73.98094, 40.75949, -73.979783, 40.770943, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'WMqj9wtPZJRGSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 11, tzinfo=datetime.timezone.utc), 5, 1.25, -73.994925, 40.725603, -73.982283, 40.737597, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '3/qxsYq4feDVpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.25, -73.964052, 40.768012, -73.975763, 40.752465, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ApLACx2ukeAzTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 24, tzinfo=datetime.timezone.utc), 1, 0.69, -73.994527, 40.728345, -73.983012, 40.723345, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '+m/ALDOHS4BHvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 3, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 3, 57, tzinfo=datetime.timezone.utc), 2, 0.99, -74.00202, 40.750808, -73.990453, 40.758853, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'xNX34jnBZ1pmww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 47, tzinfo=datetime.timezone.utc), 1, 0.98, -73.988777, 40.722158, -74.00471, 40.728533, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '04dVOaoGZhvRHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 5, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 5, 9, tzinfo=datetime.timezone.utc), 1, 1.17, -73.963613, 40.768498, -73.952058, 40.777783, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'byaqrh0T+OxK9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 17, tzinfo=datetime.timezone.utc), 5, 0.82, -73.993533, 40.727443, -73.991135, 40.73749, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'Hq5ksJLsedFBHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 5, tzinfo=datetime.timezone.utc), 1, 1.06, -73.844373, 40.72131, -73.853372, 40.708938, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'eMLafqWGWw4TbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 43, tzinfo=datetime.timezone.utc), 1, 1.16, -73.939648, 40.706398, -73.924312, 40.70617, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ju0kC9Iuz7hRdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 24, tzinfo=datetime.timezone.utc), 1, 0.88, -73.982548, 40.762095, -73.990225, 40.751307, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'TZBVVSTidPzC6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 25, tzinfo=datetime.timezone.utc), 2, 0.92, -73.968743, 40.764307, -73.982362, 40.765963, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'HRtTyI+fFJVpzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 49, tzinfo=datetime.timezone.utc), 2, 1.15, -73.969258, 40.724902, -73.972053, 40.725745, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '8+ZFpuMSvoQGzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 48, tzinfo=datetime.timezone.utc), 5, 1.18, -73.982613, 40.772275, -73.995185, 40.762053, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ZftjyCj0wLcnKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 33, tzinfo=datetime.timezone.utc), 1, 1.25, -73.99755, 40.72469, -74.008552, 40.712452, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 't1R/iVkGVr64Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 2, tzinfo=datetime.timezone.utc), 5, 0.91, -73.984033, 40.762992, -73.992698, 40.768422, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'JFlF0EtVpJDJFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 10, tzinfo=datetime.timezone.utc), 5, 1.06, -73.993967, 40.751303, -73.984867, 40.764107, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'iExXPYtVtSNhHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 28, tzinfo=datetime.timezone.utc), 1, 1.43, -73.966758, 40.798315, -73.953288, 40.814382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'wMZt6ZU9Doh7Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 15, tzinfo=datetime.timezone.utc), 1, 0.87, -73.977268, 40.789598, -73.975753, 40.781542, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'x/5srMd7/BBCTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 33, tzinfo=datetime.timezone.utc), 1, 0.98, -73.972823, 40.76519, -73.982367, 40.773268, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'y2fIBUqLu3rUgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 4, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 5, 1, tzinfo=datetime.timezone.utc), 5, 0.98, -74.00471, 40.740603, -73.992428, 40.743513, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'kUXdg+Ex+acv1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 53, tzinfo=datetime.timezone.utc), 1, 0.64, -73.97924, 40.74606, -73.974143, 40.742763, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '4Dm+MAYAxDENBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 16, tzinfo=datetime.timezone.utc), 1, 0.73, -73.991062, 40.75073, -73.990568, 40.755717, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'VeqBu1l/FI3TOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.07, -73.983943, 40.76136, -73.992218, 40.747908, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'wjxXRViYyQ4mNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 52, tzinfo=datetime.timezone.utc), 1, 1.08, -73.987905, 40.740047, -73.978348, 40.751593, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ugXRVO0N92yBTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 3, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 3, 59, tzinfo=datetime.timezone.utc), 5, 1.03, -73.982268, 40.762957, -73.980457, 40.76592, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ef9kXnxch7KjJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 37, tzinfo=datetime.timezone.utc), 1, 0.61, -73.984625, 40.759123, -73.994878, 40.76367, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'PE4+FgXsAb1bkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 12, tzinfo=datetime.timezone.utc), 2, 1.4, -73.99864, 40.745163, -73.996913, 40.760248, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '2PExJRFt1aJ3hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 19, tzinfo=datetime.timezone.utc), 1, 1.35, -73.987547, 40.743682, -73.990505, 40.756168, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ma/sDr0FZq4ogA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 22, tzinfo=datetime.timezone.utc), 1, 1.39, -73.975318, 40.745573, -73.988032, 40.728048, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'UgN5ruosDatD9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 1, 13, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989157, 40.726705, -74.005705, 40.726425, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'eZ6IQ5plmt0cMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 52, tzinfo=datetime.timezone.utc), 1, 1.08, -73.982835, 40.756722, -73.992993, 40.747947, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'Pu4+U4ZYw3G74w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 37, tzinfo=datetime.timezone.utc), 1, 1.12, -73.999195, 40.744285, -73.982002, 40.739875, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'AyFcWqst3COHOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 56, tzinfo=datetime.timezone.utc), 1, 1.12, -73.979017, 40.713848, -73.984962, 40.724153, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'NzVkz30QCaiXzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 1, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 39, tzinfo=datetime.timezone.utc), 1, 1.24, -73.981505, 40.738093, -73.987442, 40.749302, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '8V4X2Wzo/mY92g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 41, tzinfo=datetime.timezone.utc), 3, 0.97, -73.984922, 40.747977, -73.982327, 40.756185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'LFSelnAzpN7Tqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 56, tzinfo=datetime.timezone.utc), 1, 0.88, -73.948185, 40.801653, -73.949117, 40.803008, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'uQLaMiq2mbYMsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 24, tzinfo=datetime.timezone.utc), 3, 1.13, -73.989223, 40.75617, -73.993493, 40.749385, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'A/p73fdWxTzPjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 6, tzinfo=datetime.timezone.utc), 1, 1.26, -73.958068, 40.774568, -73.974423, 40.778382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'uve1PXng3EoM3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 44, tzinfo=datetime.timezone.utc), 1, 1.02, -73.987923, 40.722458, -74.00328, 40.724045, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'PUx46+b4QY34Zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 34, tzinfo=datetime.timezone.utc), 1, 0.79, -73.986077, 40.730635, -73.99582, 40.72536, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'js+HPN9X1MT++w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 41, tzinfo=datetime.timezone.utc), 1, 0.98, -73.995905, 40.759055, -73.9911, 40.750332, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '5hEOlxJRFj8Hew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 52, tzinfo=datetime.timezone.utc), 5, 0.88, -73.985023, 40.740753, -73.971282, 40.747417, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'IA3I8WFxrizbOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 32, tzinfo=datetime.timezone.utc), 2, 1.19, -73.997697, 40.72584, -73.995082, 40.739613, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'swglPaGhKTwi6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 5, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 5, 55, tzinfo=datetime.timezone.utc), 1, 1.23, -73.995805, 40.72079, -74.009565, 40.709992, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'sj0Ms0PSr0aCDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 25, tzinfo=datetime.timezone.utc), 1, 1.27, -73.97143, 40.758718, -73.983418, 40.74385, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'frYz9sVBX9QycA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 20, tzinfo=datetime.timezone.utc), 5, 0.98, -73.985017, 40.758067, -73.97824, 40.754028, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '0ZoN5ewMlINoxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 32, tzinfo=datetime.timezone.utc), 5, 0.49, -73.98569, 40.76227, -73.97997, 40.761082, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'rPDiVreNtoZOMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 54, tzinfo=datetime.timezone.utc), 1, 0.99, -73.985137, 40.74763, -73.986223, 40.756943, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'zVFOBOZk/yejjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 48, tzinfo=datetime.timezone.utc), 1, 1.38, -73.977847, 40.783942, -73.96652, 40.80073, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '+vBMFvJIRY5+HA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 13, tzinfo=datetime.timezone.utc), 2, 0.93, -73.989385, 40.748915, -73.991157, 40.738467, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'RdLejCR2O1FyJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 2, tzinfo=datetime.timezone.utc), 1, 0.98, -73.975942, 40.763802, -73.98218, 40.77494, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'pGzpnz4UeqXjZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.44, -73.947002, 40.784127, -73.932498, 40.799825, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'JEMIDRuwt+9h8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 36, tzinfo=datetime.timezone.utc), 1, 0.91, -73.985898, 40.726877, -73.998637, 40.734053, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'v3qQ/FJIEEU1+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 3, tzinfo=datetime.timezone.utc), 1, 1.11, -74.007238, 40.727528, -73.995193, 40.718485, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'VQ7N9z1r7xznDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 4, tzinfo=datetime.timezone.utc), 5, 1.21, -74.08482, 40.694078, -74.073335, 40.701065, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'aY6HI7j8BPX0gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 3, tzinfo=datetime.timezone.utc), 5, 1.27, -73.948472, 40.782338, -73.960897, 40.76936, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '3Upi4F+sjnObcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 7, tzinfo=datetime.timezone.utc), 2, 1.18, -74.006615, 40.70679, -74.010153, 40.719182, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'TQ5OYEAHR+PWng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 58, tzinfo=datetime.timezone.utc), 1, 1.31, -73.973918, 40.783993, -73.956702, 40.781785, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'MgkZFc9OuaaWFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 9, tzinfo=datetime.timezone.utc), 1, 0.99, -73.980753, 40.750922, -73.991702, 40.744645, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'X1Pom1rxDhaUag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 5, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 5, 44, tzinfo=datetime.timezone.utc), 2, 1.12, -73.903522, 40.745368, -73.920365, 40.739502, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'Miobo2iBxfvZKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 24, tzinfo=datetime.timezone.utc), 2, 1.28, -73.94478, 40.716745, -73.953783, 40.730928, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '6VcaKIGXbnNuFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 3, tzinfo=datetime.timezone.utc), 2, 1.01, -73.967725, 40.755827, -73.962978, 40.763132, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '3v8EniAFLjkobA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 33, tzinfo=datetime.timezone.utc), 1, 1.09, -73.993658, 40.736297, -73.990997, 40.725057, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'sHw5oaOqg7+R1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 6, tzinfo=datetime.timezone.utc), 1, 0.97, -73.976418, 40.750912, -73.989968, 40.75318, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'ozJobXB8ULYJMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 11, tzinfo=datetime.timezone.utc), 1, 1.21, -73.962598, 40.76305, -73.973087, 40.748452, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'SuHpEZaFrDT0pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 30, tzinfo=datetime.timezone.utc), 5, 1.5, -74.005407, 40.717967, -73.996205, 40.738073, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'B1Bd8SKRpm7yDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 20, tzinfo=datetime.timezone.utc), 5, 0.9, -73.995073, 40.724822, -74.003957, 40.729653, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'STg76RJVAJMKCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 8, tzinfo=datetime.timezone.utc), 1, 1.1, -74.000072, 40.733028, -73.9866, 40.74219, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'UdAMylrVSxuN2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 40, tzinfo=datetime.timezone.utc), 1, 1.02, -74.000607, 40.727163, -73.989027, 40.725288, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '2evHC79hknmVVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 2, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 2, 19, tzinfo=datetime.timezone.utc), 1, 1.54, -74.005812, 40.726488, -73.992623, 40.743155, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'YAttWqbeoHiOVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 25, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989358, 40.726198, -73.990197, 40.714558, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'LM+Zo0gzvc5rOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 8, tzinfo=datetime.timezone.utc), 5, 1.31, -73.95653, 40.783455, -73.967298, 40.788185, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '0u1HN+rMo7vuKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.11, -73.976315, 40.747928, -73.984317, 40.737603, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'GkfWgSyhBxhtLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 2, tzinfo=datetime.timezone.utc), 1, 1.37, -74.004222, 40.74239, -74.005537, 40.726643, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 's57CLXBilrfNvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 5, tzinfo=datetime.timezone.utc), 1, 0.13, -73.95206, 40.781792, -73.938883, 40.799597, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'LPZ5WmjJfr77NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 4, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 4, 4, tzinfo=datetime.timezone.utc), 5, 1.23, -73.987007, 40.748387, -73.984877, 40.758018, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'z+jXgUCmnH7brA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 46, tzinfo=datetime.timezone.utc), 1, 1.14, -73.989797, 40.734398, -74.004898, 40.74328, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'qOcqNh4SPDv+ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 4, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 44, tzinfo=datetime.timezone.utc), 1, 1.37, -73.991658, 40.723938, -73.997083, 40.737227, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '8ucWrHnidg/Z9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.31, -73.937645, 40.804187, -73.950555, 40.789612, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'xkhGRumfqWnsAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 21, tzinfo=datetime.timezone.utc), 1, 0.67, -73.992027, 40.73874, -73.98273, 40.739138, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'bUkdk1L23XWQVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 20, tzinfo=datetime.timezone.utc), 5, 1.08, -73.977077, 40.742963, -73.980617, 40.730492, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'Y7Swhs9jwiX2cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 47, tzinfo=datetime.timezone.utc), 5, 0.98, -74.000145, 40.742985, -73.991582, 40.755038, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '6MLPIJNQuK6Tfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 27, tzinfo=datetime.timezone.utc), 1, 1.12, -73.989993, 40.72949, -73.984357, 40.742627, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'UjFWvHwpcnb+hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 17, tzinfo=datetime.timezone.utc), 1, 1.27, -73.98204, 40.752067, -73.995618, 40.740737, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'pq/weQhvAA32gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 33, tzinfo=datetime.timezone.utc), 5, 1.33, -73.978893, 40.777202, -73.99112, 40.76041, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '4xRzOLDietxaXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 4, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 4, 56, tzinfo=datetime.timezone.utc), 2, 1.02, -73.985375, 40.745668, -73.991182, 40.751542, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '0iaFwZ+NM5au/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.77, -73.984628, 40.760127, -73.977882, 40.75348, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '05HFscMHHPVF8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 8, tzinfo=datetime.timezone.utc), 1, 1.16, -73.971125, 40.758477, -73.963278, 40.768247, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'F3EKmlLRvzt8+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 55, tzinfo=datetime.timezone.utc), 2, 0.88, -73.993705, 40.721997, -73.98676, 40.732937, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'eLQyUf7M/FYB+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 42, tzinfo=datetime.timezone.utc), 2, 1.1, -73.989643, 40.73839, -74.005367, 40.73991, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'rBC4MX/Kyo7tAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 26, tzinfo=datetime.timezone.utc), 2, 1.15, -73.990537, 40.751015, -73.988878, 40.738883, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'rFLgCAIBgsudOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 19, tzinfo=datetime.timezone.utc), 5, 1.02, -73.985968, 40.74719, -73.988958, 40.75447, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'uvSxNjlJsdVS3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.07, -73.951983, 40.766283, -73.96482, 40.759847, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'oQbAFMKWTgzasw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 47, tzinfo=datetime.timezone.utc), 5, 0.91, -73.988588, 40.736742, -73.9781, 40.730963, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'xsxBHX5u+//sAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 48, tzinfo=datetime.timezone.utc), 2, 0.79, -73.997135, 40.742287, -73.988508, 40.748172, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'Cz8w2IAhrY8igQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 22, tzinfo=datetime.timezone.utc), 1, 1.01, -73.952938, 40.778325, -73.959633, 40.765968, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'x5ptHR6r9ChNUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 58, tzinfo=datetime.timezone.utc), 1, 1.47, -73.975088, 40.750142, -73.979332, 40.736382, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'WeM9X7cc0wR/dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 57, tzinfo=datetime.timezone.utc), 1, 1.0, -73.980473, 40.77483, -73.975928, 40.786205, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '3QyAulH8gIoO2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 51, tzinfo=datetime.timezone.utc), 1, 1.01, -73.99874, 40.734602, -73.988282, 40.737543, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'PpL1O4Fmh6+LHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 49, tzinfo=datetime.timezone.utc), 1, 1.01, -73.978627, 40.764843, -73.96722, 40.757637, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'WbzEwgT7tZwbBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 2, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 2, 23, tzinfo=datetime.timezone.utc), 2, 1.25, -74.000692, 40.727283, -73.983623, 40.729767, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '78QqUD8vMyWymQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 41, tzinfo=datetime.timezone.utc), 5, 0.98, -73.983427, 40.755957, -73.97022, 40.757415, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '6dyymS1DIFzl9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 33, tzinfo=datetime.timezone.utc), 5, 1.23, -73.990032, 40.756487, -74.00277, 40.747025, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'yFq4hKMWbgCARQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.1, -73.986907, 40.751688, -73.973805, 40.743603, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '7hGWFd8ko1pQ8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 37, tzinfo=datetime.timezone.utc), 1, 1.21, -73.990838, 40.750342, -73.97843, 40.755177, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'V8XQOX/7Vw9NIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 45, tzinfo=datetime.timezone.utc), 2, 1.0, -74.009203, 40.738612, -73.995073, 40.74307, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'VQdVH4gK6mg5+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 52, tzinfo=datetime.timezone.utc), 2, 0.98, -73.979202, 40.785135, -73.989025, 40.774257, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'QHOvccAGJf5lNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 17, tzinfo=datetime.timezone.utc), 5, 1.1, -73.96475, 40.755747, -73.978432, 40.75704, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'IwzGA5B0TvzG6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 24, tzinfo=datetime.timezone.utc), 1, 1.02, -73.988887, 40.73406, -73.985537, 40.741548, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'K9bsst67Rb19jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 44, tzinfo=datetime.timezone.utc), 1, 1.09, -73.976967, 40.749645, -73.98073, 40.74139, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'FeR6gaNAC/KkOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 56, tzinfo=datetime.timezone.utc), 3, 0.99, -73.99031, 40.761745, -73.985652, 40.752475, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', '5/vECVK7UU2IsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 38, tzinfo=datetime.timezone.utc), 1, 0.71, -74.007072, 40.747873, -74.003863, 40.742918, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'iiZP0gXafKyIaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 34, tzinfo=datetime.timezone.utc), 1, 1.0, -73.987242, 40.761077, -73.987242, 40.761077, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'sBXQkITHcx1jxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 42, tzinfo=datetime.timezone.utc), 1, 1.44, -73.966805, 40.769977, -73.953233, 40.786493, 'CASH', 5.3, 0.5, 0.0, 0.0, 5.8, '1705685161.48292', 'VxK35q2x4WkMbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.26, -73.976692, 40.750223, -73.96268, 40.758003, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'sWGfa5BrFKVb5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 31, tzinfo=datetime.timezone.utc), 1, 0.64, -73.978312, 40.754955, -73.978312, 40.754955, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'YEVokgGf4XUWlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.08, -73.978335, 40.75391, -73.990765, 40.750812, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'JH5t0JQHwKArzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 19, tzinfo=datetime.timezone.utc), 1, 0.77, -73.982222, 40.771353, -73.98388, 40.761388, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Dn5tCFtoyabmSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.84, -73.969127, 40.749202, -73.970138, 40.758882, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '6665BNK3Idf21A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 12, tzinfo=datetime.timezone.utc), 1, 0.84, -73.94647, 40.7726, -73.955333, 40.779408, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'xrOPLs31+F5itA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 58, tzinfo=datetime.timezone.utc), 1, 1.12, -73.974112, 40.762978, -73.98427, 40.748458, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'cLWZGOyAu6m6Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 35, tzinfo=datetime.timezone.utc), 5, 0.35, -73.979965, 40.762825, -73.982378, 40.765087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'fw14qYGV5cN0Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 9, tzinfo=datetime.timezone.utc), 3, 0.74, -73.972398, 40.737565, -73.974382, 40.734692, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '4B8Q9J19a6uxbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 24, tzinfo=datetime.timezone.utc), 1, 0.75, -73.964767, 40.804167, -73.961737, 40.812885, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'rwxn3X/OC9xMxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 28, tzinfo=datetime.timezone.utc), 5, 1.29, -73.986675, 40.766727, -73.97916, 40.781863, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'uvZe/ckS2qJ98g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.95, -73.975943, 40.753665, -73.986873, 40.745303, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '5qWK2uRl/i4JaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 19, tzinfo=datetime.timezone.utc), 1, 1.26, -73.993638, 40.741768, -73.987953, 40.755153, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'jTrSGR6F7MW6xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 9, tzinfo=datetime.timezone.utc), 1, 0.81, -73.961667, 40.795948, -73.972498, 40.793952, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'PAXbMweU1+xX7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 31, tzinfo=datetime.timezone.utc), 1, 0.85, -73.988293, 40.748957, -73.97788, 40.752095, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'CQv1qRm8d7SWJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 10, tzinfo=datetime.timezone.utc), 1, 0.72, -73.984732, 40.753603, -73.981203, 40.750553, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'tcb6LfnrkimGZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 40, tzinfo=datetime.timezone.utc), 1, 1.01, -73.976633, 40.788148, -73.96944, 40.800362, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'yDXOl41GLnrMIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.24, -73.975262, 40.760923, -73.962267, 40.772213, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'sytac8JMSea0eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 40, tzinfo=datetime.timezone.utc), 1, 0.94, -73.967963, 40.768412, -73.956942, 40.772965, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'mtjS38CX4rf2LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.02, -73.958385, 40.778673, -73.960017, 40.767722, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'cs+2PPPWQtb4rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 32, tzinfo=datetime.timezone.utc), 4, 0.83, -73.987515, 40.75302, -73.9921, 40.744802, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'WouKYbMJFQX3ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 46, tzinfo=datetime.timezone.utc), 1, 0.91, -73.978463, 40.757095, -73.981457, 40.746948, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '2P7fOinsS3ZgFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 28, tzinfo=datetime.timezone.utc), 1, 1.35, -73.9688, 40.759825, -73.957287, 40.775965, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'znWCRb4SvsLAuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 19, tzinfo=datetime.timezone.utc), 4, 0.82, -73.977808, 40.758533, -73.96878, 40.759902, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'EujQmtnFtAi9aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 51, tzinfo=datetime.timezone.utc), 1, 0.74, -73.990818, 40.75797, -73.991788, 40.749772, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'VsYvsxwELvSzUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 31, tzinfo=datetime.timezone.utc), 2, 1.32, -73.971722, 40.782108, -73.969557, 40.793765, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '9bQxSdQfKm0wyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 55, tzinfo=datetime.timezone.utc), 1, 0.37, -73.969055, 40.754403, -73.970602, 40.75594, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'VHxj0a1SsYffzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 47, tzinfo=datetime.timezone.utc), 5, 1.12, -73.981432, 40.758628, -73.988137, 40.764143, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'oQSPUIAewsiKMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 23, tzinfo=datetime.timezone.utc), 1, 0.89, -73.947385, 40.779392, -73.95238, 40.768743, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'EJy6l+I79iRHNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 4, tzinfo=datetime.timezone.utc), 6, 0.75, -73.975653, 40.78901, -73.966942, 40.789025, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'EMrpR+3aWlhogw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 32, tzinfo=datetime.timezone.utc), 5, 0.9, -73.994157, 40.746018, -73.979485, 40.739722, 'Credit', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '/jNR1N/qc/I3aA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 47, tzinfo=datetime.timezone.utc), 1, 0.99, -73.992923, 40.693508, -73.996338, 40.681005, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'fkFpdpThw2jA6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 5, tzinfo=datetime.timezone.utc), 1, 0.15, -73.989048, 40.755598, -73.98992, 40.757288, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'V/tR7DvqgHFU0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 31, tzinfo=datetime.timezone.utc), 3, 0.86, -73.988728, 40.722078, -73.990977, 40.730087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '/RuQBB8hYkHR2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 10, tzinfo=datetime.timezone.utc), 5, 0.87, -73.985603, 40.778447, -73.980353, 40.770222, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '89RrGGvtp+4n0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 59, tzinfo=datetime.timezone.utc), 1, 1.04, -73.969695, 40.762515, -73.979453, 40.753457, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'rp+21LOzjEEnGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 45, tzinfo=datetime.timezone.utc), 2, 0.81, -73.991895, 40.764535, -74.000713, 40.761968, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Fe7LdXnOF23swQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 4, tzinfo=datetime.timezone.utc), 1, 1.23, -73.98555, 40.744102, -73.974553, 40.759138, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'kOpmzdRnZYKsMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 1, tzinfo=datetime.timezone.utc), 2, 1.22, -73.991818, 40.749392, -73.9829, 40.757108, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Eqx5pbnC0ltbgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 54, tzinfo=datetime.timezone.utc), 5, 0.77, -73.958605, 40.772913, -73.967347, 40.767858, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'heEZLoz1hnRw4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 56, tzinfo=datetime.timezone.utc), 1, 1.08, -73.975785, 40.788993, -73.967465, 40.802973, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'zbdsnYtDeC54yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 28, tzinfo=datetime.timezone.utc), 2, 0.87, -74.005905, 40.740117, -73.994697, 40.74291, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'J83gBKJdFAnYgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 29, tzinfo=datetime.timezone.utc), 6, 0.71, -73.981867, 40.783573, -73.98155, 40.775068, 'Credit', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'ln2y58hRrUav+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 43, tzinfo=datetime.timezone.utc), 1, 0.75, -73.967905, 40.762557, -73.962262, 40.756422, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'KO2IU5DCfR/+UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 15, tzinfo=datetime.timezone.utc), 1, 0.95, -73.965965, 40.762118, -73.95479, 40.767297, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '021UmjMF5EKmhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 33, tzinfo=datetime.timezone.utc), 1, 1.24, -73.976283, 40.744263, -73.98764, 40.728742, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '0NyHrTnrWabVDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 44, tzinfo=datetime.timezone.utc), 1, 1.07, -74.000312, 40.747723, -74.008898, 40.735405, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'k+MSazxjgnt0oQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 6, tzinfo=datetime.timezone.utc), 1, 0.6, -73.969035, 40.769738, -73.962798, 40.766602, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'r6ExfQ9KxGwnpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 39, tzinfo=datetime.timezone.utc), 1, 0.88, -73.985768, 40.74008, -73.975722, 40.733318, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'atO4H8rHzKLEFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 52, tzinfo=datetime.timezone.utc), 1, 1.15, -73.963845, 40.771317, -73.973353, 40.75692, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'dTRPVii8WRk5fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 15, tzinfo=datetime.timezone.utc), 1, 1.13, -73.988577, 40.769238, -73.972588, 40.766738, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'w78klXWf4O3Tdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 5, tzinfo=datetime.timezone.utc), 2, 0.93, -73.945097, 40.77512, -73.958807, 40.77811, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'OBBXGM9oY8XnNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 53, tzinfo=datetime.timezone.utc), 5, 1.15, -73.982273, 40.774517, -73.991413, 40.759957, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'PNrPagMj8JujUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 23, tzinfo=datetime.timezone.utc), 1, 0.8, -73.987517, 40.72882, -73.97606, 40.72783, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'vwZSr04N6qaLZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 7, tzinfo=datetime.timezone.utc), 1, 0.67, -73.978592, 40.744927, -73.988408, 40.750117, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'cJGofs+tMgHzyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.09, -73.962488, 40.772822, -73.95252, 40.786263, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'IGx/VsbfZURg8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 31, tzinfo=datetime.timezone.utc), 2, 1.03, -73.973055, 40.791747, -73.964708, 40.80641, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'e9Vd3cXva/xOVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.44, -73.968968, 40.760528, -73.962297, 40.77604, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'zN8SRXU9Tb/3Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 34, tzinfo=datetime.timezone.utc), 2, 0.7, -73.984407, 40.764732, -73.979983, 40.772943, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'zgr7zf6Csag3+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 34, tzinfo=datetime.timezone.utc), 5, 1.24, -73.954772, 40.789233, -73.962987, 40.774087, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'yzmrMtpeSi1wbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 41, tzinfo=datetime.timezone.utc), 5, 1.22, -73.97929, 40.743967, -73.98666, 40.730012, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'eCJmffYxMaSeIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 57, tzinfo=datetime.timezone.utc), 1, 1.01, -73.990527, 40.75595, -73.981568, 40.767998, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'u/LQmU8Vomjw5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 41, tzinfo=datetime.timezone.utc), 1, 1.07, -73.968383, 40.754948, -73.983348, 40.756988, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '9fTLrCGhNtTa1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 13, tzinfo=datetime.timezone.utc), 1, 1.21, -73.988517, 40.75691, -73.98227, 40.77131, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'QvjrOm8y1SCxcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 27, tzinfo=datetime.timezone.utc), 5, 1.32, -73.963023, 40.76632, -73.951075, 40.782742, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'jA+An5RVaF/i6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 42, tzinfo=datetime.timezone.utc), 1, 1.03, -73.967752, 40.76307, -73.98258, 40.76307, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Ld/7ydFO6Wz4vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 24, tzinfo=datetime.timezone.utc), 4, 0.86, -73.956558, 40.771355, -73.960645, 40.761545, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'gfuPUzJdE69MtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 49, tzinfo=datetime.timezone.utc), 1, 0.94, -73.972257, 40.75931, -73.976182, 40.749943, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'ToUQP4tYdynL+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 16, tzinfo=datetime.timezone.utc), 5, 1.36, -73.965218, 40.759553, -73.977587, 40.742535, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Tpg7OHmnQEDt0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.15, -73.997888, 40.724042, -74.009498, 40.710477, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'lXjnvLI38LJ7pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 55, tzinfo=datetime.timezone.utc), 4, 0.95, -73.978507, 40.755277, -73.967503, 40.761248, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'UlQLeeU0TYd/RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 36, tzinfo=datetime.timezone.utc), 1, 1.09, -73.982012, 40.757135, -73.969548, 40.763293, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'SHADwaZGj4jkZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 44, tzinfo=datetime.timezone.utc), 5, 1.12, -73.988448, 40.737543, -73.977562, 40.75133, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'vVZiZ6XrXPzf9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 59, tzinfo=datetime.timezone.utc), 1, 1.07, -74.005777, 40.74546, -73.993265, 40.75212, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Ctez83PTlY6OLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 30, tzinfo=datetime.timezone.utc), 1, 1.18, -73.960245, 40.779348, -73.97367, 40.788733, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'T2pc+2554/fhUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 55, tzinfo=datetime.timezone.utc), 1, 0.77, -73.957527, 40.76579, -73.961217, 40.766712, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '9cwEN58hQhkdaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 52, tzinfo=datetime.timezone.utc), 5, 1.13, -73.975817, 40.756292, -73.965905, 40.760323, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'dgqc5RNnMe6nyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 52, tzinfo=datetime.timezone.utc), 1, 0.81, -73.969755, 40.762988, -73.977647, 40.753497, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'xfqyTZeB4wH4Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 14, tzinfo=datetime.timezone.utc), 1, 0.8, -73.999832, 40.717982, -74.008397, 40.721375, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'BuKG+0BL+/U1mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 3, tzinfo=datetime.timezone.utc), 1, 1.37, -73.980955, 40.766902, -73.964362, 40.773108, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'TFeyBDYDJZiKtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 19, tzinfo=datetime.timezone.utc), 1, 0.93, -74.005652, 40.745627, -73.990385, 40.739655, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Vik6yVNaJduu1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), 1, 0.79, -73.980612, 40.748218, -73.987685, 40.738383, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '67W+WPv4gnNTug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 41, tzinfo=datetime.timezone.utc), 1, 0.88, -73.954582, 40.789095, -73.952523, 40.77993, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', '00LENQ0M6PdN6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.24, -74.000948, 40.746988, -73.99838, 40.733113, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'WHwepcSkoOQTtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 26, tzinfo=datetime.timezone.utc), 1, 0.85, -73.994955, 40.739998, -73.987192, 40.750783, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'Ag8airXiijCwQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 58, tzinfo=datetime.timezone.utc), 2, 0.99, -73.982202, 40.763407, -73.991352, 40.750473, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'LHeY65ymB1yOiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.15, -74.000042, 40.758608, -73.986052, 40.762037, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'PpKOEpfeqbgdnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 31, tzinfo=datetime.timezone.utc), 2, 0.96, -73.987977, 40.76987, -73.977317, 40.774483, 'CASH', 5.3, 1.0, 0.0, 0.0, 6.3, '1705685161.48292', 'WiTHiqNmL6cafg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 21, tzinfo=datetime.timezone.utc), 1, 1.64, -73.962672, 40.767087, -73.95273, 40.786672, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '2QEQbk+QHEpI5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 31, tzinfo=datetime.timezone.utc), 5, 0.97, -73.96181, 40.76421, -73.971518, 40.753755, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'cEqnoWttNuLT9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 15, tzinfo=datetime.timezone.utc), 5, 1.72, -73.984127, 40.754402, -73.974378, 40.743223, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'eypwMXMR+hoQ0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 35, tzinfo=datetime.timezone.utc), 1, 2.26, -73.950855, 40.772513, -73.971452, 40.753618, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'KPl8j38PbQlhZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 5, tzinfo=datetime.timezone.utc), 1, 1.96, -74.016415, 40.709867, -74.003307, 40.73144, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'rZEa6+Zelqpc5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 0, tzinfo=datetime.timezone.utc), 1, 1.97, -73.958163, 40.77468, -73.982065, 40.771455, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '3uQGCla8MEF3Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 11, tzinfo=datetime.timezone.utc), 5, 1.96, -73.978138, 40.770645, -73.979077, 40.753313, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Kj7GjmWIrxj24w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 48, tzinfo=datetime.timezone.utc), 2, 1.4, -73.949567, 40.784927, -73.968315, 40.787378, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '43bQRcFxfaDzgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 21, tzinfo=datetime.timezone.utc), 5, 0.96, -73.986147, 40.761825, -73.987838, 40.756713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'CJNe0o1k5EMmQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 24, tzinfo=datetime.timezone.utc), 3, 1.96, -73.947407, 40.78378, -73.96158, 40.760375, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'BTTVBXEnUJsbUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 29, tzinfo=datetime.timezone.utc), 2, 2.11, -74.004792, 40.707203, -73.986678, 40.704423, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'OQsvzgVGGFMABQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 1.44, -73.993948, 40.749732, -73.99021, 40.761888, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'gNv3Q+h9tIegDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 7, 6, tzinfo=datetime.timezone.utc), 1, 2.33, -73.967878, 40.768602, -73.990263, 40.744048, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jE3aTs87N7s/ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.93, -74.00379, 40.713795, -73.989932, 40.690377, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'lSuNn+w/IgWFxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 22, 1, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.9, -73.984857, 40.72321, -73.996013, 40.74268, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '3sbe3YA1OrWU1Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 51, tzinfo=datetime.timezone.utc), 1, 1.34, -73.981187, 40.75018, -73.989058, 40.73488, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Lsnl+9rYaSLwhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 20, tzinfo=datetime.timezone.utc), 1, 0.79, -74.002725, 40.76061, -73.990502, 40.756167, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ESaEVoKQ5GtbSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 40, tzinfo=datetime.timezone.utc), 1, 2.02, -73.975643, 40.749208, -73.954717, 40.76553, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'WW4R7WWllScoYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 19, tzinfo=datetime.timezone.utc), 2, 1.82, -73.991725, 40.74902, -73.991748, 40.729888, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jF75lfQcj13qzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 45, tzinfo=datetime.timezone.utc), 1, 1.7, -73.979945, 40.745653, -73.99335, 40.73097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '+/gO5BTA+GSp/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 37, tzinfo=datetime.timezone.utc), 1, 2.37, -73.924905, 40.644832, -73.996258, 40.743348, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'EvIoL/Hvcd1v+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 12, tzinfo=datetime.timezone.utc), 1, 0.95, -73.991548, 40.759433, -73.977507, 40.752543, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Vas9kfr7fHsThw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 56, tzinfo=datetime.timezone.utc), 1, 1.92, -73.980305, 40.764977, -73.954098, 40.767087, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '91CDuceIQWLHlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 3, tzinfo=datetime.timezone.utc), 1, 1.67, -73.983732, 40.721635, -74.002535, 40.73364, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'PtugjaJNPe2bXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 51, tzinfo=datetime.timezone.utc), 2, 1.35, -73.985702, 40.757412, -73.974697, 40.763782, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'reBmpYpPd4hT+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 45, tzinfo=datetime.timezone.utc), 1, 1.7, -73.95794, 40.778747, -73.97784, 40.773812, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'P0IGZ6xWxhMnnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 49, tzinfo=datetime.timezone.utc), 1, 1.32, -73.994772, 40.75013, -73.981742, 40.763168, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'O+Kz1Di8IjnuVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 56, tzinfo=datetime.timezone.utc), 1, 1.95, -73.966262, 40.75865, -73.974915, 40.741733, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'YxSsfvL19qRWhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 32, tzinfo=datetime.timezone.utc), 2, 1.65, -73.99023, 40.761405, -73.970478, 40.762038, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'IW3EZsdHgweurQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 18, tzinfo=datetime.timezone.utc), 5, 1.07, -73.974858, 40.74212, -73.982602, 40.751622, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '6mvQrjl1TVI4AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 58, tzinfo=datetime.timezone.utc), 1, 1.48, -73.988133, 40.75056, -73.981443, 40.763188, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Zxmz2OaNxmxrPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 1, tzinfo=datetime.timezone.utc), 4, 1.42, -73.977895, 40.736768, -73.981878, 40.724572, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'CqjFrqnADv6l5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 43, tzinfo=datetime.timezone.utc), 1, 1.86, -73.973458, 40.760498, -73.987915, 40.745098, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'S6tXL8fM80NHww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 21, tzinfo=datetime.timezone.utc), 1, 1.9, -73.969775, 40.799558, -73.953157, 40.78363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'zodrkoO/Io+kmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 8, tzinfo=datetime.timezone.utc), 1, 1.24, -73.990977, 40.75021, -73.994302, 40.736245, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'mo0T8PIxbJr6kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 57, tzinfo=datetime.timezone.utc), 3, 1.79, -73.98563, 40.763122, -73.980208, 40.785547, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'PfR26zCEl+D94Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 15, tzinfo=datetime.timezone.utc), 1, 1.6, -73.976397, 40.78057, -73.954705, 40.774062, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'fF3bUQ686iB9AA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 54, tzinfo=datetime.timezone.utc), 1, 1.58, -73.96132, 40.768638, -73.948437, 40.78074, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'u4/7OYLYbpJCiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 50, tzinfo=datetime.timezone.utc), 1, 1.63, -73.999432, 40.71863, -74.000153, 40.73701, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'oaHE6Gdv4QiUxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 22, tzinfo=datetime.timezone.utc), 1, 1.72, -73.981135, 40.774275, -73.965277, 40.758288, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '1yDDkSiNga1ecQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 30, tzinfo=datetime.timezone.utc), 1, 2.24, -73.975128, 40.757783, -73.953032, 40.780595, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'lPPNVgg6aEP5RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 28, tzinfo=datetime.timezone.utc), 1, 2.0, -73.95425, 40.773097, -73.976717, 40.759573, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'U3qQ8atVIrBuYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 18, tzinfo=datetime.timezone.utc), 1, 1.18, -73.979228, 40.76338, -73.991547, 40.750018, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'RNI6/XFAupoxtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 51, tzinfo=datetime.timezone.utc), 1, 1.26, -73.985092, 40.769432, -73.974787, 40.757837, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'AT718HOd+axJyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 9, tzinfo=datetime.timezone.utc), 1, 2.01, -73.97169, 40.757313, -73.956282, 40.782303, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '6pnLsoOJHM+g2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.24, -73.953218, 40.782983, -73.960715, 40.768458, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'EV61IcfQXgW2XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 58, tzinfo=datetime.timezone.utc), 2, 0.98, -73.951567, 40.769398, -73.958865, 40.778355, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'wKQcsffUDqZz4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 5, tzinfo=datetime.timezone.utc), 2, 1.56, -73.999687, 40.733367, -73.984213, 40.750003, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'wlSWf1CUUY7v2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 12, tzinfo=datetime.timezone.utc), 6, 1.67, -73.98737, 40.76602, -74.002073, 40.745308, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'vmC10rDwcErUvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 22, tzinfo=datetime.timezone.utc), 1, 1.48, -73.975052, 40.777493, -73.96061, 40.774022, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'f0xCSX5mcMKcwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 6, tzinfo=datetime.timezone.utc), 1, 1.56, -73.974263, 40.763077, -73.985627, 40.744313, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'XJ/58f7Vf6pN9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 38, tzinfo=datetime.timezone.utc), 1, 1.31, -73.97664, 40.765078, -73.960683, 40.771475, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '4dTZtFpF1Z4JOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 57, tzinfo=datetime.timezone.utc), 2, 1.99, -74.003838, 40.748197, -74.007575, 40.726023, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'sSVeO0WP4hATOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 47, tzinfo=datetime.timezone.utc), 3, 0.87, -74.000448, 40.76177, -73.987135, 40.757702, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'y6qz2MueIoo2pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 32, tzinfo=datetime.timezone.utc), 5, 1.9, -73.946268, 40.772853, -73.968977, 40.761395, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'cHlC/aRK8Plsew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 39, tzinfo=datetime.timezone.utc), 2, 0.93, -73.970392, 40.779657, -73.963278, 40.771365, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '2mWcaFG+03MZYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 59, tzinfo=datetime.timezone.utc), 1, 1.49, -73.992697, 40.743007, -74.007738, 40.751752, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ZHWV0/IYcTwsSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.55, -73.954523, 40.773907, -73.953915, 40.77366, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'tIx5nTCEmCekKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 14, tzinfo=datetime.timezone.utc), 1, 1.49, -73.982017, 40.757923, -73.98008, 40.74551, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'FXphDkQ+bT0n5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 30, tzinfo=datetime.timezone.utc), 1, 1.53, -73.96382, 40.757923, -73.979027, 40.752912, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'U1daYXyBdzNeWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.88, -73.976143, 40.788928, -73.984867, 40.765025, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'u1go/B4yAYChHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 55, tzinfo=datetime.timezone.utc), 1, 1.78, -74.00229, 40.724627, -73.989553, 40.743877, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'fXRHrBJSN3n31A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 8, tzinfo=datetime.timezone.utc), 1, 1.27, -73.971965, 40.757325, -73.985732, 40.746972, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 't4grKIJNYmZfnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 45, tzinfo=datetime.timezone.utc), 1, 1.19, -73.970503, 40.759662, -73.95566, 40.764077, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'I6VDp2FwCVNfIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 29, tzinfo=datetime.timezone.utc), 2, 0.77, -73.955992, 40.753085, -73.981313, 40.754517, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'hTz2dFoTojeVoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 7, tzinfo=datetime.timezone.utc), 1, 1.9, -73.954123, 40.774507, -73.972067, 40.755205, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'F5H/NadAapEFnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 56, tzinfo=datetime.timezone.utc), 1, 2.06, -74.01511, 40.704338, -74.01208, 40.720563, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Y6bqgUYzFBqMAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 30, tzinfo=datetime.timezone.utc), 1, 2.06, -73.992347, 40.744203, -74.005763, 40.720028, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'vDrrWqEINR0PqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 25, tzinfo=datetime.timezone.utc), 2, 2.08, -73.968563, 40.75502, -73.989687, 40.734478, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'K/UgB5Dff5LaOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 14, tzinfo=datetime.timezone.utc), 1, 1.48, -73.991548, 40.738187, -74.000652, 40.724697, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'aRNVzOudd4I+3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 48, tzinfo=datetime.timezone.utc), 4, 1.37, -73.981087, 40.758545, -73.977452, 40.747175, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'QVjIUcVzGXLNJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 1, tzinfo=datetime.timezone.utc), 1, 1.23, -74.002285, 40.724437, -73.986982, 40.731008, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '+6sBGeCJfuv7Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 4, tzinfo=datetime.timezone.utc), 3, 2.23, -73.952672, 40.789092, -73.947953, 40.813772, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '+VzenzVEIV+aSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 23, tzinfo=datetime.timezone.utc), 1, 0.98, -73.978248, 40.756393, -73.993547, 40.758603, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '8JXiIlOSOjPodg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 37, tzinfo=datetime.timezone.utc), 2, 1.28, -74.000055, 40.73474, -73.99223, 40.749302, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jJw6eJaiKNUqPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 19, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 26, 1, tzinfo=datetime.timezone.utc), 1, 1.8, -73.988338, 40.758936, -73.965019, 40.763268, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jpcXSGbNsAkygw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 46, tzinfo=datetime.timezone.utc), 1, 1.93, -73.978537, 40.737033, -73.970687, 40.757818, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'HuHqWmi5QlH51w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 17, tzinfo=datetime.timezone.utc), 1, 1.41, -73.937957, 40.796852, -73.958587, 40.800188, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'LktAwYviONyrWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 51, tzinfo=datetime.timezone.utc), 1, 2.14, -73.977675, 40.77735, -73.980575, 40.753607, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'VMDcKWuEjxyt4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 41, tzinfo=datetime.timezone.utc), 1, 1.81, -73.982452, 40.761805, -73.977302, 40.784403, 'Credit', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'qnX5A1ehNuXszA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 22, tzinfo=datetime.timezone.utc), 1, 0.83, -73.969777, 40.757405, -73.979982, 40.760115, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'aB7Zq2ubob09pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 0, tzinfo=datetime.timezone.utc), 1, 1.74, -73.991797, 40.749933, -74.006522, 40.728733, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'O+pgxc5JcsAerQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 18, tzinfo=datetime.timezone.utc), 1, 1.85, -73.953312, 40.782182, -73.97189, 40.762292, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '/UDDyLa5KEJbHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 38, tzinfo=datetime.timezone.utc), 2, 1.84, -73.98349, 40.768087, -73.9706, 40.788432, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'NVJkknQR0Rfong', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 27, tzinfo=datetime.timezone.utc), 2, 1.06, -73.977733, 40.755143, -73.990993, 40.751015, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'zpoAYEe3uzQ3pQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 39, tzinfo=datetime.timezone.utc), 5, 1.99, -73.948677, 40.782373, -73.966858, 40.757328, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'AprX7jelO1vcbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.74, -73.98801, 40.779527, -73.966648, 40.788942, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jxc7KIClaz5dGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 3, tzinfo=datetime.timezone.utc), 1, 0.12, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '2PiMZk55JJuOdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 23, tzinfo=datetime.timezone.utc), 1, 2.05, -73.954038, 40.774478, -73.975582, 40.755458, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'jN3QnNimD4FdPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 34, tzinfo=datetime.timezone.utc), 1, 1.51, -73.98574, 40.72707, -73.995567, 40.740795, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Keing/TfzVQwaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 1, 30, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 39, 25, tzinfo=datetime.timezone.utc), 2, 1.8, -73.971954, 40.762859, -73.985433, 40.742904, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '2VIjmX9m3CRgTA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 44, tzinfo=datetime.timezone.utc), 3, 2.04, -73.986943, 40.729677, -73.993147, 40.749662, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'bdKj5nQCDlSajQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 6, tzinfo=datetime.timezone.utc), 1, 1.92, -73.98029, 40.785598, -73.96847, 40.769713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ijX8uwEkUDsm4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 23, tzinfo=datetime.timezone.utc), 2, 1.97, -73.964775, 40.764577, -73.953822, 40.787665, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'rU7Rxw3Zx554ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 20, tzinfo=datetime.timezone.utc), 1, 1.72, -74.001038, 40.741875, -73.981572, 40.755645, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'iRrgoiHseFR7Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 24, tzinfo=datetime.timezone.utc), 3, 1.38, -73.991522, 40.716787, -74.004603, 40.728513, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'BFhKmhIG1L6dkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 40, tzinfo=datetime.timezone.utc), 1, 1.65, -73.982082, 40.77056, -73.97198, 40.783762, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '6If0DH1BgmlMhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 49, tzinfo=datetime.timezone.utc), 5, 2.03, -73.962635, 40.7993, -73.945322, 40.817633, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'GqicJOE+oYE3OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 15, 8, tzinfo=datetime.timezone.utc), 5, 1.79, -74.002792, 40.726892, -73.9859, 40.736363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'W574/6z10KQo0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 32, tzinfo=datetime.timezone.utc), 2, 1.99, -73.98868, 40.748515, -73.96387, 40.754645, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'EG++nHM5D2VqFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 7, tzinfo=datetime.timezone.utc), 1, 2.03, -73.945898, 40.781713, -73.938702, 40.805278, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'JJXSemSGUhHryA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 48, tzinfo=datetime.timezone.utc), 1, 1.57, -74.001248, 40.729258, -73.979042, 40.72389, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '4RGFugLmd/w74w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 41, tzinfo=datetime.timezone.utc), 1, 1.14, -73.981508, 40.771475, -73.971625, 40.763703, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '/gud682vwTaWrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 7, tzinfo=datetime.timezone.utc), 2, 1.35, -73.977765, 40.756155, -73.956242, 40.76488, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'tajb0z5iDW8maQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 51, tzinfo=datetime.timezone.utc), 1, 1.63, -73.979967, 40.776173, -73.97678, 40.759545, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'cKBP6Rb5uQSJxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 6, tzinfo=datetime.timezone.utc), 5, 1.73, -73.979205, 40.785585, -73.96532, 40.807792, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'MCbS5UvP00SF2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 15, tzinfo=datetime.timezone.utc), 1, 1.48, -73.99128, 40.750272, -73.972867, 40.746525, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'FhGH7juDQA7Fsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 55, tzinfo=datetime.timezone.utc), 1, 1.92, -74.001323, 40.72283, -73.996792, 40.744637, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'FoOYfeMP3/N/VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 59, tzinfo=datetime.timezone.utc), 1, 1.12, -73.993613, 40.75212, -73.976508, 40.750278, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'pI03CL3x8qpvYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 39, tzinfo=datetime.timezone.utc), 1, 1.55, -73.99085, 40.73282, -73.978487, 40.75148, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '0SJ948tqWjk5sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 47, tzinfo=datetime.timezone.utc), 1, 1.69, -74.004768, 40.653835, -73.986078, 40.67336, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'iLzwjjiQ+XQCrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 24, tzinfo=datetime.timezone.utc), 2, 1.65, -73.991518, 40.750245, -73.975102, 40.759287, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '55TKtqoXDOpTcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 41, tzinfo=datetime.timezone.utc), 2, 1.02, -73.992208, 40.764342, -73.996643, 40.752717, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ny+BTB5hPslRvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 31, tzinfo=datetime.timezone.utc), 1, 1.38, -73.949878, 40.785615, -73.97108, 40.795447, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'AlldxPOtqMKEUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 11, tzinfo=datetime.timezone.utc), 1, 1.03, -73.97467, 40.750682, -74.043583, 40.736368, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Q9OcK9zwa4tLcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 12, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 40, tzinfo=datetime.timezone.utc), 3, 1.26, -73.989583, 40.752403, -74.002875, 40.760393, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '2Ewf7/YyxYyKsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 7, tzinfo=datetime.timezone.utc), 1, 1.84, -73.968832, 40.7612, -73.986308, 40.741658, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'wGtKk94hukDXXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 57, tzinfo=datetime.timezone.utc), 5, 1.28, -73.966615, 40.804305, -73.948552, 40.795117, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '1LsYoBNwH+KMpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 37, tzinfo=datetime.timezone.utc), 5, 1.3, -73.998982, 40.754468, -73.979647, 40.749983, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '1A8np6gs1lyCtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 9, tzinfo=datetime.timezone.utc), 5, 1.55, -73.987585, 40.731768, -73.987238, 40.714492, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Oybbysx65upaVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 39, tzinfo=datetime.timezone.utc), 1, 1.74, -73.970877, 40.796092, -73.98242, 40.772785, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '3X+/9JKrcYkE2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 46, tzinfo=datetime.timezone.utc), 1, 2.22, -73.996685, 40.737508, -73.975443, 40.762713, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Ga6cxtoKpfOKUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 7, tzinfo=datetime.timezone.utc), 4, 1.53, -74.016363, 40.704675, -73.997072, 40.714373, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'dh0KLNdKfvkHnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 39, tzinfo=datetime.timezone.utc), 1, 1.51, -73.996183, 40.732952, -73.976643, 40.722423, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ZcA/lZGOa2sSmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 42, tzinfo=datetime.timezone.utc), 1, 1.57, -73.952053, 40.77317, -73.970683, 40.767372, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'PyFDKp5xC9r2iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 29, tzinfo=datetime.timezone.utc), 1, 1.23, -73.961332, 40.769325, -73.974758, 40.76097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'hP6/M/CzZNzosA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 49, tzinfo=datetime.timezone.utc), 5, 1.79, -73.986597, 40.73997, -73.971315, 40.761785, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'IqXAIVDJpA03/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 3, tzinfo=datetime.timezone.utc), 1, 1.24, -74.024592, 40.71077, -74.016985, 40.716148, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'i8iMOyMVmWTzuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 35, tzinfo=datetime.timezone.utc), 1, 1.76, -73.972305, 40.762212, -73.99048, 40.751335, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'EJPGlHzvuv4lXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 36, tzinfo=datetime.timezone.utc), 1, 2.08, -73.949175, 40.772593, -73.972222, 40.757503, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'yg2C2xT4c7EwNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 0, tzinfo=datetime.timezone.utc), 1, 2.02, -73.95152, 40.7697, -73.9707, 40.758478, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '/3/ZK4wQeQ4MMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 39, tzinfo=datetime.timezone.utc), 1, 1.84, -73.988747, 40.778047, -73.977512, 40.76057, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'F+rym5yQACLzbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 24, tzinfo=datetime.timezone.utc), 1, 1.21, -73.964453, 40.775822, -73.97546, 40.760552, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'bDWSajW0BNRC1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 41, tzinfo=datetime.timezone.utc), 1, 1.77, -73.982387, 40.76754, -73.966097, 40.789698, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'cU8HQUZridra/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 3, tzinfo=datetime.timezone.utc), 1, 2.03, -74.013367, 40.70775, -74.001787, 40.735097, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'bDOfY6mkRTrMWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 50, tzinfo=datetime.timezone.utc), 1, 1.13, -73.971585, 40.763548, -73.980143, 40.752418, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'cxEr8ouZL07gqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 49, tzinfo=datetime.timezone.utc), 1, 1.4, -73.996047, 40.74423, -74.001935, 40.747612, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '7M4CbU02SiT4dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 36, tzinfo=datetime.timezone.utc), 3, 1.47, -73.977008, 40.755275, -73.993028, 40.767913, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'JClcIXhtZM1iFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 44, tzinfo=datetime.timezone.utc), 5, 1.93, -73.98635, 40.758132, -73.976205, 40.780632, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'o7dvh7SbuZ10zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 20, tzinfo=datetime.timezone.utc), 1, 1.38, -73.979932, 40.75352, -73.977082, 40.748472, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Rng3qPjy9+sX1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 55, tzinfo=datetime.timezone.utc), 1, 1.81, -73.98829, 40.72329, -73.971717, 40.746052, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '1ACcwZg0Qyd0Wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 43, tzinfo=datetime.timezone.utc), 1, 0.98, -73.99292, 40.742637, -73.980255, 40.745913, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '1VFBOlVKbZf+6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 53, tzinfo=datetime.timezone.utc), 5, 1.1, -73.997067, 40.76201, -73.981703, 40.753067, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'ehHFWmTGyd4Fsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 47, tzinfo=datetime.timezone.utc), 1, 1.38, -73.951975, 40.766317, -73.964017, 40.755517, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '7szJT1PL6tIcFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 19, tzinfo=datetime.timezone.utc), 1, 1.29, -73.994028, 40.751265, -73.981888, 40.763208, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'nFUZdO2EmwnQmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 1, tzinfo=datetime.timezone.utc), 1, 1.82, -73.986938, 40.740458, -73.987987, 40.748852, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'LOOb0r5SD1/NkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 24, tzinfo=datetime.timezone.utc), 2, 1.41, -73.97648, 40.751403, -73.972267, 40.764275, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '/rbEGhPcLOufDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 41, tzinfo=datetime.timezone.utc), 1, 1.23, -73.972202, 40.756268, -73.988348, 40.760012, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'nC8z/AxAfAFcjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.1, -74.007052, 40.70767, -74.001967, 40.715687, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'fHM8bDp2ua5NwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 45, tzinfo=datetime.timezone.utc), 5, 1.45, -74.007865, 40.707193, -73.999273, 40.723253, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'AZJJ73n82qzu3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 14, tzinfo=datetime.timezone.utc), 1, 1.31, -74.005723, 40.71758, -74.011755, 40.704363, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Y2WtonlxpyE7hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 37, tzinfo=datetime.timezone.utc), 1, 1.27, -74.00628, 40.73358, -73.990952, 40.739433, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '16EpgESgv5FF2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 54, tzinfo=datetime.timezone.utc), 1, 1.27, -73.99819, 40.719598, -73.986105, 40.73112, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'sMae+rwKzIe1og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 45, tzinfo=datetime.timezone.utc), 1, 1.27, -73.982097, 40.775412, -73.979185, 40.759743, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'pITaTg4DsunZZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 46, tzinfo=datetime.timezone.utc), 1, 1.54, -73.96447, 40.756395, -73.966465, 40.772253, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'AhOu6/C4mCLSeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 30, tzinfo=datetime.timezone.utc), 2, 1.35, -73.97785, 40.761567, -73.984657, 40.748628, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'wKgJUE/On+SGAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 17, tzinfo=datetime.timezone.utc), 1, 1.53, -73.997848, 40.72418, -73.980265, 40.717135, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', '7xeXPMr0qHJ4AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 8, tzinfo=datetime.timezone.utc), 1, 1.38, -73.959207, 40.777527, -73.965727, 40.761177, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'NRmkIYpfQxaicw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 52, tzinfo=datetime.timezone.utc), 1, 1.71, -73.964085, 40.767762, -73.981095, 40.74929, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'fSbDpdZiJOyBeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 10, tzinfo=datetime.timezone.utc), 1, 1.5, -73.995862, 40.726018, -73.993013, 40.742508, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'EQ1KgH0tkjpd8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 33, tzinfo=datetime.timezone.utc), 3, 1.84, -73.986482, 40.756883, -73.992958, 40.73568, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'C7ojUzOOmKRqOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 55, tzinfo=datetime.timezone.utc), 1, 1.33, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'w8dATl9IFBuJtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 56, tzinfo=datetime.timezone.utc), 2, 1.66, -73.91751, 40.743325, -73.918157, 40.75998, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'hDu9X5AWSVDplw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 58, tzinfo=datetime.timezone.utc), 1, 1.92, -74.00526, 40.719702, -74.008107, 40.74521, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Qwni2l4UihSnWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 10, tzinfo=datetime.timezone.utc), 1, 1.5, -74.010538, 40.711525, -73.995533, 40.724837, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'CbLKn9j02T7Khw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 34, tzinfo=datetime.timezone.utc), 1, 1.64, -73.964352, 40.760432, -73.982392, 40.747978, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'Z+GbR+EtLOemFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 48, tzinfo=datetime.timezone.utc), 1, 0.8, -73.982047, 40.761997, -73.973475, 40.756093, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'JgNLPXUM65FWVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 35, tzinfo=datetime.timezone.utc), 1, 1.7, -73.97561, 40.719075, -73.997903, 40.712565, 'CASH', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'WdNW/UnvnnWHkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 8, 16, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 26, 39, tzinfo=datetime.timezone.utc), 1, 1.4, -73.991431, 40.750045, -73.978197, 40.754073, 'Cash', 7.3, 0.0, 0.0, 0.0, 7.3, '1705685161.48292', 'XFXVTR3QkZiPTg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 37, tzinfo=datetime.timezone.utc), 1, 1.81, -73.972953, 40.79524, -73.954977, 40.780232, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'vJC2LRYkcdFt8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 1, 2.15, -73.951682, 40.777795, -73.942595, 40.80236, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'xKK1Ft4cOCH5YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 54, tzinfo=datetime.timezone.utc), 2, 2.52, -73.994255, 40.761353, -73.970962, 40.793313, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'BA8NfcaNnlC1Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 44, tzinfo=datetime.timezone.utc), 1, 1.4, -73.983637, 40.725947, -73.994157, 40.726547, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'UCpD2Pe3vudjiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 24, tzinfo=datetime.timezone.utc), 6, 1.93, -73.992648, 40.737257, -73.98638, 40.751728, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'bCu1N9MhkA+wgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 45, tzinfo=datetime.timezone.utc), 1, 1.74, -73.982238, 40.768237, -73.976192, 40.788707, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'GO/s2fbxuGmBxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 5, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 5, 11, tzinfo=datetime.timezone.utc), 1, 1.59, -74.006408, 40.733143, -73.98533, 40.731953, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'xpTHvwO2VNxYhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 34, tzinfo=datetime.timezone.utc), 2, 1.87, -73.992063, 40.744658, -74.007113, 40.732998, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '1dhgO7laMiqKdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 2, 40, tzinfo=datetime.timezone.utc), 2, 1.99, -73.970343, 40.757027, -73.946773, 40.772183, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '9RWGuGgDVnhlzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 2, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 2, 48, tzinfo=datetime.timezone.utc), 1, 1.5, -74.006062, 40.743642, -74.000883, 40.730182, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'IN4h7xkr9fSUOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 1, tzinfo=datetime.timezone.utc), 2, 1.78, -73.974663, 40.787545, -73.950452, 40.784037, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '7Z7n4F6kCkf/RQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 24, tzinfo=datetime.timezone.utc), 2, 1.92, -74.004207, 40.719743, -73.993082, 40.73899, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Rfj3we2l/K19Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 37, tzinfo=datetime.timezone.utc), 1, 0.68, -73.996598, 40.72356, -73.989867, 40.73258, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'tviiK3WC/Vf4lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 14, tzinfo=datetime.timezone.utc), 2, 1.58, -73.967287, 40.788073, -73.983473, 40.77109, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'FyrWkJm00++FcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 3, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 3, 20, tzinfo=datetime.timezone.utc), 1, 2.17, -73.989022, 40.75597, -73.982495, 40.735398, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'SmP7ZJbCoO+xYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 31, tzinfo=datetime.timezone.utc), 1, 1.79, -73.973278, 40.785525, -73.949407, 40.781225, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'a4fFbhNyFNLwmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 29, tzinfo=datetime.timezone.utc), 1, 2.24, -74.007552, 40.725712, -74.004947, 40.75209, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'ch58hNKwGxuBwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 52, tzinfo=datetime.timezone.utc), 3, 1.36, -73.98442, 40.739813, -73.999088, 40.729155, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'JOORBMZjdz0uZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 32, tzinfo=datetime.timezone.utc), 5, 1.28, -73.88392, 40.755135, -73.881982, 40.752168, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'NhoYcruXsPVuLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 35, tzinfo=datetime.timezone.utc), 1, 1.49, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'ITqvtjNdvpb/YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 4, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 4, 14, tzinfo=datetime.timezone.utc), 5, 1.86, -73.990365, 40.724923, -73.999598, 40.741127, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Ad5xLlfLcELIBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 37, tzinfo=datetime.timezone.utc), 1, 1.38, -73.95903, 40.763623, -73.97802, 40.762952, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '5Na4X0HYbdiXng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 29, tzinfo=datetime.timezone.utc), 5, 1.79, -73.986857, 40.750963, -74.005557, 40.740098, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Nn43HEeV0UpNbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.96, -73.989502, 40.758055, -73.984643, 40.780548, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '+FU+dbjacUWM+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 11, tzinfo=datetime.timezone.utc), 1, 1.82, -74.005637, 40.725895, -73.983693, 40.73195, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'phMexZvL+slUjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 35, tzinfo=datetime.timezone.utc), 1, 2.03, -73.966838, 40.756673, -73.974148, 40.731252, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '0Zwn9+K5Abqn7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 27, tzinfo=datetime.timezone.utc), 1, 1.72, -73.986125, 40.734555, -74.002325, 40.718795, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Yo17mjavidUVuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 28, tzinfo=datetime.timezone.utc), 1, 1.66, -73.984387, 40.732148, -74.000927, 40.746368, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'QyaB4Ufwa5WXqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 19, tzinfo=datetime.timezone.utc), 3, 2.22, -73.97167, 40.754302, -73.950207, 40.779858, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'rFn/UztSV0jCKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 3, tzinfo=datetime.timezone.utc), 1, 1.98, -73.961832, 40.79627, -73.960237, 40.818162, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '9Td/p+g7Ib8xXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 3, tzinfo=datetime.timezone.utc), 5, 2.29, -73.977897, 40.745667, -73.955063, 40.768678, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'nl+StH+6KA3p9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 32, tzinfo=datetime.timezone.utc), 1, 1.72, -73.987353, 40.757587, -73.982683, 40.779648, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Sigrfkj4lrMNRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 12, tzinfo=datetime.timezone.utc), 5, 1.79, -73.966928, 40.788682, -73.94796, 40.77884, 'Credit', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '5R3GKePgZmJ4tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 1, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 1, 43, tzinfo=datetime.timezone.utc), 1, 2.24, -73.950877, 40.770802, -73.979373, 40.765412, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'ALPmo5SzbkWTNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 1, 21, tzinfo=datetime.timezone.utc), 1, 2.32, -73.974993, 40.761537, -73.995812, 40.733287, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'SiO9VmEzuXfJYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 22, tzinfo=datetime.timezone.utc), 1, 2.48, -73.98362, 40.766932, -73.983968, 40.74051, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'xEfKo00FGt2ibA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 18, tzinfo=datetime.timezone.utc), 1, 2.18, -73.965337, 40.790705, -73.95836, 40.768742, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'v8GgEj7eWpzw4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 48, tzinfo=datetime.timezone.utc), 5, 2.05, -73.98572, 40.719247, -73.979753, 40.7423, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '4R3pPjCdvrhvow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 3, tzinfo=datetime.timezone.utc), 5, 1.87, -73.984543, 40.74852, -74.00611, 40.739908, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'JqS/5N2itS1wMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 1, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 1, 39, tzinfo=datetime.timezone.utc), 1, 1.65, -73.99713, 40.720643, -73.977125, 40.72619, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'tX+XlLWYnKmVOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 52, tzinfo=datetime.timezone.utc), 1, 1.39, -73.999948, 40.744143, -73.98369, 40.738005, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'mgxwOEwtgLeZ6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 40, tzinfo=datetime.timezone.utc), 1, 2.2, -74.004423, 40.742222, -73.986015, 40.758848, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'EcGlG/e+joRgSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 19, tzinfo=datetime.timezone.utc), 1, 1.91, -73.981927, 40.773275, -73.956748, 40.774945, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'wzqj7M638yPQmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), 2, 1.56, -73.975817, 40.747053, -73.982725, 40.762393, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'LG9wu2otGQBV2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 12, tzinfo=datetime.timezone.utc), 3, 1.59, -73.990632, 40.75057, -73.97508, 40.756287, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'AVu1jN8a4A9gcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 3, tzinfo=datetime.timezone.utc), 1, 1.67, -74.150528, 40.8933, -74.16543, 40.866005, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'rrb/woRFnrL4CA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 5, tzinfo=datetime.timezone.utc), 1, 1.72, -73.997572, 40.72133, -74.001325, 40.737027, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '8umZMCVDa01Iew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 33, tzinfo=datetime.timezone.utc), 1, 2.31, -73.949985, 40.775915, -73.974952, 40.758965, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'Ulin2wP4eplf0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 11, tzinfo=datetime.timezone.utc), 5, 0.65, -73.980558, 40.735155, -73.988642, 40.739362, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'gXYeW3q8Mc+/2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 12, tzinfo=datetime.timezone.utc), 1, 1.82, -73.98942, 40.726255, -74.007188, 40.705827, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'kvMw7+1Kwcx1lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 3, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 7, tzinfo=datetime.timezone.utc), 1, 2.1, 0.0, 0.0, 0.0, 0.0, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'J2URcJwLs5WMiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 10, tzinfo=datetime.timezone.utc), 2, 1.71, -73.9809, 40.743518, -74.005623, 40.72617, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'EdaTNKg6ZbAwGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 38, tzinfo=datetime.timezone.utc), 1, 1.5, -74.00192, 40.799892, -74.01106, 40.819458, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '8w0lvcWYOidFlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 29, tzinfo=datetime.timezone.utc), 1, 1.77, -73.974095, 40.752972, -73.983247, 40.759238, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'njVG5hp9dtjgUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 17, tzinfo=datetime.timezone.utc), 5, 2.12, -73.993157, 40.752257, -73.983183, 40.764718, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'r9mq4IQkAuIr1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 21, tzinfo=datetime.timezone.utc), 5, 1.58, -73.982425, 40.757062, -73.991683, 40.741195, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '+qwamVKLdTYY+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 54, tzinfo=datetime.timezone.utc), 3, 1.96, -74.013738, 40.70778, -73.98581, 40.714475, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '1NwkFgx7G3Itmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 53, tzinfo=datetime.timezone.utc), 5, 1.97, -73.985273, 40.778418, -73.959085, 40.775035, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '48PWVIT1AB8mfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 46, tzinfo=datetime.timezone.utc), 1, 2.08, -73.978427, 40.777205, -73.953867, 40.784598, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', '26fsjYWZTS7ddg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 38, tzinfo=datetime.timezone.utc), 1, 1.78, -73.971733, 40.76614, -73.985015, 40.781203, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'jFJ+HouEMme4gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 55, tzinfo=datetime.timezone.utc), 1, 1.88, -73.954218, 40.77468, -73.979247, 40.776802, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'y1YG1LZXmeDCqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 18, tzinfo=datetime.timezone.utc), 1, 1.94, -73.967862, 40.765318, -73.975625, 40.780385, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'VzytK1E5imdIpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 0, 50, tzinfo=datetime.timezone.utc), 1, 2.0, -73.971988, 40.791665, -73.949493, 40.77699, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'zDeGXCjQCx5FkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 2, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 34, tzinfo=datetime.timezone.utc), 5, 1.93, -73.995855, 40.743038, -73.996603, 40.724372, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'kNmqNK/3Lzfqgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 55, tzinfo=datetime.timezone.utc), 1, 2.1, -73.980485, 40.760088, -73.971818, 40.783765, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'PhsY3OjBnr/LRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 37, tzinfo=datetime.timezone.utc), 2, 1.87, -73.959603, 40.741342, -73.964737, 40.735388, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'n1h6h+tP4WV5LA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 48, tzinfo=datetime.timezone.utc), 1, 1.58, -74.003763, 40.756397, -74.023103, 40.748362, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'B3fwm/PpQpJzQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 0, tzinfo=datetime.timezone.utc), 1, 1.64, -73.973712, 40.794297, -73.956262, 40.803895, 'CASH', 7.3, 0.5, 0.0, 0.0, 7.8, '1705685161.48292', 'fDxV1T9vmorWSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n"
          ]
        },
        {
          "output_type": "stream",
          "name": "stderr",
          "text": [
            "IOPub data rate exceeded.\n",
            "The notebook server will temporarily stop sending output\n",
            "to the client in order to avoid crashing it.\n",
            "To change this limit, set the config variable\n",
            "`--NotebookApp.iopub_data_rate_limit`.\n",
            "\n",
            "Current values:\n",
            "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n",
            "NotebookApp.rate_limit_window=3.0 (secs)\n",
            "\n"
          ]
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 19, tzinfo=datetime.timezone.utc), 1, 1.31, -73.991627, 40.749245, -73.970827, 40.746855, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'Qa1Utciry7J5GQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 38, tzinfo=datetime.timezone.utc), 1, 1.73, -73.981083, 40.77955, -73.97202, 40.763852, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'gyZnw/SpscEzrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 58, tzinfo=datetime.timezone.utc), 2, 2.83, -74.015568, 40.705725, -73.991328, 40.7448, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'up2SiHyIfeAvMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 7, tzinfo=datetime.timezone.utc), 3, 1.83, -73.989883, 40.762143, -73.966168, 40.761887, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'z9M6T+4HlDp8bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 19, tzinfo=datetime.timezone.utc), 3, 2.27, -73.966752, 40.77257, -73.98101, 40.75063, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'mzFOfTrQnYSyiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 51, tzinfo=datetime.timezone.utc), 1, 3.29, -73.960765, 40.76128, -73.955367, 40.771877, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'bBzWBoMCOvVysQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.49, -73.985123, 40.763558, -73.974487, 40.786515, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'zWYP9siipJUQ7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 22, 30, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 42, 36, tzinfo=datetime.timezone.utc), 1, 3.2, -73.981151, 40.744247, -73.948999, 40.774128, 'Cash', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'GX/Clrg91OI77Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 30, tzinfo=datetime.timezone.utc), 1, 2.77, -73.993342, 40.762498, -73.961698, 40.777643, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'qhHJzBnh8AFViA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 32, tzinfo=datetime.timezone.utc), 5, 2.07, -73.95164, 40.766318, -73.974822, 40.752668, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'OoUZ9JvPBEycWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 32, tzinfo=datetime.timezone.utc), 2, 2.6, -73.979537, 40.735707, -73.967342, 40.766413, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '7FNNyzBU13d0rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 43, tzinfo=datetime.timezone.utc), 3, 1.86, -73.990193, 40.751578, -73.981068, 40.765238, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'luvNEmm3UwLxmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 11, tzinfo=datetime.timezone.utc), 2, 3.14, -73.978912, 40.762202, -73.967807, 40.800167, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'sbIhKKNVgUf+/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 56, tzinfo=datetime.timezone.utc), 1, 1.41, -73.977382, 40.784212, -73.955363, 40.773578, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'jjKk2rB0N60Gzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 43, tzinfo=datetime.timezone.utc), 1, 3.14, -73.961942, 40.80572, -73.987485, 40.769918, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'oc+2pJMMUHs1Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 8, tzinfo=datetime.timezone.utc), 1, 2.62, -73.948478, 40.78244, -73.98367, 40.78072, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'VZQ16WE6AxfZfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 4, tzinfo=datetime.timezone.utc), 2, 2.03, -73.994345, 40.728522, -73.990992, 40.750117, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'zdZLPaUpuHOYrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 42, tzinfo=datetime.timezone.utc), 1, 2.99, -73.996013, 40.686853, -74.007172, 40.7118, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'u6Tme+BDeeSBqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 11, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 28, 40, tzinfo=datetime.timezone.utc), 1, 2.5, -73.977765, 40.752564, -73.997313, 40.766651, 'Cash', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'K5IPHwyc++dNYQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 37, tzinfo=datetime.timezone.utc), 1, 2.54, -73.981997, 40.752558, -73.997375, 40.766353, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'QrzhoAYUK+aXDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 17, tzinfo=datetime.timezone.utc), 1, 1.73, -73.991983, 40.750375, -73.981095, 40.764588, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '6Nn/4HfuFsx75w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 46, tzinfo=datetime.timezone.utc), 5, 3.24, -73.94738, 40.779852, -73.976087, 40.75393, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'Dv2MjgzhKC+kBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 51, tzinfo=datetime.timezone.utc), 1, 1.76, -73.994535, 40.734642, -73.975133, 40.7486, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'g406caCMA7Yxdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 58, tzinfo=datetime.timezone.utc), 1, 2.0, -73.978908, 40.777382, -73.958752, 40.760877, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'nUM5QOPMsqpJZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 22, tzinfo=datetime.timezone.utc), 1, 2.66, -73.961692, 40.771073, -73.98804, 40.743752, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'fcwo9/y0ZgS7kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 5, tzinfo=datetime.timezone.utc), 1, 1.74, -73.98108, 40.767602, -73.9625, 40.77812, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'QoCeKxOMHMskYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 41, tzinfo=datetime.timezone.utc), 5, 2.71, -73.973763, 40.794717, -73.982415, 40.763678, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '0HxrGbjf2++2og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 29, tzinfo=datetime.timezone.utc), 5, 2.1, -73.954895, 40.769288, -73.96619, 40.789465, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'FRXuzo+HGtqPjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 28, tzinfo=datetime.timezone.utc), 1, 2.45, -73.993452, 40.736302, -73.969128, 40.75837, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '1vcJPL9d2uRVOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 36, tzinfo=datetime.timezone.utc), 2, 3.58, -74.016223, 40.709903, -73.974773, 40.718575, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'CoQRe4vefwu0RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 16, tzinfo=datetime.timezone.utc), 2, 1.96, -73.986107, 40.757502, -73.964735, 40.763808, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'jEdZVCgi3vKIjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 39, tzinfo=datetime.timezone.utc), 1, 2.88, -73.976022, 40.792273, -73.99548, 40.759635, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'kGoeoU1GyCLctw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 26, tzinfo=datetime.timezone.utc), 2, 1.1, -73.937328, 40.797723, -73.94808, 40.795333, 'Credit', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'SbT8u/rcwigOJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 27, tzinfo=datetime.timezone.utc), 2, 2.09, -74.006403, 40.733188, -73.9784, 40.721557, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'DOJXbvsAcYDs7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 40, tzinfo=datetime.timezone.utc), 1, 2.76, -74.000745, 40.742273, -74.006232, 40.707997, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'n1IT3Yg0w3y7jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 43, tzinfo=datetime.timezone.utc), 1, 2.46, -73.972077, 40.761458, -73.991838, 40.731243, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'YR5N6IO4UBKfBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 28, tzinfo=datetime.timezone.utc), 1, 1.59, -73.959358, 40.762978, -73.975697, 40.753385, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'XGR1ZhQ2QhWG+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 31, tzinfo=datetime.timezone.utc), 1, 2.53, -73.995185, 40.754883, -74.007303, 40.727363, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'Yoku3psfZ2rkyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 43, tzinfo=datetime.timezone.utc), 3, 2.45, -73.973943, 40.764288, -73.946317, 40.780653, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'OKfsI+K/Nmb5SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 29, tzinfo=datetime.timezone.utc), 1, 2.34, -73.992318, 40.75829, -73.970133, 40.756968, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'x9El8q2KvnWu4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 43, tzinfo=datetime.timezone.utc), 1, 1.39, -73.958998, 40.764095, -73.980693, 40.773175, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '+AvNOIXwExQjww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 5, tzinfo=datetime.timezone.utc), 2, 1.59, -73.955313, 40.773602, -73.97937, 40.783662, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'cOZgRGjcSvn0WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 9, tzinfo=datetime.timezone.utc), 1, 2.46, -73.968762, 40.75965, -73.969948, 40.785993, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'URdsOinqRFJxCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 6, tzinfo=datetime.timezone.utc), 2, 2.66, -73.990587, 40.700657, -73.988377, 40.718095, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', '8Q1UVIi02E3tXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 38, tzinfo=datetime.timezone.utc), 5, 1.69, -74.004432, 40.734803, -73.984538, 40.742283, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'F6UxdBSxFjoKTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 30, tzinfo=datetime.timezone.utc), 1, 2.46, -73.955555, 40.779673, -73.984733, 40.768485, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'EbHucHN3xr2PeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 52, tzinfo=datetime.timezone.utc), 1, 2.85, -73.977892, 40.685082, -73.99341, 40.722437, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'qcyxFc7awb0iIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 54, tzinfo=datetime.timezone.utc), 1, 2.76, -73.96093, 40.595132, -73.967375, 40.634537, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'FLxxRe22DWTJCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 6, 58, tzinfo=datetime.timezone.utc), 1, 2.33, -73.996252, 40.750602, -73.973445, 40.756345, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'qEMsnDUIiw0CqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 31, tzinfo=datetime.timezone.utc), 1, 2.49, -73.986893, 40.725297, -73.9947, 40.750458, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'zvBTUXOSB8oilw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 15, tzinfo=datetime.timezone.utc), 1, 2.74, -74.004187, 40.721925, -73.989463, 40.754275, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'JSlZ5PS0/o8VWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 0, tzinfo=datetime.timezone.utc), 2, 2.29, -73.974712, 40.756142, -73.959142, 40.783237, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'bVvbh8VSXN0bMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 52, tzinfo=datetime.timezone.utc), 2, 2.7, -73.99161, 40.74891, -73.977403, 40.772658, 'CASH', 9.7, 0.0, 0.0, 0.0, 9.7, '1705685161.48292', 'MoiZ0lOlUsctQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 9, tzinfo=datetime.timezone.utc), 5, 2.51, -74.000803, 40.727235, -73.976493, 40.751337, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'Vmt93H5RDBhytQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 35, tzinfo=datetime.timezone.utc), 1, 2.81, -73.978923, 40.772317, -73.988212, 40.740255, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '+KlE1dELoRbBPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 38, tzinfo=datetime.timezone.utc), 5, 2.35, -73.965208, 40.759355, -73.997698, 40.763902, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '2xW3YjnG3xSaOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 28, tzinfo=datetime.timezone.utc), 1, 2.11, -73.989675, 40.729613, -74.0026, 40.749992, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '0RbxX74Y7eG5SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 1, 2.52, -74.006242, 40.739728, -73.979835, 40.761323, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '72YooOXk5Pmo9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 3, tzinfo=datetime.timezone.utc), 4, 3.23, -74.010685, 40.718763, -73.988565, 40.748488, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'KRBuhFdZv6d3Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 26, tzinfo=datetime.timezone.utc), 1, 2.58, -73.985162, 40.75522, -73.979247, 40.787187, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'Z331Cp7Gg/jS7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 57, tzinfo=datetime.timezone.utc), 1, 1.46, -73.987468, 40.735938, -73.987883, 40.722583, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'voUiVpxt3Ci8iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 53, tzinfo=datetime.timezone.utc), 5, 2.85, -73.985293, 40.778605, -74.00599, 40.74298, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'XDW26ZHOVWxZlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), 5, 2.86, -74.003327, 40.732638, -73.979252, 40.762755, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '9BDZu6lpnKoUyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 48, tzinfo=datetime.timezone.utc), 1, 3.15, -73.966603, 40.75318, -73.972882, 40.785698, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'USaJIBYsQiNotg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 46, tzinfo=datetime.timezone.utc), 3, 2.69, -74.00792, 40.751418, -73.98677, 40.728208, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'K7UJp4SgYewzvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 27, tzinfo=datetime.timezone.utc), 1, 2.89, -73.954495, 40.769933, -73.977575, 40.752017, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'mHgHeBQLCfUhEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), 2, 3.25, -73.961182, 40.765052, -73.971723, 40.797067, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '1+zZIA3IGvz3Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 41, tzinfo=datetime.timezone.utc), 1, 2.88, -73.98215, 40.727888, -73.969805, 40.760618, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'wciQznxtQIwJJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 56, tzinfo=datetime.timezone.utc), 1, 2.72, -73.972967, 40.75272, -73.996212, 40.723612, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '+bt9U68mCVmXsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 40, tzinfo=datetime.timezone.utc), 1, 3.18, -73.99415, 40.75115, -73.957215, 40.77005, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '1BXBg9j7/xf9Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 24, tzinfo=datetime.timezone.utc), 1, 2.79, -73.967682, 40.792695, -73.956155, 40.766947, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'tli+8bKfiKAEMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 58, tzinfo=datetime.timezone.utc), 1, 2.68, -74.002372, 40.73314, -73.974903, 40.741783, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'wyknrmd860idRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 49, tzinfo=datetime.timezone.utc), 1, 2.38, -73.972027, 40.743907, -73.992875, 40.763123, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'SFxNjmm7Nll9hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 34, tzinfo=datetime.timezone.utc), 5, 3.2, -73.968382, 40.761932, -73.977895, 40.726907, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '8rOJr1W90UT7cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 46, tzinfo=datetime.timezone.utc), 1, 2.97, -73.961345, 40.76044, -73.982965, 40.756195, 'Credit', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'DoFuCMaW1vy+9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 26, tzinfo=datetime.timezone.utc), 3, 2.73, -73.97723, 40.75394, -73.974408, 40.783128, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '7BQLfE5XrI8mug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 13, tzinfo=datetime.timezone.utc), 2, 2.67, -73.988452, 40.73729, -73.978583, 40.765493, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'BLsdmhD+/M0h+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 29, tzinfo=datetime.timezone.utc), 2, 2.95, -73.932212, 40.707757, -73.964248, 40.76084, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'HRaNVx7XXP19Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 5, tzinfo=datetime.timezone.utc), 1, 3.56, -73.965807, 40.75463, -73.932997, 40.799405, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'X3G2YjQ4o2r9fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 5, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 6, 0, tzinfo=datetime.timezone.utc), 1, 2.87, -73.932112, 40.74491, -73.9759, 40.763887, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '9JHEfB+h3aJNpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 1, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 2, 7, tzinfo=datetime.timezone.utc), 1, 3.37, -73.966372, 40.761298, -73.92236, 40.757628, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '4YF27YL21TIfZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), 1, 3.21, -73.965075, 40.761278, -73.926313, 40.762218, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'L34wVZECBMLzoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 3, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 3, 33, tzinfo=datetime.timezone.utc), 1, 3.6, -73.983643, 40.72965, -73.950775, 40.774677, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'AMZnZXnoeXnYPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 1, tzinfo=datetime.timezone.utc), 5, 2.57, -73.972378, 40.750117, -73.999908, 40.73035, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'MeuKryNxV8Yjjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 52, tzinfo=datetime.timezone.utc), 1, 2.74, -73.96679, 40.759122, -73.998227, 40.745235, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'ugElM/DulTOahQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 48, tzinfo=datetime.timezone.utc), 5, 2.73, -73.98183, 40.76882, -73.953893, 40.786445, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'k+Wccc+NjSzO+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 43, tzinfo=datetime.timezone.utc), 1, 2.7, -74.00519, 40.737588, -74.0111, 40.703412, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '6XClm+X7aJCqnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 26, tzinfo=datetime.timezone.utc), 1, 1.38, -74.007843, 40.751595, -73.999388, 40.738837, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'r/aq3sTUD1qbhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 18, tzinfo=datetime.timezone.utc), 2, 2.33, -73.987183, 40.760092, -73.983998, 40.737848, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'Vc6CRPMe81bewA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 20, tzinfo=datetime.timezone.utc), 1, 3.35, -74.003643, 40.722362, -73.980805, 40.764252, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '5mZ+lnKkZVk6tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 33, tzinfo=datetime.timezone.utc), 1, 2.67, -73.994312, 40.739182, -73.985217, 40.715488, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'ti72soSn8hxqAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 11, tzinfo=datetime.timezone.utc), 1, 3.43, -73.993588, 40.74212, -73.973795, 40.782988, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'V+uVgnyM7o6keQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 24, tzinfo=datetime.timezone.utc), 2, 2.35, -73.979208, 40.752413, -74.003767, 40.74749, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'aqz32u4pwgmWLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 2, 39, tzinfo=datetime.timezone.utc), 1, 3.01, -73.983833, 40.765728, -73.963698, 40.798012, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'Dj/OwYzA1mYhgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 12, tzinfo=datetime.timezone.utc), 5, 3.18, -73.985652, 40.763433, -73.964863, 40.804193, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'UDsMQ0PWr6Pn+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 48, tzinfo=datetime.timezone.utc), 1, 2.37, -73.98298, 40.73902, -73.992302, 40.762477, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'Gh6iQtvaZlGB0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 47, tzinfo=datetime.timezone.utc), 5, 2.12, -74.008615, 40.715913, -73.992707, 40.731665, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'tP8sIKvRFuK3cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 3, tzinfo=datetime.timezone.utc), 1, 2.58, -73.97751, 40.74904, -73.988638, 40.719375, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'rkk0I2N4PsYtUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 33, tzinfo=datetime.timezone.utc), 5, 2.6, -73.872228, 40.773877, -73.892775, 40.752873, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'oC963FKdAEKRTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 10, tzinfo=datetime.timezone.utc), 1, 3.05, -73.98558, 40.758805, -73.951818, 40.781, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'lT/JFW63r6bwXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 7, tzinfo=datetime.timezone.utc), 5, 2.84, -73.993815, 40.751723, -74.004375, 40.721735, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', '4EG5Ci0pfVaegw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 25, tzinfo=datetime.timezone.utc), 5, 2.8, -73.978923, 40.76136, -74.006232, 40.739555, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'L9OncHdLpukDbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 25, tzinfo=datetime.timezone.utc), 1, 2.76, -73.990873, 40.728267, -73.987363, 40.757993, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'vTcfjb1eXpTUYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 21, tzinfo=datetime.timezone.utc), 1, 2.51, -73.991833, 40.727208, -74.004175, 40.716358, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'zN+sYAqgNp/xpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), 1, 1.72, -74.008578, 40.719823, -73.987362, 40.722437, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'wq4riu1990bpLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 5, tzinfo=datetime.timezone.utc), 5, 3.08, -73.959523, 40.813812, -73.978438, 40.777255, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'pcCpE+yF1oEqSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 28, tzinfo=datetime.timezone.utc), 1, 3.24, -73.993132, 40.743533, -73.95827, 40.758583, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'YiQsa876gnw7pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 4, tzinfo=datetime.timezone.utc), 5, 2.6, -73.960253, 40.769565, -73.981273, 40.737117, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'ZSFV0CcYQmy1uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 6, tzinfo=datetime.timezone.utc), 1, 2.57, -74.006507, 40.739778, -73.978065, 40.764197, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'C4w0EEZlo74w4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 2, tzinfo=datetime.timezone.utc), 5, 2.56, -73.979838, 40.765662, -74.005043, 40.73993, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 's6hk5v4fVJfSbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 4, tzinfo=datetime.timezone.utc), 5, 3.41, -73.983375, 40.738733, -73.950393, 40.7749, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'dCV2Ay+P336mZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 7, tzinfo=datetime.timezone.utc), 1, 3.52, -73.981748, 40.730945, -73.95062, 40.775767, 'CASH', 9.7, 0.5, 0.0, 0.0, 10.2, '1705685161.48292', 'I2AEjkZK54l3mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 57, tzinfo=datetime.timezone.utc), 1, 2.58, -73.95029, 40.78469, -73.981028, 40.774185, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'ln77v29+h7WUxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), 6, 1.6, -73.984762, 40.767908, -73.964962, 40.75512, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'zHdWXWfahMPSyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 40, tzinfo=datetime.timezone.utc), 2, 3.22, -73.990268, 40.756128, -73.968957, 40.79175, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'iSaKZeZ+yCEbZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 38, tzinfo=datetime.timezone.utc), 1, 1.59, -73.982065, 40.77826, -73.97066, 40.762367, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'oGAyNuhZYESEPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 27, tzinfo=datetime.timezone.utc), 1, 1.83, -73.969135, 40.757852, -73.98102, 40.77109, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'upe/R+y+FPmYmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 13, tzinfo=datetime.timezone.utc), 5, 1.62, -73.86998, 40.957988, -74.004912, 40.734002, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'aZHfazYczRdqyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 49, tzinfo=datetime.timezone.utc), 1, 2.61, -73.98624, 40.777278, -73.977162, 40.788057, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '29/gVLG7Q0I27w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 56, tzinfo=datetime.timezone.utc), 1, 2.09, -73.959188, 40.771805, -73.974072, 40.791305, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'vyDZE/NsgciagA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 41, tzinfo=datetime.timezone.utc), 2, 2.71, -73.970698, 40.75195, -73.948813, 40.782905, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'Ezbq9OG+G9GhJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 32, tzinfo=datetime.timezone.utc), 5, 1.73, -73.955682, 40.764063, -73.97788, 40.757315, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'DqmNG3EU6Ue6Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 48, tzinfo=datetime.timezone.utc), 1, 2.98, -73.977487, 40.763858, -73.98319, 40.731517, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'Lo5xgzuVczqHxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 12, tzinfo=datetime.timezone.utc), 3, 1.94, -73.980835, 40.768608, -73.976085, 40.756037, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'IGioM7AREF5oWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 30, tzinfo=datetime.timezone.utc), 1, 1.91, -73.9635, 40.77518, -73.985193, 40.759502, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '/USv/jyFmT4Rgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 34, tzinfo=datetime.timezone.utc), 2, 3.16, -73.977125, 40.742945, -73.948585, 40.777855, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '+GaMKUL79Jwd3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 44, tzinfo=datetime.timezone.utc), 2, 1.57, -73.990318, 40.751138, -73.98033, 40.765297, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '87ViaBlPGDaBrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 37, tzinfo=datetime.timezone.utc), 2, 2.44, -73.970683, 40.75594, -73.946108, 40.78051, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '3GW5w7AMrnZ0YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 57, tzinfo=datetime.timezone.utc), 2, 1.43, -73.978107, 40.746025, -73.987552, 40.755177, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'xWlZLEepS2tb4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 10, tzinfo=datetime.timezone.utc), 1, 2.12, -73.97579, 40.789193, -73.946305, 40.772742, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'CfbBz4y/vnRS9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.15, -73.962865, 40.775445, -73.973623, 40.764343, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'hU+h+XuoVAjZIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 37, tzinfo=datetime.timezone.utc), 1, 2.56, -73.980532, 40.764883, -74.005517, 40.737002, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '2mWH8ExDA/VDGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 58, tzinfo=datetime.timezone.utc), 2, 2.76, -73.982882, 40.7308, -73.983347, 40.76052, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'YlxmrmHAg1VAfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 29, tzinfo=datetime.timezone.utc), 1, 2.79, -73.954147, 40.779152, -73.965042, 40.806395, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'b5h1+p08g56c6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 48, tzinfo=datetime.timezone.utc), 1, 1.74, -73.974802, 40.761282, -73.993573, 40.744957, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '0Ck14dL+8855dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 33, tzinfo=datetime.timezone.utc), 2, 2.66, -73.989623, 40.747162, -73.999787, 40.722033, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '4JYaPE2uihby2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 12, tzinfo=datetime.timezone.utc), 1, 3.07, -73.996775, 40.709148, -73.971552, 40.74384, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'MzUJytnjeUBThQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.98, -73.99941, 40.731277, -73.978593, 40.742502, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', '3BWH8AFUr6uttQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 22, tzinfo=datetime.timezone.utc), 5, 2.37, -73.997112, 40.72202, -74.005323, 40.746322, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'SwVw/1JQIbyngg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 48, tzinfo=datetime.timezone.utc), 5, 2.17, -73.936312, 40.798908, -73.957028, 40.783192, 'CASH', 9.7, 1.0, 0.0, 0.0, 10.7, '1705685161.48292', 'Ww03gmaPx7M2kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 10, 11, tzinfo=datetime.timezone.utc), 1, 2.8, -74.005407, 40.727977, -73.998027, 40.745855, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'cxxK1n5FFm0Lpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 48, tzinfo=datetime.timezone.utc), 2, 2.35, -73.99319, 40.751895, -73.988217, 40.732912, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '1D5FD84zOVevGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 57, tzinfo=datetime.timezone.utc), 1, 3.13, -73.98636, 40.734873, -73.954383, 40.764025, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '18Ksr3BA5TnG5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 39, tzinfo=datetime.timezone.utc), 3, 3.89, -73.991892, 40.744223, -73.953502, 40.786993, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'ZiQC6GRtBic2qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 0, tzinfo=datetime.timezone.utc), 1, 3.37, -73.999245, 40.725032, -73.974862, 40.763413, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'LBLMFes2hAUz7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 10, tzinfo=datetime.timezone.utc), 1, 3.35, -73.953162, 40.767817, -73.96659, 40.799937, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '/Xo/aeLbC8xrGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 28, tzinfo=datetime.timezone.utc), 1, 2.77, -73.987187, 40.739768, -73.981693, 40.768405, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'tSW0F9tLBS+MAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 12, tzinfo=datetime.timezone.utc), 2, 3.06, -73.987655, 40.737932, -74.009348, 40.704293, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'AWft5sFvocFZ5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 52, tzinfo=datetime.timezone.utc), 1, 2.99, -73.985642, 40.757927, -74.002558, 40.719728, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'N1jmhg/GKmZwIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 6, tzinfo=datetime.timezone.utc), 1, 3.24, -73.99465, 40.755833, -74.011285, 40.714133, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'REe/wd3oMmTu7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 11, 47, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 6, 39, tzinfo=datetime.timezone.utc), 2, 2.9, -73.978102, 40.75236, -74.005569, 40.726293, 'Cash', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'tvlRdsSgMJnVHQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 26, tzinfo=datetime.timezone.utc), 2, 4.25, -73.985918, 40.757453, -74.016843, 40.70513, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'nWjuU7IqHqclTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 14, tzinfo=datetime.timezone.utc), 1, 2.83, -73.974633, 40.742125, -73.983125, 40.769782, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'I9Jen45XM3ycmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 46, tzinfo=datetime.timezone.utc), 2, 2.46, -73.95426, 40.784245, -73.97451, 40.757447, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'A1xkb1LKVf119w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 39, tzinfo=datetime.timezone.utc), 1, 3.86, -73.941497, 40.807407, -73.952603, 40.765707, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '8IrCcxoAlXdGXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 7, tzinfo=datetime.timezone.utc), 1, 3.94, -73.97137, 40.792005, -73.968212, 40.754823, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '+xDscnjZtC7ZfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 7, tzinfo=datetime.timezone.utc), 1, 1.47, -73.982515, 40.771715, -73.992422, 40.75395, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'mF1DpTmzmcy0kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 8, tzinfo=datetime.timezone.utc), 1, 2.95, -73.98855, 40.737402, -73.96398, 40.773882, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'QzQ0H0cY3ry3OA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.2, -73.987578, 40.750568, -73.981915, 40.768272, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'iwynxR4ITKNgkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 39, tzinfo=datetime.timezone.utc), 2, 3.01, -73.965323, 40.801055, -73.95028, 40.778958, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'czFo/Hjq26tFbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 15, tzinfo=datetime.timezone.utc), 1, 3.03, -73.995112, 40.739717, -73.982875, 40.776085, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'Zwud0mPoeLq/tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 40, tzinfo=datetime.timezone.utc), 1, 3.06, -73.995398, 40.759603, -73.956245, 40.788233, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '74Quj5p0/XUNCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 42, tzinfo=datetime.timezone.utc), 1, 3.3, -74.010848, 40.717008, -74.002865, 40.760438, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'mtW4W0erSi1Ziw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 11, tzinfo=datetime.timezone.utc), 5, 3.89, -73.959035, 40.783335, -73.995577, 40.74657, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'lMSdEtliXjihEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 18, tzinfo=datetime.timezone.utc), 1, 2.0, -74.000308, 40.761467, -73.970543, 40.756032, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '2b37KAIZ/e3YgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 39, tzinfo=datetime.timezone.utc), 1, 4.37, -73.974238, 40.737233, -74.004997, 40.708748, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '8CSpKBIpBcKemg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 1, tzinfo=datetime.timezone.utc), 5, 2.65, -73.995225, 40.743847, -73.965647, 40.762823, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '7L/YCE8KYCAb2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 42, tzinfo=datetime.timezone.utc), 1, 2.81, -73.954923, 40.786007, -73.97962, 40.76733, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'Vl17d5D7FSVv+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 3, tzinfo=datetime.timezone.utc), 2, 2.63, -73.972628, 40.780977, -73.991797, 40.74988, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'iRR9yO4o2ICRhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 9, tzinfo=datetime.timezone.utc), 1, 1.99, -73.975142, 40.787617, -73.99484, 40.7702, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'I2AcpzaNANPM7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 1, tzinfo=datetime.timezone.utc), 1, 1.45, -73.971782, 40.755993, -73.990157, 40.760675, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'xAMp1O1MnNQA3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 13, tzinfo=datetime.timezone.utc), 1, 3.38, -73.952967, 40.776542, -73.990123, 40.75162, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'nmjIsyHpFNERXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 31, tzinfo=datetime.timezone.utc), 1, 3.33, -73.986773, 40.745385, -73.959158, 40.783278, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'HawTCyNJOSQy8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 13, tzinfo=datetime.timezone.utc), 1, 2.37, -73.954857, 40.773678, -73.98028, 40.754682, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'dO1NFMT+3y6a3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 20, tzinfo=datetime.timezone.utc), 1, 2.82, -73.944497, 40.77961, -73.970848, 40.751748, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '71oKiLqTWCoGSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 32, tzinfo=datetime.timezone.utc), 2, 3.34, -73.981133, 40.751193, -73.982858, 40.78505, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'rT7oOsdRd8r2/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 4, tzinfo=datetime.timezone.utc), 2, 2.47, -73.980892, 40.639923, -73.988083, 40.646385, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'Kx3A3L1yhApf4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 15, tzinfo=datetime.timezone.utc), 5, 2.12, -73.945882, 40.773438, -73.967838, 40.787303, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'Bwgt58LF3+LGyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 47, tzinfo=datetime.timezone.utc), 1, 2.56, -73.965025, 40.766692, -73.978107, 40.737398, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'xaQ14a9Vpamuuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 32, tzinfo=datetime.timezone.utc), 1, 4.35, -74.009832, 40.711965, -73.971908, 40.746055, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'wPok7BUOrdC7IQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 55, tzinfo=datetime.timezone.utc), 5, 3.5, -73.964478, 40.760355, -74.000028, 40.726755, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '04+tChR/deQozA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 58, tzinfo=datetime.timezone.utc), 1, 3.43, -73.947963, 40.789902, -73.984308, 40.758833, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'cWKMER+nBdJpqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 28, tzinfo=datetime.timezone.utc), 1, 2.48, -73.990023, 40.762353, -73.976843, 40.739123, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '3zQk0zKiQDZXkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 0, tzinfo=datetime.timezone.utc), 2, 3.2, -73.997805, 40.720777, -73.991432, 40.740702, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'FOZ9b9p5kyNp3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 13, tzinfo=datetime.timezone.utc), 1, 2.16, -73.972713, 40.78081, -73.978555, 40.75711, 'Credit', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'vr+W0i9i+LppHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 44, tzinfo=datetime.timezone.utc), 5, 3.61, -73.972915, 40.754925, -73.939203, 40.79898, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '/zfXz9eEDlStCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 10, tzinfo=datetime.timezone.utc), 2, 3.81, -73.87229, 40.773845, -73.924178, 40.766227, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'iAuSo68WI1ecwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 37, tzinfo=datetime.timezone.utc), 5, 3.27, -73.9686, 40.757565, -73.999962, 40.725492, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'x61AnIxQv57k4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 15, 53, tzinfo=datetime.timezone.utc), 5, 3.87, -74.012893, 40.710118, -73.988967, 40.757798, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'iMWFPgoYnWIOaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 27, tzinfo=datetime.timezone.utc), 5, 3.54, -73.95993, 40.798242, -73.942477, 40.839903, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'EbAOyFR70t/l+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 48, tzinfo=datetime.timezone.utc), 2, 3.23, -73.949907, 40.780365, -73.986357, 40.75635, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'm0zaIX9+qCX8fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 46, tzinfo=datetime.timezone.utc), 2, 2.96, -73.954807, 40.769862, -73.975982, 40.745762, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'zFbr/OcitGogXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 35, tzinfo=datetime.timezone.utc), 5, 4.2, -73.981293, 40.724963, -73.988422, 40.702458, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', '4QDwXBPv16yJCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 43, tzinfo=datetime.timezone.utc), 1, 2.79, -73.982375, 40.768282, -73.9916, 40.735155, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'c8iZ2VMDbJM3xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 33, tzinfo=datetime.timezone.utc), 1, 3.4, -74.000013, 40.728175, -74.002163, 40.727847, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'sW3qIqa7Mi9naA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 52, tzinfo=datetime.timezone.utc), 3, 4.37, -73.96572, 40.762528, -73.98477, 40.721833, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'lAOh7K0Aj1UyOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 42, tzinfo=datetime.timezone.utc), 5, 3.74, -74.003568, 40.747512, -74.011743, 40.702813, 'CASH', 11.7, 0.0, 0.0, 0.0, 11.7, '1705685161.48292', 'pl4j2GHcUum4Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 9, tzinfo=datetime.timezone.utc), 2, 3.37, -74.008722, 40.71895, -73.984875, 40.76286, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'waxOBabcnCCFoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 57, tzinfo=datetime.timezone.utc), 2, 3.19, -73.995928, 40.71642, -73.97532, 40.755932, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', '9+LEVHAkeTjoXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 39, tzinfo=datetime.timezone.utc), 4, 3.27, -73.983743, 40.765392, -73.979707, 40.733355, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'Z/7+3eobUw26bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 12, tzinfo=datetime.timezone.utc), 2, 3.43, -73.968437, 40.762087, -73.993565, 40.721232, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'ASQP7cz3zeCnbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 15, tzinfo=datetime.timezone.utc), 1, 3.42, -73.991503, 40.726842, -73.981208, 40.763792, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'KRtulFcirdH5jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 41, tzinfo=datetime.timezone.utc), 1, 3.97, -73.972513, 40.754688, -73.989733, 40.714095, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'ELUWM+ulNnLE9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 0, tzinfo=datetime.timezone.utc), 2, 3.04, -73.983872, 40.721613, -73.991885, 40.700053, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', '0yx7wYSWR4p3ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 37, tzinfo=datetime.timezone.utc), 1, 3.75, -73.990287, 40.733938, -73.960788, 40.780092, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'jwoBDE9spo8V0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 59, tzinfo=datetime.timezone.utc), 3, 3.46, -73.971608, 40.757188, -73.967618, 40.79381, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'WqEmaiz9nwQS5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 4, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 4, 49, tzinfo=datetime.timezone.utc), 1, 3.66, -73.983285, 40.721333, -73.974225, 40.687277, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'ce0D05E0R+w4kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 52, tzinfo=datetime.timezone.utc), 1, 3.25, -73.96488, 40.808563, -73.983172, 40.771558, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'goEONoYi2HOwUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 30, tzinfo=datetime.timezone.utc), 5, 4.38, -73.872075, 40.773827, -73.854222, 40.732845, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'QIGxgEGKBkaj7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 25, tzinfo=datetime.timezone.utc), 1, 3.68, -73.977307, 40.76079, -73.991967, 40.721655, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'S6qZlkw4Sjexmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 41, tzinfo=datetime.timezone.utc), 5, 3.49, -73.986618, 40.759412, -73.945035, 40.775887, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'HIiFmeDe95V6Ew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 43, tzinfo=datetime.timezone.utc), 5, 3.73, -73.987948, 40.728225, -73.966597, 40.691613, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'jT4lgI/bBDtMDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 30, tzinfo=datetime.timezone.utc), 1, 3.51, -73.948967, 40.809273, -73.973908, 40.752952, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'J+fAfI+ih/PsDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 4, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 57, tzinfo=datetime.timezone.utc), 1, 4.4, -73.978563, 40.745138, -73.919898, 40.741323, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'WgmDz3L/yUIrqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 28, tzinfo=datetime.timezone.utc), 2, 3.05, -73.982573, 40.769228, -74.006812, 40.735612, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'nFwJI/YPT9MsJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 1, tzinfo=datetime.timezone.utc), 1, 3.56, -73.962542, 40.709948, -74.00716, 40.705852, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'hgC7JD1T16azVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 2, tzinfo=datetime.timezone.utc), 2, 3.92, -74.005558, 40.707893, -73.946778, 40.7143, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'Txovu2XdlN9dYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 5, 3, tzinfo=datetime.timezone.utc), 1, 3.9, -73.979072, 40.763292, -73.91841, 40.745092, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'S6vhIEdAj/b4Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 13, tzinfo=datetime.timezone.utc), 1, 3.08, -73.999572, 40.728395, -73.997568, 40.761073, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'ExqV7lglxwwiMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 3, 0.4, -73.948778, 40.777577, -73.981697, 40.740737, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'm0gzywzKWKWnLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 22, tzinfo=datetime.timezone.utc), 2, 3.95, -73.993337, 40.74221, -73.973652, 40.791875, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'Nw/X9IIrNim5Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 4, tzinfo=datetime.timezone.utc), 2, 3.18, -73.981845, 40.763582, -74.006712, 40.735743, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'lN8d3qnlYojDFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 22, tzinfo=datetime.timezone.utc), 1, 3.42, -73.950618, 40.771495, -73.991533, 40.76489, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'TnWYZ+XvfPvewg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 48, tzinfo=datetime.timezone.utc), 5, 3.2, -73.987378, 40.71843, -73.972295, 40.695355, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'dgNWAd5kreePvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 20, tzinfo=datetime.timezone.utc), 1, 3.52, -73.95529, 40.690613, -73.903628, 40.682037, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'pmjJX3qq21wn3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 5, tzinfo=datetime.timezone.utc), 3, 3.54, -73.982733, 40.769285, -73.999038, 40.732383, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'uP0nvyR7IZ184w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 4, tzinfo=datetime.timezone.utc), 2, 3.21, -73.982238, 40.771853, -73.960052, 40.76769, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'SP+IUjhMctRQZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 4, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 4, 30, tzinfo=datetime.timezone.utc), 2, 4.22, -73.987648, 40.76043, -73.945303, 40.799323, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'LZ8/+vEQnFgs4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 1, 39, tzinfo=datetime.timezone.utc), 2, 3.8, -73.989682, 40.757777, -73.947268, 40.78018, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'TonqdyKXwXK9JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 39, tzinfo=datetime.timezone.utc), 5, 3.61, -73.98659, 40.722238, -73.973735, 40.687693, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', '2h7EG5bJYi20XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 11, tzinfo=datetime.timezone.utc), 3, 3.48, -73.983708, 40.766172, -73.929535, 40.756603, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'ZDs/w9Dl8pxNOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 50, tzinfo=datetime.timezone.utc), 1, 3.24, -74.003747, 40.722518, -73.979527, 40.763512, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'znMbp45mwR8knw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 12, tzinfo=datetime.timezone.utc), 1, 4.1, -73.988432, 40.737543, -73.96958, 40.785087, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'mByepvm9alJWKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 0, tzinfo=datetime.timezone.utc), 3, 3.34, -73.989378, 40.740607, -74.014955, 40.716308, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'zRqO0QA2f9/nag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 47, tzinfo=datetime.timezone.utc), 5, 3.64, -74.004313, 40.707723, -73.985852, 40.731148, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'Svt/47ye8T2dcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 54, tzinfo=datetime.timezone.utc), 1, 3.15, -73.99332, 40.74732, -74.007132, 40.708217, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'Z8ayhgRKiUN+jA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 13, tzinfo=datetime.timezone.utc), 1, 4.25, -73.989482, 40.719082, -73.957765, 40.766532, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'lBE/CLvxoUiFrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 42, tzinfo=datetime.timezone.utc), 2, 3.15, -74.00517, 40.740837, -73.972228, 40.756537, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'X6Lowie5tczlzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 29, tzinfo=datetime.timezone.utc), 4, 4.13, -73.990255, 40.76101, -73.942678, 40.786067, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'p66IqW1ASdAOGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 18, tzinfo=datetime.timezone.utc), 1, 3.76, -73.993617, 40.729112, -73.969113, 40.694805, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', '8U93eiUhNDua6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 39, tzinfo=datetime.timezone.utc), 1, 4.33, -73.86298, 40.769295, -73.993015, 40.693095, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'VCX/OO5an6vAcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 40, tzinfo=datetime.timezone.utc), 2, 3.79, -74.006443, 40.714093, -73.97381, 40.683198, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'sdBbTnAu42xDng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 41, tzinfo=datetime.timezone.utc), 2, 3.78, -73.987143, 40.756557, -73.950142, 40.789645, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', '9eTuZg3YnYj1rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 40, tzinfo=datetime.timezone.utc), 4, 4.23, -73.982018, 40.77394, -73.94912, 40.827592, 'CASH', 11.7, 0.5, 0.0, 0.0, 12.2, '1705685161.48292', 'cZsFlx+/vsAAGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 31, tzinfo=datetime.timezone.utc), 5, 1.69, -73.964163, 40.768832, -73.981177, 40.750697, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', '2ChORPxBQ3irpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 46, tzinfo=datetime.timezone.utc), 5, 3.89, -74.016262, 40.714702, -73.98856, 40.756597, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'nMGFN1GzaqUIYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 4, tzinfo=datetime.timezone.utc), 2, 2.91, -73.975327, 40.760982, -73.99241, 40.72514, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'MhU14FO3B1yyJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 43, tzinfo=datetime.timezone.utc), 1, 2.97, -73.97745, 40.78948, -73.980493, 40.759075, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'GS1wNMrhDE3rmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 35, tzinfo=datetime.timezone.utc), 1, 1.51, -73.97288, 40.757185, -73.991433, 40.750188, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', '4XdU9XiPKARWTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 9, tzinfo=datetime.timezone.utc), 5, 1.9, -73.95859, 40.764475, -73.983865, 40.760867, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'cZ7hW2KZmdc9OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 32, tzinfo=datetime.timezone.utc), 1, 3.5, -73.974682, 40.750385, -73.98171, 40.784507, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', '5vSN5Jm4ayWHrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 52, tzinfo=datetime.timezone.utc), 1, 2.36, -73.955423, 40.765888, -73.978207, 40.782653, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'LY0dEJdh9DFOUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 10, tzinfo=datetime.timezone.utc), 2, 3.82, -73.967705, 40.762907, -73.966207, 40.804635, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', '+bfnm33/+do3Wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 24, tzinfo=datetime.timezone.utc), 1, 3.52, -73.961077, 40.76938, -73.96118, 40.806372, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'eu4x/oiDw1/yJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 12, tzinfo=datetime.timezone.utc), 2, 0.32, -73.95065, 40.771622, -73.985342, 40.763642, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'JMoac4c9CNqlcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 7, tzinfo=datetime.timezone.utc), 2, 2.8, -73.967332, 40.77236, -73.995928, 40.744192, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'd82FDh+O+dTIOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 39, tzinfo=datetime.timezone.utc), 2, 2.1, -73.971202, 40.75769, -73.99342, 40.750072, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'HhvJpiJolBwsVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 43, tzinfo=datetime.timezone.utc), 3, 1.27, -73.991998, 40.74955, -73.986218, 40.759215, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'oztL7JRaFDeQyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 48, tzinfo=datetime.timezone.utc), 1, 1.89, -73.954383, 40.78415, -73.972497, 40.76091, 'CASH', 11.7, 1.0, 0.0, 0.0, 12.7, '1705685161.48292', 'MVVPDbzpYQwdfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 58, tzinfo=datetime.timezone.utc), 1, 4.55, -73.781848, 40.644767, -73.79524, 40.679342, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'WL0GKobyJMnP0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 3, tzinfo=datetime.timezone.utc), 1, 3.48, -73.990042, 40.757353, -73.951772, 40.781817, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'Sx0PLmxHZA3bEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 39, tzinfo=datetime.timezone.utc), 1, 4.04, -73.99448, 40.745403, -74.01428, 40.70436, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'zO1L8WRTFfakMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 58, tzinfo=datetime.timezone.utc), 1, 2.57, -73.975665, 40.748953, -73.97625, 40.7758, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'GudEQTmzRxt8TA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 55, tzinfo=datetime.timezone.utc), 1, 3.86, -73.97381, 40.784317, -73.987838, 40.738387, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'EheMqsR26dCsPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 42, tzinfo=datetime.timezone.utc), 1, 3.58, -73.968737, 40.753642, -74.00598, 40.735428, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'pHgNAMTtgemKZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 50, tzinfo=datetime.timezone.utc), 5, 3.75, 0.0, 0.0, 0.0, 0.0, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'DRDqyEzNVSEsxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 10, 27, tzinfo=datetime.timezone.utc), 1, 4.37, -73.95099, 40.777612, -73.928317, 40.759743, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'yRhRrjXOyIjsuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 59, tzinfo=datetime.timezone.utc), 1, 3.85, -74.000033, 40.721385, -73.978255, 40.765793, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'TMI+OjdNNBuGJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 16, 36, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 53, 51, tzinfo=datetime.timezone.utc), 1, 4.5, -74.008271, 40.72179, -73.965488, 40.75665, 'Cash', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'nNsB+MNbzr5l2g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 34, tzinfo=datetime.timezone.utc), 1, 3.84, -73.960183, 40.770333, -74.002203, 40.748553, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'OpWeNAAjV3D5WA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 48, tzinfo=datetime.timezone.utc), 1, 4.56, -73.96161, 40.760228, -73.99987, 40.729418, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'UGNbxdT2OaDphw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 37, tzinfo=datetime.timezone.utc), 5, 5.32, -73.970762, 40.751785, -74.008787, 40.704158, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'c2t3009gDpfcyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 11, tzinfo=datetime.timezone.utc), 5, 3.22, -73.966435, 40.760998, -73.985958, 40.744247, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'K27Jt5+F1GMi3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 13, 19, tzinfo=datetime.timezone.utc), 1, 4.39, -73.98646, 40.745678, -74.00327, 40.70632, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'jtGS/8Vf87bHpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 14, tzinfo=datetime.timezone.utc), 2, 3.86, -73.987368, 40.76064, -73.945648, 40.78872, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', '9owTpEPCvUa1Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 51, tzinfo=datetime.timezone.utc), 5, 3.06, -73.973622, 40.750672, -74.005343, 40.728265, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'TUzXZrkjjkbrqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 44, tzinfo=datetime.timezone.utc), 1, 3.47, -73.990962, 40.765937, -73.991662, 40.729905, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', '0DEbicKlqAd0QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 2, tzinfo=datetime.timezone.utc), 2, 3.61, -73.980215, 40.783847, -73.978928, 40.744492, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'HYPuAe1xRQzqog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 39, tzinfo=datetime.timezone.utc), 1, 4.83, -73.972872, 40.793148, -73.99473, 40.750422, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'nK4Ob/pJtknrDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 42, tzinfo=datetime.timezone.utc), 5, 3.11, -73.988568, 40.723305, -73.97178, 40.7599, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', 'IyybS8fdWFJ9UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 56, tzinfo=datetime.timezone.utc), 1, 3.85, -73.994545, 40.7313, -73.954033, 40.764037, 'CASH', 13.7, 0.0, 0.0, 0.0, 13.7, '1705685161.48292', '7ODLrW3tWjEs+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 10, tzinfo=datetime.timezone.utc), 2, 3.33, -73.993327, 40.720028, -73.938682, 40.700408, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'kT1YOLR8RjNFAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 4, 14, tzinfo=datetime.timezone.utc), 2, 4.66, -74.00437, 40.742365, -73.956097, 40.771485, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'M+8d98RMCMNlaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 44, tzinfo=datetime.timezone.utc), 1, 4.27, -73.950702, 40.779478, -73.987952, 40.727078, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '7qt0o6YXjt9+og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 36, tzinfo=datetime.timezone.utc), 1, 4.5, -74.008273, 40.736372, -73.955247, 40.765603, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'uWH3PDBkBFgefw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 49, tzinfo=datetime.timezone.utc), 1, 3.86, -73.978447, 40.762585, -74.009128, 40.716567, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '1Bv8xj+p2vrfDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 28, tzinfo=datetime.timezone.utc), 5, 4.17, -73.99083, 40.72764, -73.971725, 40.676105, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'gOZ/8uWIJ6b8rg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 16, tzinfo=datetime.timezone.utc), 3, 2.96, -74.003732, 40.74831, -74.01083, 40.718902, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'rlopgTI2LGNFwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 53, tzinfo=datetime.timezone.utc), 1, 0.4, -73.9877, 40.732585, -74.01726, 40.705168, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'raEx7lHmWjQ74g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 24, tzinfo=datetime.timezone.utc), 5, 3.7, 0.0, 0.0, 0.0, 0.0, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'yFGqel2ziISu+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 16, tzinfo=datetime.timezone.utc), 2, 4.71, -73.991958, 40.764437, -74.01586, 40.705525, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'pFOGXHl0x329Xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 36, tzinfo=datetime.timezone.utc), 2, 4.52, -73.960127, 40.781993, -73.994382, 40.726753, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'jqui9aXOkFoXtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 55, tzinfo=datetime.timezone.utc), 5, 4.05, -73.979228, 40.7239, -73.948652, 40.726007, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'aWsbChTBsoBGDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 41, tzinfo=datetime.timezone.utc), 1, 2.69, -73.972862, 40.753297, -73.95289, 40.771987, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '3X23onwH5DljCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 25, tzinfo=datetime.timezone.utc), 5, 3.79, -73.962492, 40.77885, -74.003952, 40.747597, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'bI/bW4vb9u6O+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 2, 45, tzinfo=datetime.timezone.utc), 5, 4.27, -73.991813, 40.725993, -73.97207, 40.670337, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'YRUXFnUxBccYZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 44, tzinfo=datetime.timezone.utc), 6, 4.98, -73.98298, 40.771772, -74.017027, 40.711322, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'l6hQYNo7bSoD4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 23, tzinfo=datetime.timezone.utc), 1, 4.81, -73.966243, 40.773857, -73.908658, 40.760898, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '/RBcAq6gZ85NLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 49, tzinfo=datetime.timezone.utc), 4, 4.63, -73.951503, 40.784922, -73.933582, 40.763325, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'wR8QotP/17uYLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 10, tzinfo=datetime.timezone.utc), 1, 5.1, -74.00149, 40.730888, -73.948693, 40.778203, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'i6YRrLZDaJw8lQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 46, tzinfo=datetime.timezone.utc), 1, 2.39, -74.005597, 40.740468, -73.982368, 40.765058, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'hOz+uYfERjfxFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 31, tzinfo=datetime.timezone.utc), 5, 4.84, -73.977645, 40.786877, -74.011055, 40.728957, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'UOjIj9VuymGlbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 5, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 49, tzinfo=datetime.timezone.utc), 1, 5.37, -73.978515, 40.737957, -73.921285, 40.76332, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '2IWFRcm1OBRQpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 50, tzinfo=datetime.timezone.utc), 1, 3.23, -73.980987, 40.763308, -74.003692, 40.729192, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'g+OjwRFOPJgEMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 46, tzinfo=datetime.timezone.utc), 1, 4.08, -73.96405, 40.771155, -74.005552, 40.731408, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', 'vR2y7+Kj2Al4pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), 3, 4.12, -73.978815, 40.788035, -73.96728, 40.74991, 'CASH', 13.7, 0.5, 0.0, 0.0, 14.2, '1705685161.48292', '4i/eJpT5ZoxnTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 37, tzinfo=datetime.timezone.utc), 2, 3.84, -73.996282, 40.716368, -73.979787, 40.761932, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'Kb6cDpxs7+kITw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 9, tzinfo=datetime.timezone.utc), 2, 3.02, -73.945867, 40.774233, -73.980567, 40.754332, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'LLIqJAhef2GrHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 52, tzinfo=datetime.timezone.utc), 1, 3.49, -73.966503, 40.80426, -73.967893, 40.768412, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'j1kafXIMm7mssA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 23, tzinfo=datetime.timezone.utc), 3, 3.65, -73.991245, 40.75559, -74.009127, 40.709482, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'przkyr/ispsAeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 16, tzinfo=datetime.timezone.utc), 2, 2.91, -73.955208, 40.774427, -73.991948, 40.759895, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', '54Z2BK4w2UcGpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 38, tzinfo=datetime.timezone.utc), 1, 3.11, -73.993335, 40.727728, -73.976, 40.764428, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'kot6njXbDNIevg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 7, tzinfo=datetime.timezone.utc), 1, 3.76, -73.99848, 40.760772, -74.01606, 40.711343, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', '9VAFolB4RbvgTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 31, tzinfo=datetime.timezone.utc), 1, 4.42, -74.01521, 40.715913, -73.988113, 40.763095, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'MsYYDvZ3G1NoRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 55, tzinfo=datetime.timezone.utc), 1, 4.56, -73.947672, 40.790458, -73.937697, 40.753367, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'vtZzNwzfCmJSRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 30, tzinfo=datetime.timezone.utc), 1, 4.39, -73.958103, 40.764892, -73.958278, 40.81056, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'lI/gmf68EYZV5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 42, tzinfo=datetime.timezone.utc), 5, 3.84, -73.960065, 40.762128, -73.996148, 40.736113, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', '7n9uU59QVrQm9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 45, tzinfo=datetime.timezone.utc), 1, 3.13, -73.963175, 40.781935, -73.963175, 40.781935, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'jFHp2cnPpmPPXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 43, tzinfo=datetime.timezone.utc), 2, 4.07, -74.016105, 40.714667, -73.983912, 40.749818, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', '2zj2lH0X71TDSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 15, tzinfo=datetime.timezone.utc), 1, 0.53, -74.010937, 40.701912, -73.965775, 40.754252, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'z/lDoMr009mDHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 46, tzinfo=datetime.timezone.utc), 1, 4.92, -73.977922, 40.753437, -74.006802, 40.706587, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'yWJTPvXM0VCydA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 19, tzinfo=datetime.timezone.utc), 5, 4.85, -73.954373, 40.78974, -73.979455, 40.738985, 'CASH', 13.7, 1.0, 0.0, 0.0, 14.7, '1705685161.48292', 'Ii+JbsK2yenKjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 33, tzinfo=datetime.timezone.utc), 3, 4.07, -73.96646, 40.773257, -74.006498, 40.737988, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'yLFcNs9x8cHzag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 14, tzinfo=datetime.timezone.utc), 1, 4.48, -73.971425, 40.76365, -74.009097, 40.716913, 'Credit', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'vcDaQn4kp5zrOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 35, tzinfo=datetime.timezone.utc), 4, 4.32, -73.978987, 40.744608, -73.964887, 40.791422, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'MvhW+Aa1c0EiZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 23, tzinfo=datetime.timezone.utc), 2, 6.12, -73.953468, 40.767233, -74.005502, 40.70571, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'MTTWw6Wez6RBFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 56, tzinfo=datetime.timezone.utc), 1, 2.72, -73.973677, 40.784463, -73.991823, 40.75, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', '+53bmGAnIRSGAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 21, tzinfo=datetime.timezone.utc), 1, 5.31, -73.986182, 40.77248, -74.003565, 40.715927, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'ibr8EjbqkwO4vA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 22, tzinfo=datetime.timezone.utc), 1, 5.74, -73.981177, 40.747027, -73.988533, 40.701128, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'uliIlDhBlhDKNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 59, tzinfo=datetime.timezone.utc), 1, 4.59, -73.969252, 40.79824, -74.00667, 40.744008, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'n5XEqXmXrrH+oQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 44, tzinfo=datetime.timezone.utc), 1, 3.55, -73.94949, 40.785052, -73.983343, 40.761803, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'ZEbVNImtDsTIQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 17, tzinfo=datetime.timezone.utc), 4, 3.89, -73.970013, 40.79721, -73.992747, 40.747958, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', '16y17Er9+UvyrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 20, tzinfo=datetime.timezone.utc), 5, 4.95, -73.990817, 40.766085, -73.914207, 40.746118, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'AHAam0/RuagGLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 44, tzinfo=datetime.timezone.utc), 1, 3.35, -73.966072, 40.760518, -74.006832, 40.748968, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'xR+T4W/zifudHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 34, tzinfo=datetime.timezone.utc), 5, 4.02, -73.936503, 40.767628, -73.926063, 40.741998, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'siKIf0mCEeZ1/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 27, tzinfo=datetime.timezone.utc), 5, 4.84, -73.980833, 40.729782, -73.985543, 40.780453, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'n4SSiN8f+sz1nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 15, 20, tzinfo=datetime.timezone.utc), 3, 4.0, -73.98854, 40.753612, -73.952695, 40.791583, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'hUs0W346+VhLrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 14, tzinfo=datetime.timezone.utc), 1, 4.1, -73.982435, 40.739755, -73.953783, 40.789602, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'KTIVM7QOlVgvSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 24, tzinfo=datetime.timezone.utc), 5, 4.49, -73.969723, 40.757082, -73.950607, 40.80999, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'zmjkNt3UTEIMrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 17, tzinfo=datetime.timezone.utc), 1, 4.9, -74.015462, 40.71819, -73.974552, 40.759002, 'CASH', 15.7, 0.0, 0.0, 0.0, 15.7, '1705685161.48292', 'fxZ76DdqGjS4IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 50, tzinfo=datetime.timezone.utc), 1, 6.36, -73.9682, 40.768315, -73.983063, 40.739063, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', '/GdfAyuPP4kTqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 9, tzinfo=datetime.timezone.utc), 1, 4.84, -74.003747, 40.723643, -73.965787, 40.677607, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'jRbcdWNA4Y4F8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 15, tzinfo=datetime.timezone.utc), 2, 3.79, -73.731447, 40.589165, -73.736218, 40.57829, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'MNQsxL11/lVbJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 2, 48, tzinfo=datetime.timezone.utc), 1, 6.41, -73.967403, 40.80333, -74.0034, 40.737507, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'uFxezFvzBrRQ1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 19, tzinfo=datetime.timezone.utc), 1, 6.75, -73.8721, 40.774095, -73.95, 40.717952, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'jJjyqCwaY8dcAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 11, tzinfo=datetime.timezone.utc), 2, 6.36, -73.978277, 40.760287, -73.985203, 40.687033, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'y54DGGDA8deZXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 15, tzinfo=datetime.timezone.utc), 1, 5.96, -73.965472, 40.710612, -74.00483, 40.740678, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'bS2BwQGw6g1WjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 1, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 2, 8, tzinfo=datetime.timezone.utc), 5, 5.27, -73.991, 40.727912, -73.946612, 40.77684, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'SwS4Xbx6PF1NWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 26, tzinfo=datetime.timezone.utc), 1, 5.86, -73.976778, 40.748423, -73.907207, 40.776235, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'vMEpR9G9x1X1Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 43, tzinfo=datetime.timezone.utc), 3, 5.99, -73.998165, 40.760975, -73.994378, 40.697793, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'mJGDw9phhNVhPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 4, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 4, 45, tzinfo=datetime.timezone.utc), 5, 6.14, -74.0003, 40.730925, -73.916882, 40.70298, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'GpkWus+AVjRXKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 6, tzinfo=datetime.timezone.utc), 1, 5.54, -73.995797, 40.726665, -73.94146, 40.676795, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'vO5aFMXSm60zHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 52, tzinfo=datetime.timezone.utc), 5, 5.1, -74.001857, 40.735813, -73.95882, 40.780963, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', '5asvUTZMaT/Czg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 32, tzinfo=datetime.timezone.utc), 1, 5.94, 0.0, 0.0, 0.0, 0.0, 'CASH', 16.9, 0.5, 0.0, 0.0, 17.4, '1705685161.48292', 'abroMssgdPcr6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 0, 20, tzinfo=datetime.timezone.utc), 5, 6.72, 0.0, 0.0, 0.0, 0.0, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'oGhiZ7rnrLIj3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 31, tzinfo=datetime.timezone.utc), 3, 6.33, -73.988777, 40.742648, -73.992343, 40.666222, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'ZGY0Uosq+CXlgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 51, tzinfo=datetime.timezone.utc), 5, 7.57, -73.956857, 40.766415, -73.989877, 40.701357, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'BidzWsXQxdpyrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 59, tzinfo=datetime.timezone.utc), 1, 5.62, -73.98546, 40.761342, -73.917145, 40.77554, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'IVLXjbgaj+b6qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 4, tzinfo=datetime.timezone.utc), 5, 7.01, -73.989895, 40.767218, -73.969867, 40.69307, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'Tq1nyf27hEsQow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 30, tzinfo=datetime.timezone.utc), 1, 4.96, -74.000412, 40.7477, -73.951432, 40.779207, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'R3ufUkCx8QtIZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 20, tzinfo=datetime.timezone.utc), 2, 6.25, -74.004495, 40.721548, -73.991727, 40.680673, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'Ckbr+hZoKHqdcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 20, tzinfo=datetime.timezone.utc), 5, 5.55, -73.981298, 40.781005, -74.011575, 40.707755, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'QV/27vZhuIGOdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 4, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 5, 11, tzinfo=datetime.timezone.utc), 1, 7.12, -73.990303, 40.758208, -73.949877, 40.826913, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'll8bNfMAMCnWgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 51, tzinfo=datetime.timezone.utc), 5, 7.56, -73.986352, 40.761362, -73.992565, 40.695957, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'tJhLi2iLTViGPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 8, tzinfo=datetime.timezone.utc), 2, 6.0, -74.005307, 40.73341, -73.983782, 40.740397, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'ivnooN7IdrnFbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 55, tzinfo=datetime.timezone.utc), 5, 7.41, -73.789793, 40.647748, -73.867632, 40.693782, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'rQNILHZNfZYKXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 5, tzinfo=datetime.timezone.utc), 1, 7.34, -73.975888, 40.748758, -73.94173, 40.826905, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', 'uhqDvYrUk0LLWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 31, tzinfo=datetime.timezone.utc), 1, 6.18, -73.978383, 40.789092, -73.984972, 40.724358, 'CASH', 18.9, 0.5, 0.0, 0.0, 19.4, '1705685161.48292', '0s3DtByRhfg03w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 0, tzinfo=datetime.timezone.utc), 2, 6.72, -74.005595, 40.738067, -73.974768, 40.655172, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'gE/bjCGTzotqqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 26, tzinfo=datetime.timezone.utc), 1, 8.0, -73.971755, 40.75034, -73.966395, 40.67595, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'dKvkTvCj7KijfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 14, tzinfo=datetime.timezone.utc), 1, 8.77, -74.002295, 40.730043, -74.020472, 40.63485, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'xeFzKDeRam9Ytw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 17, tzinfo=datetime.timezone.utc), 1, 8.32, -74.005692, 40.740033, -73.913125, 40.765167, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'IXC4rzitW1U6cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 5, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 6, 4, tzinfo=datetime.timezone.utc), 3, 8.7, -74.003758, 40.732268, -74.014447, 40.634447, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'ZljvmahJUZgJJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 48, tzinfo=datetime.timezone.utc), 5, 6.85, -74.006088, 40.733093, -73.9941, 40.749083, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'lnW3TrioI/cCbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 0, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 13, tzinfo=datetime.timezone.utc), 2, 5.28, -73.976587, 40.739608, -73.959517, 40.798767, 'CASH', 20.9, 0.5, 0.0, 0.0, 21.4, '1705685161.48292', 'V3JbWsWRU9poJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 21, tzinfo=datetime.timezone.utc), 1, 8.28, -73.973958, 40.789183, -73.996608, 40.692418, 'CASH', 22.9, 0.5, 0.0, 0.0, 23.4, '1705685161.48292', 'EnoqsjOhjVo7pA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 2, 27, tzinfo=datetime.timezone.utc), 1, 6.97, -73.986377, 40.756132, -73.914453, 40.808018, 'CASH', 22.9, 0.5, 0.0, 0.0, 23.4, '1705685161.48292', 'rzoHjyiX75TeUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 47, tzinfo=datetime.timezone.utc), 5, 11.11, -73.870908, 40.773723, -73.798355, 40.644407, 'CASH', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685161.48292', 'HTlykBG4//vuug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 20, tzinfo=datetime.timezone.utc), 2, 9.54, -73.994485, 40.744537, -73.941663, 40.843228, 'Credit', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685161.48292', 'gROGrIGvAgjABA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 2, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 2, 32, tzinfo=datetime.timezone.utc), 2, 10.52, -73.995352, 40.715952, -73.937472, 40.829142, 'Credit', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685161.48292', 'O/yNylQSpnrTIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 2, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 3, 8, tzinfo=datetime.timezone.utc), 1, 10.42, -74.002222, 40.734448, -74.028112, 40.625942, 'CASH', 24.9, 0.5, 0.0, 0.0, 25.4, '1705685161.48292', 'F0izE+81g25Iig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 38, tzinfo=datetime.timezone.utc), 1, 10.11, -73.99978, 40.734395, -73.876593, 40.760237, 'CASH', 26.9, 0.5, 0.0, 0.0, 27.4, '1705685161.48292', 'OCRPyGjtEfdKSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 4, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 56, tzinfo=datetime.timezone.utc), 1, 8.26, -73.990728, 40.724488, -73.969142, 40.797928, 'CASH', 26.9, 0.5, 0.0, 0.0, 27.4, '1705685161.48292', 'vh+G0pisi+jcew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), 2, 12.17, -73.992735, 40.753757, -73.855062, 40.840613, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685161.48292', 'JFjqIFDpmAUZeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 11, tzinfo=datetime.timezone.utc), 1, 9.65, -73.999505, 40.71766, -73.957932, 40.803503, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685161.48292', 'R8CrgMm6aKQpFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 16, tzinfo=datetime.timezone.utc), 1, 12.69, -73.964297, 40.764593, -73.866687, 40.852965, 'CASH', 28.9, 0.5, 0.0, 0.0, 29.4, '1705685161.48292', 'I40CO4AVDMF5Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 58, tzinfo=datetime.timezone.utc), 1, 13.07, -73.98994, 40.756693, -73.93913, 40.618787, 'CASH', 30.9, 0.5, 0.0, 0.0, 31.4, '1705685161.48292', 'BJQanl0SC4Zocw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 29, tzinfo=datetime.timezone.utc), 5, 12.06, -74.004772, 40.706643, -73.954372, 40.576823, 'CASH', 30.9, 0.5, 0.0, 0.0, 31.4, '1705685161.48292', 'gRlCWbVMKBsY0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 27, tzinfo=datetime.timezone.utc), 5, 10.16, -73.862855, 40.768797, -73.966702, 40.794107, 'CASH', 28.9, 0.0, 0.0, 4.15, 33.05, '1705685161.48292', '7HSWh8guyOx+nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 34, tzinfo=datetime.timezone.utc), 1, 14.72, -74.009293, 40.711667, -73.8721, 40.773288, 'CASH', 32.9, 0.0, 0.0, 4.15, 37.05, '1705685161.48292', 'ioJQ27xucNf3vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 43, tzinfo=datetime.timezone.utc), 1, 16.46, -73.98433, 40.724955, -73.98586, 40.594298, 'CASH', 36.9, 0.0, 0.0, 4.15, 41.05, '1705685161.48292', 'JqyNGCTv1JkBqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 49, tzinfo=datetime.timezone.utc), 1, 16.59, -73.86344, 40.769753, -74.00767, 40.704853, 'CASH', 36.9, 0.0, 0.0, 4.15, 41.05, '1705685161.48292', 'NILcy6gw3ZJb6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 50, tzinfo=datetime.timezone.utc), 2, 16.58, -73.990612, 40.756188, -73.980322, 40.614912, 'CASH', 42.9, 0.0, 0.0, 4.15, 47.05, '1705685161.48292', 'HQfjMZjBhkYXXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 29, tzinfo=datetime.timezone.utc), 5, 2.82, -73.968777, 40.750863, -73.954005, 40.74251, 'CASH', 14.5, 0.0, 0.0, 4.15, 18.65, '1705685161.48292', '0+ckaAIRioy/zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 40, tzinfo=datetime.timezone.utc), 1, 8.75, -73.87224, 40.773825, -73.954068, 40.765972, 'CASH', 20.5, 0.0, 0.0, 4.15, 24.65, '1705685161.48292', '4iP4wPZR0Jrnog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 29, tzinfo=datetime.timezone.utc), 1, 8.25, -73.864202, 40.771538, -73.9469, 40.780197, 'CASH', 20.5, 1.0, 0.0, 4.15, 25.65, '1705685161.48292', 'gZv+9tJFn+Zi0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 7, tzinfo=datetime.timezone.utc), 2, 9.32, -73.978332, 40.74916, -73.861883, 40.768513, 'CASH', 22.5, 0.0, 0.0, 4.15, 26.65, '1705685161.48292', 'H5HSlanbtuAelQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 28, tzinfo=datetime.timezone.utc), 1, 9.36, -73.988815, 40.736687, -73.87061, 40.773878, 'CASH', 22.5, 0.0, 0.0, 4.15, 26.65, '1705685161.48292', 'yAdGa1Bm5As28Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 44, tzinfo=datetime.timezone.utc), 1, 9.06, -73.862902, 40.768987, -73.983773, 40.749213, 'CASH', 22.5, 1.0, 0.0, 4.15, 27.65, '1705685161.48292', '6nMMCScVd9U4IQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 47, tzinfo=datetime.timezone.utc), 2, 9.44, -73.874513, 40.774112, -73.985053, 40.729123, 'CASH', 22.5, 1.0, 0.0, 4.15, 27.65, '1705685161.48292', '8QYr4kHEcQrUqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 51, tzinfo=datetime.timezone.utc), 1, 9.17, -73.947157, 40.784373, -73.861392, 40.768078, 'CASH', 24.5, 1.0, 0.0, 4.15, 29.65, '1705685161.48292', 'avYZL5a058ev2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 20, tzinfo=datetime.timezone.utc), 4, 9.31, -73.977947, 40.788758, -73.872188, 40.774283, 'CASH', 26.5, 0.0, 0.0, 4.15, 30.65, '1705685161.48292', 'vTJRkzHPzm/gcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 49, tzinfo=datetime.timezone.utc), 5, 10.61, -73.978112, 40.773125, -73.86551, 40.770883, 'CASH', 26.5, 0.0, 0.0, 4.15, 30.65, '1705685161.48292', 'ubYkLZ4YNbEF0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 43, tzinfo=datetime.timezone.utc), 1, 11.36, -73.978398, 40.759847, -73.861962, 40.76857, 'CASH', 26.5, 0.0, 0.0, 4.15, 30.65, '1705685161.48292', 'B/Zyj6u4NCrE1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 0, tzinfo=datetime.timezone.utc), 1, 14.0, -73.871133, 40.774142, -73.776457, 40.644982, 'CASH', 33.3, 0.0, 0.0, 0.0, 33.3, '1705685161.48292', 'bIbftu8rSTfvxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 10, 8, tzinfo=datetime.timezone.utc), 1, 12.57, -73.99799, 40.729123, -73.996343, 40.731013, 'Credit', 33.3, 0.0, 0.0, 0.0, 33.3, '1705685161.48292', 'FWeC0Uc71i4grA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 2, tzinfo=datetime.timezone.utc), 1, 14.96, -73.789558, 40.647307, -73.954915, 40.579187, 'CASH', 33.3, 0.0, 0.0, 0.0, 33.3, '1705685161.48292', 'vzZ+9JqXdc4jRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 47, tzinfo=datetime.timezone.utc), 1, 14.09, -73.98211, 40.762822, -74.000155, 40.629852, 'CASH', 33.3, 0.0, 0.0, 0.0, 33.3, '1705685161.48292', '7o1vcFI7DHt13g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 47, tzinfo=datetime.timezone.utc), 1, 17.85, -73.782067, 40.644778, -73.993628, 40.573108, 'CASH', 39.3, 0.0, 0.0, 0.0, 39.3, '1705685161.48292', '44Q7HpDdDoVv4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 15, tzinfo=datetime.timezone.utc), 2, 17.63, -73.865225, 40.770443, -73.949465, 40.656305, 'CASH', 51.3, 0.0, 0.0, 0.0, 51.3, '1705685161.48292', '6DvW1pZcRNKz+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 37, tzinfo=datetime.timezone.utc), 1, 14.71, -74.01164, 40.707928, -73.953385, 40.576887, 'CASH', 32.9, 0.5, 0.0, 4.15, 37.55, '1705685161.48292', 'a9pVlHjxDf+lHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 6, tzinfo=datetime.timezone.utc), 2, 1.89, -74.00047, 40.677652, -74.00607, 40.681643, 'CASH', 7.3, 0.5, 0.0, 4.15, 11.95, '1705685161.48292', '6rMxl9M3XRzAfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 13, tzinfo=datetime.timezone.utc), 1, 3.84, -73.975478, 40.751802, -73.953308, 40.724973, 'CASH', 11.3, 0.0, 0.0, 4.15, 15.45, '1705685161.48292', '6490Dw9p4uawZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 31, tzinfo=datetime.timezone.utc), 1, 2.57, -73.968562, 40.755745, -73.949747, 40.780632, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'XTC3BAy2UufwRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 56, tzinfo=datetime.timezone.utc), 1, 5.41, -73.99024, 40.751467, -73.964048, 40.805505, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'Asi2c0GlzoztLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 29, tzinfo=datetime.timezone.utc), 1, 5.93, -73.98451, 40.741133, -73.996825, 40.697255, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'IxqoheRstgQsyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 59, tzinfo=datetime.timezone.utc), 5, 5.03, -74.00475, 40.721232, -73.98819, 40.77921, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '6SCVfsB7CEsgOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 14, tzinfo=datetime.timezone.utc), 3, 6.85, -73.950908, 40.810067, -73.87323, 40.774267, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'B04VrgxAj3DDzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 14, tzinfo=datetime.timezone.utc), 3, 2.47, -73.96036, 40.781695, -73.980595, 40.755978, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '+NyR5xriVuCtHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 45, tzinfo=datetime.timezone.utc), 1, 6.07, -74.016173, 40.707843, -73.981977, 40.751522, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'wYqNfTlOfAFYvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 4, tzinfo=datetime.timezone.utc), 3, 5.85, -73.977017, 40.790292, -73.995847, 40.725118, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '7qJ4cwLzeFJqMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 53, tzinfo=datetime.timezone.utc), 1, 4.05, -73.875325, 40.738605, -73.876978, 40.744848, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'YBNgDO6y5VMPSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 33, tzinfo=datetime.timezone.utc), 2, 6.54, -74.012772, 40.70251, -73.954352, 40.767322, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'ylkgTKf1VtTMPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 12, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 8, tzinfo=datetime.timezone.utc), 1, 3.4, -74.050135, 40.705673, -74.033825, 40.712722, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'nQ1yXGhdqV3u7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 37, tzinfo=datetime.timezone.utc), 1, 3.59, -74.003973, 40.747555, -73.960938, 40.767597, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'GF4hOHzyi1+Gqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 34, tzinfo=datetime.timezone.utc), 2, 3.24, -73.989557, 40.741658, -73.97068, 40.767512, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '7TlMOg4VcmkVrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 6, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 7, 10, tzinfo=datetime.timezone.utc), 1, 6.31, -73.988198, 40.748297, -73.959868, 40.67539, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'ShrV6+UoSvdYYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 51, tzinfo=datetime.timezone.utc), 4, 6.04, -73.960037, 40.77078, -74.002337, 40.72522, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'mlt6TozQdHD0MA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 41, tzinfo=datetime.timezone.utc), 5, 6.82, -73.863207, 40.769875, -73.80021, 40.782203, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '+kGnIP55HpIFuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 22, tzinfo=datetime.timezone.utc), 2, 3.37, -73.952845, 40.776437, -73.99031, 40.750635, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '67ufGTGntgrGAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 8, tzinfo=datetime.timezone.utc), 1, 6.7, -74.012002, 40.763958, -74.093543, 40.755323, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '4r7XAV0KnRHLLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 53, tzinfo=datetime.timezone.utc), 1, 6.58, -73.863525, 40.770052, -73.936525, 40.744307, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'YBdle6FDmd3z7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 21, tzinfo=datetime.timezone.utc), 2, 4.24, -73.997098, 40.720058, -73.967248, 40.772633, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'eaMXKvH2yDTPUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 25, tzinfo=datetime.timezone.utc), 1, 5.28, -73.983475, 40.760923, -74.016787, 40.70477, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'TdPzvs0OxcaUGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 41, tzinfo=datetime.timezone.utc), 1, 3.32, -73.960275, 40.773763, -73.990387, 40.75127, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', '7UTTqwlo9GMNEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 46, tzinfo=datetime.timezone.utc), 1, 5.87, -73.882947, 40.837283, -73.87493, 40.849637, 'CASH', 16.9, 0.0, 0.0, 0.0, 16.9, '1705685161.48292', 'dGdu93nRfXb/UA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 54, tzinfo=datetime.timezone.utc), 1, 3.4, -73.981838, 40.779407, -73.991038, 40.736043, 'CASH', 16.9, 1.0, 0.0, 0.0, 17.9, '1705685161.48292', '7MjxGiIelpUTEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 25, tzinfo=datetime.timezone.utc), 2, 4.75, -73.983603, 40.761675, -73.992083, 40.713403, 'CASH', 16.9, 1.0, 0.0, 0.0, 17.9, '1705685161.48292', 'pRpnZRNgyXIqBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 17, tzinfo=datetime.timezone.utc), 1, 5.93, -73.947665, 40.771057, -74.00223, 40.719062, 'CASH', 16.9, 1.0, 0.0, 0.0, 17.9, '1705685161.48292', 'xwZurSKxXpDuIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 23, tzinfo=datetime.timezone.utc), 6, 6.31, -73.99732, 40.725958, -73.968285, 40.79445, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'LLoNlMWNepMZ1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 8, tzinfo=datetime.timezone.utc), 1, 6.15, -73.996652, 40.716362, -73.980338, 40.761338, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'a121GeQVKJnhQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 53, tzinfo=datetime.timezone.utc), 1, 4.1, -73.993723, 40.751775, -73.999092, 40.714618, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'qDvhU+8+bnUMIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 41, tzinfo=datetime.timezone.utc), 4, 5.69, -73.988932, 40.726882, -73.969362, 40.78628, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'KeMNc3z8H3Mz6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 44, tzinfo=datetime.timezone.utc), 5, 6.1, -74.013793, 40.713635, -73.967255, 40.76956, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', '7+nx/nEhLz19gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 4, tzinfo=datetime.timezone.utc), 5, 5.49, -73.961925, 40.776225, -74.013798, 40.715395, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'i45oTKPAohqL0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 5, tzinfo=datetime.timezone.utc), 5, 5.28, -73.987827, 40.733608, -73.967213, 40.67366, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'Kl3yqcp3B/sxuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 44, tzinfo=datetime.timezone.utc), 5, 4.48, -74.01127, 40.70199, -74.002897, 40.76037, 'CASH', 18.9, 0.0, 0.0, 0.0, 18.9, '1705685161.48292', 'W+isUVoVPLitaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 42, tzinfo=datetime.timezone.utc), 1, 7.28, -73.970215, 40.762633, -74.01236, 40.716892, 'CASH', 18.9, 1.0, 0.0, 0.0, 19.9, '1705685161.48292', 'vpJcdfyhJbVSpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 34, tzinfo=datetime.timezone.utc), 5, 7.06, -73.968405, 40.756348, -74.01074, 40.715942, 'CASH', 18.9, 1.0, 0.0, 0.0, 19.9, '1705685161.48292', 'fJPzUShdM2HYLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 44, tzinfo=datetime.timezone.utc), 1, 5.99, -73.996343, 40.748177, -74.008943, 40.704025, 'CASH', 18.9, 1.0, 0.0, 0.0, 19.9, '1705685161.48292', '8QMxlaBQAVwaaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 1, tzinfo=datetime.timezone.utc), 1, 4.53, -73.979585, 40.737325, -73.994078, 40.718267, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', 'Q/Yl38fqi6dvug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 47, tzinfo=datetime.timezone.utc), 3, 4.39, -73.97224, 40.761967, -73.99785, 40.720363, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', 'NM94whtxdu0qHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 13, tzinfo=datetime.timezone.utc), 2, 7.67, -73.978455, 40.684572, -73.980718, 40.75137, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', 'Pq0SGnPcDudHjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 35, tzinfo=datetime.timezone.utc), 1, 3.44, -73.987942, 40.728272, -73.98218, 40.762365, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', '7a7uHA7CikDnwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 43, tzinfo=datetime.timezone.utc), 5, 5.24, -73.94994, 40.780617, -74.000727, 40.725927, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', 'bzwFLnaK0rxtcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 14, tzinfo=datetime.timezone.utc), 1, 6.39, -73.959902, 40.76697, -74.0049, 40.717225, 'CASH', 20.9, 0.0, 0.0, 0.0, 20.9, '1705685161.48292', 'YNoNWIdRM9XMMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 38, tzinfo=datetime.timezone.utc), 4, 6.65, -73.98263, 40.756925, -73.901253, 40.715003, 'CASH', 20.9, 1.0, 0.0, 0.0, 21.9, '1705685161.48292', '9LfoD2C6fg9XJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 19, tzinfo=datetime.timezone.utc), 2, 5.98, -73.992933, 40.73595, -73.963648, 40.682718, 'CASH', 20.9, 1.0, 0.0, 0.0, 21.9, '1705685161.48292', '/IUTkUiGqXTX3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 22, tzinfo=datetime.timezone.utc), 1, 6.57, -74.012933, 40.702548, -73.980233, 40.78391, 'CASH', 20.9, 1.0, 0.0, 0.0, 21.9, '1705685161.48292', 'HMhXHmvgOIn+vA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 5, tzinfo=datetime.timezone.utc), 1, 6.86, -73.88526, 40.772872, -73.97682, 40.754435, 'CASH', 22.9, 0.0, 0.0, 0.0, 22.9, '1705685161.48292', 'uPXsud5Y9f1hMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 53, tzinfo=datetime.timezone.utc), 2, 5.71, -73.981278, 40.77434, -74.001088, 40.714323, 'CASH', 22.9, 0.0, 0.0, 0.0, 22.9, '1705685161.48292', 'hZfQPT2O322TVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 44, tzinfo=datetime.timezone.utc), 5, 9.22, -73.994965, 40.739962, -73.885333, 40.77301, 'CASH', 22.9, 0.0, 0.0, 0.0, 22.9, '1705685161.48292', 'yDdSREz3jKKjuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 59, tzinfo=datetime.timezone.utc), 6, 6.11, -73.992713, 40.742842, -73.973742, 40.671538, 'CASH', 22.9, 1.0, 0.0, 0.0, 23.9, '1705685161.48292', 'utZkF9ZdAa1Hig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 18, tzinfo=datetime.timezone.utc), 6, 8.8, -73.974653, 40.752468, -73.978868, 40.670707, 'CASH', 22.9, 1.0, 0.0, 0.0, 23.9, '1705685161.48292', '39JexgQ4XPJnwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 48, tzinfo=datetime.timezone.utc), 1, 6.73, -73.994013, 40.751215, -73.959727, 40.691903, 'CASH', 22.9, 1.0, 0.0, 0.0, 23.9, '1705685161.48292', 'qakaZjk5Q2n83g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 5, tzinfo=datetime.timezone.utc), 1, 9.13, -73.975332, 40.75525, -73.873153, 40.774338, 'CASH', 24.9, 0.0, 0.0, 0.0, 24.9, '1705685161.48292', '9gm3iLxY3subEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 30, tzinfo=datetime.timezone.utc), 2, 9.55, -73.978243, 40.764383, -73.87138, 40.774282, 'CASH', 24.9, 0.0, 0.0, 0.0, 24.9, '1705685161.48292', 'L7wQ/3i9F+6G3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 57, tzinfo=datetime.timezone.utc), 5, 5.32, -73.937383, 40.848798, -73.945693, 40.790412, 'CASH', 24.9, 0.0, 0.0, 0.0, 24.9, '1705685161.48292', '+zu4kv2iAK0Mqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 32, tzinfo=datetime.timezone.utc), 2, 11.3, -73.985883, 40.754523, -73.870988, 40.774055, 'CASH', 26.9, 0.0, 0.0, 0.0, 26.9, '1705685161.48292', 'hA7TFjz160f9Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 44, tzinfo=datetime.timezone.utc), 3, 11.19, -73.870695, 40.77343, -73.781523, 40.67736, 'CASH', 26.9, 1.0, 0.0, 0.0, 27.9, '1705685161.48292', '49rbBYPH0zkzOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 14, tzinfo=datetime.timezone.utc), 1, 12.57, -74.0129, 40.702272, -73.870748, 40.774, 'CASH', 28.9, 0.0, 0.0, 0.0, 28.9, '1705685161.48292', '/ZOb+PDXDJbMRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 34, tzinfo=datetime.timezone.utc), 1, 10.73, -73.984563, 40.759695, -73.926517, 40.827038, 'CASH', 28.9, 1.0, 0.0, 0.0, 29.9, '1705685161.48292', 'RNl4tEIHMnVQNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 0, tzinfo=datetime.timezone.utc), 2, 14.86, -73.992023, 40.759188, -73.864513, 40.881595, 'CASH', 33.3, 0.5, 0.0, 0.0, 33.8, '1705685161.48292', 'dHyTBmL5w81duA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 5, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 6, 5, tzinfo=datetime.timezone.utc), 1, 14.76, -74.004712, 40.734052, -73.892332, 40.888978, 'CASH', 35.3, 0.5, 0.0, 0.0, 35.8, '1705685161.48292', 'LcKul72nEdgtFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 28, 3, 27, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 45, 23, tzinfo=datetime.timezone.utc), 1, 5.7, -73.995262, 40.749935, -73.938715, 40.813241, 'Cash', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', '65cFhcBREeb7EQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 47, tzinfo=datetime.timezone.utc), 1, 4.85, -74.004722, 40.730483, -73.967653, 40.700232, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'sAdFxn/Q4BMLrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 23, tzinfo=datetime.timezone.utc), 1, 6.45, -73.989167, 40.690615, -73.976885, 40.75117, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'JsQOpMJ20Fb4YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 2, tzinfo=datetime.timezone.utc), 1, 3.45, -73.962152, 40.779103, -73.998708, 40.751755, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'eNRh08dSZnFcFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 2, tzinfo=datetime.timezone.utc), 2, 4.48, -73.976143, 40.788853, -73.989757, 40.734398, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'hO/xki3/73LrGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 26, 21, 56, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 16, 8, tzinfo=datetime.timezone.utc), 1, 5.4, -73.986584, 40.740557, -73.981432, 40.673656, 'Cash', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'D5vl0sMgM+vgxA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 19, 17, 48, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 17, 31, tzinfo=datetime.timezone.utc), 1, 3.8, -73.945764, 40.778059, -73.991386, 40.760077, 'Cash', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', '3pOxgsp48+Cm6w', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 3, tzinfo=datetime.timezone.utc), 2, 5.39, -73.99597, 40.720185, -73.980535, 40.782378, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'VFS6TB+DlbpByw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 16, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 16, 56, tzinfo=datetime.timezone.utc), 5, 3.82, -73.992968, 40.743865, -74.017067, 40.711595, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'Y0Z+YXt5UhRWyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 14, 58, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 21, 30, tzinfo=datetime.timezone.utc), 4, 5.2, -74.017523, 40.704979, -73.981865, 40.762882, 'Cash', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'MkBr5LQejJoQZg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 6, tzinfo=datetime.timezone.utc), 1, 5.46, -74.011538, 40.703783, -73.9742, 40.73754, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'iNez718pqnooJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 28, tzinfo=datetime.timezone.utc), 4, 5.66, -73.959558, 40.81694, -73.958307, 40.817887, 'CASH', 16.1, 0.0, 0.0, 0.0, 16.1, '1705685161.48292', 'knxkjYbU2rZwGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 31, tzinfo=datetime.timezone.utc), 1, 5.34, 0.0, 0.0, 0.0, 0.0, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', 'efIjUtlbRdSlRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 26, tzinfo=datetime.timezone.utc), 2, 4.43, -73.948077, 40.78278, -73.994895, 40.74388, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', 'TSSCVC7OfbCfgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 15, tzinfo=datetime.timezone.utc), 5, 4.37, -73.99351, 40.749983, -74.014895, 40.709538, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', 'WzdPjwHrdkGqLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 26, tzinfo=datetime.timezone.utc), 3, 5.07, -74.006918, 40.706638, -73.980248, 40.750823, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', '/Ccj774e2b5VSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 1, tzinfo=datetime.timezone.utc), 5, 1.17, -73.980268, 40.762437, -73.971385, 40.751112, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', 'Fip/KVN/v9RuvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 33, tzinfo=datetime.timezone.utc), 1, 4.22, -73.965678, 40.75617, -73.991748, 40.71494, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', '7294UZk/TStofQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 57, tzinfo=datetime.timezone.utc), 1, 4.44, -74.005737, 40.7508, -73.989722, 40.702395, 'CASH', 16.1, 1.0, 0.0, 0.0, 17.1, '1705685161.48292', 'YsJiCGwZFVkMWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 10, tzinfo=datetime.timezone.utc), 3, 4.31, -73.98111, 40.779402, -73.991198, 40.73267, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'xXeAr5Ap876n3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 21, tzinfo=datetime.timezone.utc), 3, 6.72, -73.950372, 40.826705, -74.005683, 40.748238, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'Bj/hCczYydrz+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 46, tzinfo=datetime.timezone.utc), 3, 7.41, -73.99602, 40.686785, -73.976042, 40.751455, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'GXwWADp2xUdCSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 8, 23, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 42, 59, tzinfo=datetime.timezone.utc), 1, 6.1, -73.990869, 40.75605, -73.95697, 40.718657, 'Cash', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', '86rZ+jxDo/UiuQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 5, tzinfo=datetime.timezone.utc), 1, 5.93, -73.994905, 40.750168, -73.912987, 40.748657, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'qfft3x+bCokSYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 19, tzinfo=datetime.timezone.utc), 6, 4.51, -73.985985, 40.769063, -74.008842, 40.71997, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'gWAEMexKpyBw0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 59, tzinfo=datetime.timezone.utc), 1, 5.63, -73.956392, 40.771695, -74.004945, 40.748975, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'CUnuUx47Hm1afQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 24, tzinfo=datetime.timezone.utc), 5, 4.18, -73.947555, 40.783438, -73.990363, 40.75125, 'CASH', 18.1, 0.0, 0.0, 0.0, 18.1, '1705685161.48292', 'PCiuplVdlrFMFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 17, tzinfo=datetime.timezone.utc), 1, 1.92, -73.99359, 40.751982, -73.974227, 40.758595, 'CASH', 16.1, 1.0, 0.0, 2.0, 19.1, '1705685161.48292', 'SA6tuRmq7b4ZpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 6, tzinfo=datetime.timezone.utc), 1, 5.02, -73.993947, 40.741327, -73.967912, 40.800402, 'CASH', 18.1, 1.0, 0.0, 0.0, 19.1, '1705685161.48292', 'GZePL1LqWxZBEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 4, tzinfo=datetime.timezone.utc), 4, 6.21, -73.95084, 40.779352, -73.994752, 40.723482, 'CASH', 18.1, 1.0, 0.0, 0.0, 19.1, '1705685161.48292', 'fiSKDWlu5gOgyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 7, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 7, 37, tzinfo=datetime.timezone.utc), 1, 8.33, -73.985688, 40.72704, -73.94582, 40.821722, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'I8+UjEgpiKIMaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 53, tzinfo=datetime.timezone.utc), 1, 6.01, -73.977578, 40.754602, -74.016758, 40.704807, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'eeO3KsuGyt7JGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 49, tzinfo=datetime.timezone.utc), 1, 6.58, -73.955245, 40.780003, -74.011147, 40.703815, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'vBWc5+nN1gppGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 14, tzinfo=datetime.timezone.utc), 1, 7.86, -73.997235, 40.684367, -73.98068, 40.753597, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'OsPf6IOdXw+hGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 17, tzinfo=datetime.timezone.utc), 2, 5.91, -73.982063, 40.77503, -74.009945, 40.710787, 'Credit', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'Kl4KWntj+4xXLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 19, 55, tzinfo=datetime.timezone.utc), 1, 7.49, -73.968415, 40.755038, -73.997567, 40.678747, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'JDT1e9VsI4FV/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 28, tzinfo=datetime.timezone.utc), 1, 5.65, -73.974975, 40.729387, -73.974975, 40.729387, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', '10aXmOG5StOCFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 37, tzinfo=datetime.timezone.utc), 1, 7.17, -73.949633, 40.784673, -73.942767, 40.725777, 'CASH', 20.1, 0.0, 0.0, 0.0, 20.1, '1705685161.48292', 'cGggA0GhffqvXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 13, tzinfo=datetime.timezone.utc), 1, 6.92, -73.96625, 40.761423, -74.017157, 40.705385, 'CASH', 20.1, 1.0, 0.0, 0.0, 21.1, '1705685161.48292', 'IQg8DQDCLAWfBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 2, tzinfo=datetime.timezone.utc), 1, 6.54, -74.008008, 40.72319, -73.957298, 40.774217, 'CASH', 20.1, 1.0, 0.0, 0.0, 21.1, '1705685161.48292', 'Il/+kSeIA7hIhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 11, tzinfo=datetime.timezone.utc), 2, 7.42, -73.956247, 40.77856, -74.004645, 40.717195, 'CASH', 20.1, 1.0, 0.0, 0.0, 21.1, '1705685161.48292', 'g4+q7zIx57X1YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 14, 56, tzinfo=datetime.timezone.utc), 1, 9.14, -73.870938, 40.773775, -73.989187, 40.740115, 'CASH', 22.1, 0.0, 0.0, 0.0, 22.1, '1705685161.48292', '906sQNCAUWkpWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 14, tzinfo=datetime.timezone.utc), 1, 8.99, -73.997723, 40.762437, -73.972457, 40.741922, 'CASH', 22.1, 0.0, 0.0, 0.0, 22.1, '1705685161.48292', 'TiVsYaOTQs7NrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 3, tzinfo=datetime.timezone.utc), 3, 5.42, -73.977467, 40.758735, -73.977717, 40.754283, 'CASH', 22.1, 0.0, 0.0, 0.0, 22.1, '1705685161.48292', '9ckxYz9JSPYOyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 6, tzinfo=datetime.timezone.utc), 1, 8.6, -73.79006, 40.643517, -73.891607, 40.663185, 'CASH', 22.1, 0.0, 0.0, 0.0, 22.1, '1705685161.48292', 'RxZtch1htqPe3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 54, tzinfo=datetime.timezone.utc), 1, 8.9, -73.957745, 40.774632, -74.009968, 40.718588, 'CASH', 22.1, 0.0, 0.0, 0.0, 22.1, '1705685161.48292', 'Efv4DhxkW3Gj6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 40, tzinfo=datetime.timezone.utc), 2, 8.9, -73.955622, 40.784642, -74.0139, 40.710107, 'CASH', 24.1, 0.0, 0.0, 0.0, 24.1, '1705685161.48292', 'UR6rRWZXmgdOIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 6, tzinfo=datetime.timezone.utc), 2, 7.27, -73.960017, 40.762305, -74.012822, 40.717305, 'CASH', 24.1, 0.0, 0.0, 0.0, 24.1, '1705685161.48292', 'XFFR63DdT3VJsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 7, 53, tzinfo=datetime.timezone.utc), 1, 9.82, -73.78855, 40.641305, -73.823907, 40.74364, 'CASH', 24.1, 0.0, 0.0, 0.0, 24.1, '1705685161.48292', 'b5FYK7y2VZlJLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 54, tzinfo=datetime.timezone.utc), 5, 7.0, -73.950647, 40.786055, -73.885465, 40.773153, 'CASH', 20.1, 0.0, 0.0, 5.0, 25.1, '1705685161.48292', 'X9SQnkYHInH4Xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 6, tzinfo=datetime.timezone.utc), 1, 8.6, -73.9571, 40.786343, -74.006978, 40.719258, 'CASH', 26.1, 0.0, 0.0, 0.0, 26.1, '1705685161.48292', 'jEDF3Ywdc5VOqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 10, tzinfo=datetime.timezone.utc), 1, 9.26, -73.985378, 40.760053, -73.864627, 40.77023, 'CASH', 26.1, 0.0, 0.0, 0.0, 26.1, '1705685161.48292', 'GOHcFq7JT/mfDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 37, tzinfo=datetime.timezone.utc), 1, 9.29, -73.990742, 40.74617, -73.872833, 40.774252, 'CASH', 26.1, 0.0, 0.0, 0.0, 26.1, '1705685161.48292', 'O3WiKZEyqr1RMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 25, tzinfo=datetime.timezone.utc), 5, 11.34, -73.979827, 40.73268, -73.939472, 40.835598, 'Credit', 28.1, 0.0, 0.0, 0.0, 28.1, '1705685161.48292', 'QrbKywb0REJHww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 17, tzinfo=datetime.timezone.utc), 1, 11.76, -73.994037, 40.751268, -73.915242, 40.889937, 'CASH', 28.1, 0.0, 0.0, 0.0, 28.1, '1705685161.48292', '7qkfdkyaA6uBrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 18, tzinfo=datetime.timezone.utc), 5, 12.22, -74.004663, 40.716202, -73.86162, 40.768253, 'CASH', 28.1, 0.0, 0.0, 0.0, 28.1, '1705685161.48292', 'um/MFDMhBrvmIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 8, 7, 25, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 2, 20, tzinfo=datetime.timezone.utc), 1, 11.8, -73.786543, 40.641539, -73.808046, 40.765382, 'Cash', 30.1, 0.0, 0.0, 0.0, 30.1, '1705685161.48292', '4I+VG/l8X7ybcA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 17, tzinfo=datetime.timezone.utc), 3, 10.67, -73.980903, 40.774107, -73.965185, 40.68825, 'CASH', 30.1, 0.0, 0.0, 0.0, 30.1, '1705685161.48292', 'wkMryx80pMN8uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 16, tzinfo=datetime.timezone.utc), 1, 11.37, -73.776765, 40.645563, -73.700363, 40.73169, 'CASH', 30.1, 0.0, 0.0, 0.0, 30.1, '1705685161.48292', '1nLz0G7HecwCJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 45, tzinfo=datetime.timezone.utc), 1, 14.83, -73.98579, 40.722968, -73.915427, 40.871755, 'CASH', 35.7, 0.5, 0.0, 0.0, 36.2, '1705685161.48292', 'Px9Yb5wUSLFL/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 46, tzinfo=datetime.timezone.utc), 1, 17.26, -73.776552, 40.645285, -73.936147, 40.698313, 'CASH', 39.7, 0.5, 0.0, 0.0, 40.2, '1705685161.48292', 'Lipe8ecslIH/yQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 7, tzinfo=datetime.timezone.utc), 1, 20.34, -73.94739, 40.771115, -74.182583, 40.68772, 'CASH', 59.9, 0.5, 0.0, 16.0, 76.4, '1705685161.48292', '7+SPmI4ZO1WHbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 5, tzinfo=datetime.timezone.utc), 2, 14.93, -73.974732, 40.742052, -73.783432, 40.78149, 'CASH', 47.3, 1.0, 0.0, 4.15, 52.45, '1705685161.48292', 'FQtW71rMcYhROA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 46, tzinfo=datetime.timezone.utc), 3, 4.7, -73.94348, 40.806967, -73.928298, 40.756963, 'CASH', 13.7, 0.5, 0.0, 4.15, 18.35, '1705685161.48292', 'bSGBd+b18ZzCrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 48, tzinfo=datetime.timezone.utc), 1, 8.31, -73.862572, 40.769005, -73.949352, 40.785293, 'CASH', 19.7, 0.5, 0.0, 4.15, 24.35, '1705685161.48292', 'w12NlPKA2ZT+xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 58, tzinfo=datetime.timezone.utc), 5, 7.82, -73.865872, 40.771068, -73.960072, 40.808303, 'CASH', 19.7, 0.5, 0.0, 4.15, 24.35, '1705685161.48292', '+8TPqJ4WfAwR+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 24, tzinfo=datetime.timezone.utc), 1, 8.45, -73.871147, 40.77352, -73.912407, 40.834432, 'CASH', 21.7, 0.5, 0.0, 4.15, 26.35, '1705685161.48292', 'DvGWREGh8JOomQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 49, tzinfo=datetime.timezone.utc), 1, 8.61, -73.874517, 40.773995, -73.962963, 40.793993, 'CASH', 21.7, 0.5, 0.0, 4.15, 26.35, '1705685161.48292', 'WOBdVcrYSSXC3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 37, tzinfo=datetime.timezone.utc), 1, 10.98, -73.872287, 40.77393, -73.988758, 40.763577, 'CASH', 25.7, 0.5, 0.0, 4.15, 30.35, '1705685161.48292', 'ObIAxx6XexDQdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 18, tzinfo=datetime.timezone.utc), 2, 10.72, -73.874525, 40.774053, -73.980635, 40.764518, 'CASH', 25.7, 0.5, 0.0, 4.15, 30.35, '1705685161.48292', 'tQNo/DDdLoxkEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 29, tzinfo=datetime.timezone.utc), 1, 9.48, -73.870963, 40.773608, -73.98197, 40.762868, 'CASH', 25.7, 0.5, 0.0, 4.15, 30.35, '1705685161.48292', 'rlKBZxnipyhk0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 41, tzinfo=datetime.timezone.utc), 1, 10.18, -74.005577, 40.739937, -73.932643, 40.68563, 'CASH', 33.7, 1.0, 0.0, 0.0, 34.7, '1705685161.48292', 'y8LlfJ7Phr270A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 36, tzinfo=datetime.timezone.utc), 2, 12.76, -73.781248, 40.64501, -73.953177, 40.681553, 'CASH', 35.7, 1.0, 0.0, 0.0, 36.7, '1705685161.48292', '765EGS/oMzUWAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 19, tzinfo=datetime.timezone.utc), 2, 0.48, -73.99796, 40.74109, -74.004725, 40.741707, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Ne2+XheSpVjAtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 41, tzinfo=datetime.timezone.utc), 1, 0.39, -73.98347, 40.727483, -73.989708, 40.729937, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'OiAJcXQg2//ySA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 2, tzinfo=datetime.timezone.utc), 3, 0.49, -73.967208, 40.756447, -73.972663, 40.752575, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'WCOd8Lhpl74LGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 37, tzinfo=datetime.timezone.utc), 1, 0.32, -73.966868, 40.764167, -73.970058, 40.761425, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Q6Cp1VRjbS03Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 35, tzinfo=datetime.timezone.utc), 3, 0.68, -73.991233, 40.749918, -73.98404, 40.755018, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'xzN7+CxbVbj2Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 11, tzinfo=datetime.timezone.utc), 5, 0.18, -73.95644, 40.765937, -73.953302, 40.764505, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Gy3S05oiX4+ACA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 45, tzinfo=datetime.timezone.utc), 1, 0.52, -73.992018, 40.747485, -73.992988, 40.751873, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'u9l9sNQQbJRj/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 4, tzinfo=datetime.timezone.utc), 1, 0.53, -73.979182, 40.750575, -73.974515, 40.75692, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Ral7e1IwlvVSTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 14, tzinfo=datetime.timezone.utc), 1, 0.39, -73.999362, 40.733525, -73.995203, 40.730545, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '3ephD/+mvxHBFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 54, tzinfo=datetime.timezone.utc), 1, 0.61, -73.931773, 40.759893, -73.9384, 40.752963, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '+R1CyUsxGhaAKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 18, tzinfo=datetime.timezone.utc), 1, 0.44, -73.966743, 40.753402, -73.974192, 40.755248, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'cS52uR7124IZTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 27, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 53, 37, tzinfo=datetime.timezone.utc), 1, 0.6, -73.941307, 40.792054, -73.947354, 40.783864, 'Cash', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '8WECx0F6AH2Y2w', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 22, tzinfo=datetime.timezone.utc), 1, 0.55, -73.97907, 40.744568, -73.97419, 40.751425, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 's7SEyrCmVP+2Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 16, tzinfo=datetime.timezone.utc), 1, 0.48, -73.993042, 40.743053, -73.997028, 40.74732, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'VBS57a7RSAocqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 13, tzinfo=datetime.timezone.utc), 6, 0.56, -73.977882, 40.734123, -73.975902, 40.740533, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'V283cnLKptJRDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 49, tzinfo=datetime.timezone.utc), 1, 0.59, -74.002928, 40.749342, -73.994827, 40.750185, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'FEOBIpags8/ZaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 23, tzinfo=datetime.timezone.utc), 2, 0.55, -73.964633, 40.760342, -73.969568, 40.753575, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'j8+g3UIuafuCdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 20, tzinfo=datetime.timezone.utc), 1, 0.5, -73.968193, 40.765295, -73.972248, 40.759108, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '8e0LdMO1sD3YKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 33, tzinfo=datetime.timezone.utc), 3, 0.66, -73.965892, 40.795387, -73.97379, 40.79126, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'rvztlUORgWRreg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 12, tzinfo=datetime.timezone.utc), 5, 0.43, -73.973158, 40.792767, -73.969268, 40.798117, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'nPLsh3BQN+QwJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 39, tzinfo=datetime.timezone.utc), 5, 0.65, -73.976487, 40.748603, -73.977388, 40.758065, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'QqjsHH0ieGQofg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 8, tzinfo=datetime.timezone.utc), 1, 0.61, -73.979707, 40.764278, -73.97208, 40.762865, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'W+3rdZkAm7qhBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 31, tzinfo=datetime.timezone.utc), 5, 0.51, -73.985852, 40.727043, -73.992317, 40.725308, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'mrA86FExHAOZlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 9, 55, tzinfo=datetime.timezone.utc), 5, 0.65, -73.991037, 40.750482, -73.99484, 40.742813, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '0IZVHFr3wN3SOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 23, tzinfo=datetime.timezone.utc), 1, 0.51, -73.982538, 40.74544, -73.978172, 40.751985, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'eyTMZcnXjZxRlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 9, 43, tzinfo=datetime.timezone.utc), 5, 0.47, -73.959992, 40.762237, -73.962848, 40.766727, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '5OsdQH3AWYimhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 15, tzinfo=datetime.timezone.utc), 1, 0.48, -73.983737, 40.743988, -73.988112, 40.737817, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'kg19gCeC9ggzIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 37, tzinfo=datetime.timezone.utc), 1, 0.48, -73.98821, 40.750128, -73.996105, 40.753337, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'A2Ajr4Bppx/3zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 34, tzinfo=datetime.timezone.utc), 1, 0.57, -73.992273, 40.734528, -73.994817, 40.740057, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'JJPk0z555VQOHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 6, tzinfo=datetime.timezone.utc), 1, 0.46, -73.991977, 40.749367, -73.991447, 40.745027, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'e4s9qwWRla1/0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 18, tzinfo=datetime.timezone.utc), 1, 0.51, -73.987728, 40.74146, -73.987168, 40.74731, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'oL0STxHShHimrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 11, tzinfo=datetime.timezone.utc), 4, 0.59, -73.991003, 40.755923, -73.985063, 40.763908, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'iEpXn/xaLxai2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 7, tzinfo=datetime.timezone.utc), 1, 0.7, -73.970712, 40.79345, -73.96458, 40.801982, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'XNGdK/jVIwvO1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 7, tzinfo=datetime.timezone.utc), 1, 0.25, -73.972048, 40.747962, -73.971562, 40.749518, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '/UqKVOH9X1TDdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 32, tzinfo=datetime.timezone.utc), 5, 0.53, -73.983395, 40.73428, -73.990573, 40.733997, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Ap2UOdEZpJdhSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 55, tzinfo=datetime.timezone.utc), 1, 0.55, -73.970445, 40.756468, -73.965648, 40.753408, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'KP73RDfXT07eug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 57, tzinfo=datetime.timezone.utc), 5, 0.79, -73.980487, 40.734277, -73.973415, 40.744135, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'eaGF6Yq2Yot7pQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 42, tzinfo=datetime.timezone.utc), 1, 0.52, -73.983108, 40.781678, -73.978077, 40.787293, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'OUDLamFkGZx9cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 8, tzinfo=datetime.timezone.utc), 1, 0.46, -73.985542, 40.778393, -73.984002, 40.773798, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '9pJ8UJZrOkGEXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 34, tzinfo=datetime.timezone.utc), 2, 0.51, -73.967212, 40.772505, -73.964065, 40.767823, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'YmXztJILGsR+Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 53, tzinfo=datetime.timezone.utc), 1, 0.58, -73.985733, 40.763433, -73.982067, 40.769683, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Xffs/EF55cJWlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 55, tzinfo=datetime.timezone.utc), 1, 0.47, -73.985528, 40.7632, -73.97964, 40.765175, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '5AXW6mWWfJ7uEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 56, tzinfo=datetime.timezone.utc), 5, 0.33, -73.995735, 40.738927, -73.992692, 40.742927, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Yg23z4wHeSRxjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 56, tzinfo=datetime.timezone.utc), 1, 0.63, -73.981855, 40.783648, -73.975757, 40.791052, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'QlCyLP8vvb/SxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 33, tzinfo=datetime.timezone.utc), 1, 0.62, -73.979405, 40.743942, -73.97375, 40.75151, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'nIR2JUkgj7iPQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 0, tzinfo=datetime.timezone.utc), 5, 0.57, -73.96762, 40.755882, -73.973387, 40.749465, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'WO86xHN8VYxjAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 59, tzinfo=datetime.timezone.utc), 1, 0.29, -73.971277, 40.764207, -73.97358, 40.762897, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'P+qfRX+d6/vVuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 12, tzinfo=datetime.timezone.utc), 6, 0.39, -73.976628, 40.764183, -73.982072, 40.767338, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'o+/VlWHdKPXP4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 11, tzinfo=datetime.timezone.utc), 6, 0.46, -73.97506, 40.790138, -73.979738, 40.784475, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Qq/1uSkCWOTdhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 8, tzinfo=datetime.timezone.utc), 1, 0.41, -73.988358, 40.76426, -73.992167, 40.759103, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '7n2bMsbTzj0gIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 3, tzinfo=datetime.timezone.utc), 5, 0.56, -73.983292, 40.767798, -73.976363, 40.762327, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '3Ar3AZzdobBzMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 58, tzinfo=datetime.timezone.utc), 5, 0.54, -73.99214, 40.74979, -73.996355, 40.743008, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '+Eq20o2pA0awLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 10, 45, tzinfo=datetime.timezone.utc), 1, 0.67, -73.97435, 40.790892, -73.969945, 40.784567, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'wqH6xOLwcdQ6Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 15, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 15, 54, tzinfo=datetime.timezone.utc), 5, 0.54, -73.960685, 40.76191, -73.968573, 40.7659, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'OSQpmzWCd8fZBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 24, tzinfo=datetime.timezone.utc), 2, 0.76, -73.968473, 40.762537, -73.969293, 40.760333, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '9bacnKdZZUCecg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 24, tzinfo=datetime.timezone.utc), 2, 0.46, -73.968232, 40.799662, -73.97213, 40.795683, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '7xEfXWZUpztA5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 1, tzinfo=datetime.timezone.utc), 1, 0.39, -73.975925, 40.743848, -73.978845, 40.739497, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Y08y7swoHI4Dug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 43, tzinfo=datetime.timezone.utc), 5, 0.45, -73.985695, 40.757113, -73.990305, 40.751453, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'biPMulBuW3p8fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 0, tzinfo=datetime.timezone.utc), 1, 0.48, -73.946083, 40.773182, -73.9516, 40.776935, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'sHT9YoJMPb0GfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 7, tzinfo=datetime.timezone.utc), 1, 0.46, -74.005245, 40.729635, -74.006137, 40.732968, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'MTvhjbP4fL6lgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 23, tzinfo=datetime.timezone.utc), 2, 0.5, -73.978943, 40.785552, -73.976713, 40.790922, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'trgQ6an6dhgTww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 47, tzinfo=datetime.timezone.utc), 6, 0.52, -73.952262, 40.771973, -73.959922, 40.773642, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'TEOlf03AqnZOBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.53, -74.009915, 40.721347, -74.01176, 40.713915, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'Nx0erYWd3RJ4dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 34, tzinfo=datetime.timezone.utc), 2, 0.4, -73.97109, 40.752753, -73.97109, 40.752753, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'zxlBmMATcdlBzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 4, tzinfo=datetime.timezone.utc), 2, 0.58, -73.946698, 40.7806, -73.955532, 40.779553, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'IaW7npaEEGXBMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 19, tzinfo=datetime.timezone.utc), 1, 0.37, -73.968065, 40.752277, -73.97344, 40.753225, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'nxl45pVuOKdUYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 1, tzinfo=datetime.timezone.utc), 1, 0.5, -73.982758, 40.731103, -73.983753, 40.72576, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'MJHLimPxfaduEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 55, tzinfo=datetime.timezone.utc), 1, 0.6, -73.983997, 40.743463, -73.990363, 40.738755, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'ovlwwa0XXf5f2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 13, 1, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 22, 40, tzinfo=datetime.timezone.utc), 1, 0.4, -73.955718, 40.772327, -73.961438, 40.771495, 'Cash', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '0//OyS0tVe0oMQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 9, tzinfo=datetime.timezone.utc), 2, 0.49, -73.962233, 40.77348, -73.956795, 40.778185, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'bcrKqWar7vFW2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 58, tzinfo=datetime.timezone.utc), 1, 0.64, -73.98391, 40.780583, -73.978168, 40.7882, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'DhG6nrGzHQWtdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 34, tzinfo=datetime.timezone.utc), 2, 0.6, -74.045685, 40.72567, -74.046475, 40.723148, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'cH7P0FxWLp8xFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 1, tzinfo=datetime.timezone.utc), 5, 0.5, -73.979783, 40.73911, -73.986882, 40.738767, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'KKNfKj7X7uOIWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 47, tzinfo=datetime.timezone.utc), 1, 0.36, -73.993713, 40.729253, -73.997433, 40.724737, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'xEZDqkEZJ1AXIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 7, tzinfo=datetime.timezone.utc), 1, 0.71, -73.953288, 40.779935, -73.947685, 40.788715, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'BqKB4o3qV77l+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 11, tzinfo=datetime.timezone.utc), 1, 0.37, -73.99014, 40.725042, -73.985735, 40.726808, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'y/zUlj3EUqehYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 58, tzinfo=datetime.timezone.utc), 1, 0.45, -73.98198, 40.769018, -73.98134, 40.763682, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '/rsmTpA8JV1nog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 19, 35, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 37, 55, tzinfo=datetime.timezone.utc), 4, 0.5, -73.988183, 40.732048, -73.992405, 40.725047, 'Cash', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'szts3/Zl6ZMVHg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 6, 24, tzinfo=datetime.timezone.utc), 1, 0.7, -73.994155, 40.76158, -73.987642, 40.76988, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'dbE4R5IXr6ZIUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 15, tzinfo=datetime.timezone.utc), 4, 0.5, -73.97951, 40.752882, -73.974128, 40.760087, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'MYBh2cr2PDvbSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 56, tzinfo=datetime.timezone.utc), 3, 0.51, -73.981468, 40.78106, -73.97634, 40.785, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'v9VrZifzuk9F+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 26, tzinfo=datetime.timezone.utc), 1, 0.49, -73.9777, 40.78874, -73.973712, 40.794782, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'kW3t+Z0FWnULTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 7, tzinfo=datetime.timezone.utc), 1, 0.63, -73.996088, 40.744375, -74.003025, 40.749453, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'j3967Okd0BRxeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 6, 22, tzinfo=datetime.timezone.utc), 2, 0.53, -73.972445, 40.760938, -73.96842, 40.767643, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'wFAIL4tQw5uW8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 17, 28, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 30, 40, tzinfo=datetime.timezone.utc), 1, 0.6, -73.969757, 40.797347, -73.965075, 40.80615, 'Cash', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'HolL6mQzuI0cwA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 49, tzinfo=datetime.timezone.utc), 3, 0.61, -73.981095, 40.780825, -73.976285, 40.788613, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '0WbINm3qGfSQyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 53, tzinfo=datetime.timezone.utc), 1, 0.53, -73.997117, 40.725442, -73.992467, 40.730075, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'AgkTvePzTkQLgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 37, tzinfo=datetime.timezone.utc), 1, 0.6, -73.992863, 40.742733, -73.987627, 40.750222, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'kdEXkhFgdfnXZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 48, tzinfo=datetime.timezone.utc), 1, 0.57, -73.980158, 40.785582, -73.973673, 40.789613, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'EBgi8sYAlC9b9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 36, tzinfo=datetime.timezone.utc), 2, 0.64, -73.95971, 40.784128, -73.963287, 40.784872, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'wLQtL3rJHFqG0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 5, tzinfo=datetime.timezone.utc), 1, 0.65, -73.979013, 40.744483, -73.974075, 40.752348, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'QqAy/TvdyU3kNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 13, tzinfo=datetime.timezone.utc), 1, 0.44, -73.962557, 40.776373, -73.961212, 40.771543, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'qeMHbq8BHfqOaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 9, tzinfo=datetime.timezone.utc), 5, 0.29, 0.0, 0.0, 0.0, 0.0, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'uUpjkRQcspcK3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 51, tzinfo=datetime.timezone.utc), 5, 0.52, -73.98789, 40.743962, -73.9928, 40.7378, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'eKJpdwVQ/3reig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 54, tzinfo=datetime.timezone.utc), 1, 0.36, -73.964773, 40.769737, -73.959817, 40.771183, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '2Kn026u3/MeqWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 16, tzinfo=datetime.timezone.utc), 1, 0.63, -73.974887, 40.743143, -73.970715, 40.750515, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'WtRooaRHYq8CIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 58, tzinfo=datetime.timezone.utc), 1, 0.49, -73.981622, 40.75328, -73.987655, 40.753757, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '5T13L1KWXmtSCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 18, tzinfo=datetime.timezone.utc), 1, 0.38, -73.975085, 40.787557, -73.969762, 40.78479, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'p6TRR2hcz4FQug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 39, tzinfo=datetime.timezone.utc), 1, 0.05, -73.962775, 40.799597, -73.968182, 40.799907, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'BYCJmGzz0tMxHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 4, tzinfo=datetime.timezone.utc), 1, 0.38, -73.968292, 40.75507, -73.966375, 40.7615, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'sEo95F4bnn7qug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 6, tzinfo=datetime.timezone.utc), 2, 0.55, -73.987692, 40.755023, -73.981687, 40.750348, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'FqYRlaIkgykT9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 25, tzinfo=datetime.timezone.utc), 1, 0.49, -73.956658, 40.76677, -73.952162, 40.772915, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'yYP7hP8nEHhYOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 56, tzinfo=datetime.timezone.utc), 1, 0.59, -73.97879, 40.744768, -73.97879, 40.744768, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'eswyD/gxIvI1BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 3, tzinfo=datetime.timezone.utc), 5, 0.7, -73.978782, 40.785432, -73.976223, 40.778015, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'hWpPrvynURtiTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 4, tzinfo=datetime.timezone.utc), 1, 0.7, -73.978205, 40.748752, -73.984515, 40.739813, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'JLqDX7sc22cgsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 47, tzinfo=datetime.timezone.utc), 1, 0.76, -73.964675, 40.764077, -73.95818, 40.773558, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '1AiC3nAMYbZzTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 47, tzinfo=datetime.timezone.utc), 1, 0.46, -73.98596, 40.759517, -73.982402, 40.760173, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', 'J+NMdpvTgonynQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 21, tzinfo=datetime.timezone.utc), 1, 0.59, -73.96664, 40.767413, -73.959863, 40.771168, 'CASH', 3.7, 0.0, 0.0, 0.0, 3.7, '1705685161.48292', '1h5UHMnE7Y+3Bw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 52, tzinfo=datetime.timezone.utc), 2, 0.5, -73.986278, 40.75857, -73.983312, 40.76681, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Y/Qo0KfIrsHroA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.52, -73.970197, 40.767912, -73.964943, 40.763087, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'u8bw647OjVlRIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 37, tzinfo=datetime.timezone.utc), 5, 0.67, -73.973598, 40.747768, -73.982068, 40.74619, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'jeRWTrDPMKfexg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 21, tzinfo=datetime.timezone.utc), 1, 0.7, -73.965363, 40.76895, -73.95832, 40.774962, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'y+X/HFbnVO7P5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 22, tzinfo=datetime.timezone.utc), 1, 0.9, -73.973905, 40.751227, -73.965708, 40.754617, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '/yrSYN7uJnvf3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 50, tzinfo=datetime.timezone.utc), 6, 0.75, -73.99134, 40.754628, -73.979047, 40.750598, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '3ubNvLOnL9LvfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 25, tzinfo=datetime.timezone.utc), 5, 0.74, -73.972912, 40.764027, -73.980008, 40.75421, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'UMNRm+hc2CGG1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 31, tzinfo=datetime.timezone.utc), 1, 1.16, -73.994747, 40.745318, -74.00555, 40.737678, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'b1586NA8Eakiwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 55, tzinfo=datetime.timezone.utc), 1, 0.75, -73.976833, 40.687322, -73.984417, 40.695798, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ME7p7jAQ3V89yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 36, tzinfo=datetime.timezone.utc), 5, 0.75, -73.823545, 40.670785, -73.827222, 40.672587, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'PWrYfgUeBCsrfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 36, tzinfo=datetime.timezone.utc), 4, 0.85, -73.982195, 40.773863, -73.986027, 40.763593, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'RRzLoAFZ/+35/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 53, tzinfo=datetime.timezone.utc), 1, 1.04, -73.979317, 40.767092, -73.980632, 40.778218, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Xd5Z5ihNoUqkUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 14, tzinfo=datetime.timezone.utc), 1, 0.81, -73.990238, 40.731682, -73.980153, 40.734715, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'e2dC0tXN/djxQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 34, tzinfo=datetime.timezone.utc), 1, 0.05, -73.972245, 40.746472, -73.974092, 40.751022, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'W2fmUE1pWgpu6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 59, tzinfo=datetime.timezone.utc), 1, 0.59, -73.970993, 40.755148, -73.974667, 40.753343, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ICgzXbfxi7Aktw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 59, tzinfo=datetime.timezone.utc), 1, 1.09, -73.974827, 40.732795, -73.976977, 40.74347, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'OlHFNOyVgAL3Wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 9, 59, tzinfo=datetime.timezone.utc), 2, 0.99, -73.997277, 40.76624, -73.992663, 40.756172, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'NOe9dwT5l7SjvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 9, tzinfo=datetime.timezone.utc), 1, 0.65, -73.989503, 40.757615, -73.980945, 40.759993, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'doK9UgCm2yjqrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 56, tzinfo=datetime.timezone.utc), 1, 1.15, -73.979062, 40.785018, -73.968125, 40.797345, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '6WnjHPU6K4porQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 22, tzinfo=datetime.timezone.utc), 5, 0.58, -73.991528, 40.7441, -73.98378, 40.740808, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ZNqSZOfQ8QSn1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 13, tzinfo=datetime.timezone.utc), 1, 0.62, -73.98275, 40.763948, -73.97464, 40.758987, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'sBOsbzjOEjY0Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 54, tzinfo=datetime.timezone.utc), 1, 1.01, -73.980368, 40.742603, -73.972603, 40.753893, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '15GGcmz3GdcXtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 10, tzinfo=datetime.timezone.utc), 1, 1.15, -73.97466, 40.745932, -73.968532, 40.761365, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'adWhRorVHsfzoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 58, tzinfo=datetime.timezone.utc), 1, 0.89, -73.988625, 40.748018, -73.975112, 40.741507, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'y5bzMoHDgIMiWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 37, tzinfo=datetime.timezone.utc), 1, 0.99, -73.96467, 40.760212, -73.975482, 40.752242, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '1Vj9KNE606/qLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 49, tzinfo=datetime.timezone.utc), 1, 0.63, -73.991475, 40.749558, -73.983975, 40.744698, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'b6RZxBgbMjUc8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 53, tzinfo=datetime.timezone.utc), 1, 0.98, -73.981672, 40.780217, -73.986417, 40.76685, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'LNvKq1RnqtdnOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 8, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 8, 43, tzinfo=datetime.timezone.utc), 1, 1.19, -73.979328, 40.761835, -73.991112, 40.750355, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '+iFReXiCeKBwRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 48, tzinfo=datetime.timezone.utc), 2, 0.75, -73.963217, 40.774205, -73.954278, 40.774528, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '73rVUiM8tdhZ5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 26, tzinfo=datetime.timezone.utc), 1, 0.68, -73.966762, 40.761938, -73.975912, 40.761602, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IKuyQRZNgEc0ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 15, tzinfo=datetime.timezone.utc), 2, 0.89, -73.965273, 40.755062, -73.975347, 40.752693, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'bQm4mEfjajQVaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 35, tzinfo=datetime.timezone.utc), 1, 0.94, -73.982268, 40.763647, -73.990387, 40.752762, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'CkKwm/0/YTAtRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 51, tzinfo=datetime.timezone.utc), 5, 1.09, -74.009877, 40.721132, -74.003698, 40.729872, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'a/dqFD4mqUI6uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 56, tzinfo=datetime.timezone.utc), 1, 1.11, -73.997868, 40.761525, -74.00543, 40.748032, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'c/ovqjC0RmyIDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 15, tzinfo=datetime.timezone.utc), 1, 0.72, -73.986345, 40.71806, -73.99599, 40.716488, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '22Q9hgxsnUuP6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 56, tzinfo=datetime.timezone.utc), 5, 0.88, -73.991593, 40.749883, -73.988432, 40.7409, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ylbVHAn/QbWmLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 14, tzinfo=datetime.timezone.utc), 1, 0.84, -73.989278, 40.757915, -73.979132, 40.762782, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'TkvlJMblpugCGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.88, -73.987818, 40.759902, -73.976368, 40.761438, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'zJ9nLxMQoNgS8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 3, tzinfo=datetime.timezone.utc), 1, 0.8, -73.99289, 40.76186, -73.99797, 40.753998, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'eDQTaCthnMIf8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 59, tzinfo=datetime.timezone.utc), 2, 1.09, -73.984878, 40.764522, -73.979632, 40.766013, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '05A8OZjYgURfFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 8, 15, tzinfo=datetime.timezone.utc), 2, 0.78, -74.002978, 40.728425, -74.008105, 40.719978, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'LvFsJkJMymJozQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 51, tzinfo=datetime.timezone.utc), 1, 0.78, -74.00366, 40.734183, -73.998893, 40.726345, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'o+KRemLF/K7wtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 9, tzinfo=datetime.timezone.utc), 5, 0.97, -73.979795, 40.739442, -73.981623, 40.728652, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '9KvCrLtGvigaAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 51, tzinfo=datetime.timezone.utc), 1, 0.88, -73.978672, 40.75052, -73.973138, 40.759392, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IzPwE6AHJ1n+1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 55, tzinfo=datetime.timezone.utc), 1, 0.84, -73.975558, 40.755772, -73.977088, 40.764673, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kIgHnyH4A0IsBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 35, tzinfo=datetime.timezone.utc), 1, 0.59, -73.979285, 40.749685, -73.987027, 40.746892, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '49yUaVWNGfn9dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 35, tzinfo=datetime.timezone.utc), 5, 0.97, -73.982468, 40.774098, -73.977773, 40.786692, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'oewsDlOcsZe+bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 23, tzinfo=datetime.timezone.utc), 1, 0.84, -73.966512, 40.765173, -73.960877, 40.774493, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'CGPPS5mFtzrPRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 4, tzinfo=datetime.timezone.utc), 1, 1.0, -73.961553, 40.780218, -73.970578, 40.767375, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'LJxYSu80Vf9T1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 37, tzinfo=datetime.timezone.utc), 1, 1.12, -73.979675, 40.766248, -73.990108, 40.752238, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'bZSypZb8LB5Y4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 6, tzinfo=datetime.timezone.utc), 5, 0.9, -74.003932, 40.731803, -73.999092, 40.723943, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '+p/S83Oua8vNHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 59, tzinfo=datetime.timezone.utc), 1, 0.95, -73.966923, 40.804088, -73.972733, 40.793557, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'GCrLfheRlXMS8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 8, tzinfo=datetime.timezone.utc), 1, 1.18, -73.968485, 40.754988, -73.979018, 40.740032, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'yVnNDT6/Qvr3Gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 4, tzinfo=datetime.timezone.utc), 1, 0.94, -73.829538, 40.759848, -73.820758, 40.752118, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'xujP9W37vc+qQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 43, tzinfo=datetime.timezone.utc), 1, 1.03, -74.001958, 40.727865, -74.006345, 40.716825, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '3VEFInAUZk0mOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.45, -74.000342, 40.717352, -73.99695, 40.723082, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'b0fu4cjqCNt4Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 17, tzinfo=datetime.timezone.utc), 1, 0.99, -73.977273, 40.77431, -73.979963, 40.764482, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IjZMJQ64QNIvZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 50, tzinfo=datetime.timezone.utc), 1, 0.91, -73.991883, 40.74939, -73.988147, 40.740992, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Zh4FqWZCDhFUjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 59, tzinfo=datetime.timezone.utc), 1, 0.85, -73.96796, 40.754453, -73.971345, 40.760202, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'tiiVUPBAqvIXGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 34, tzinfo=datetime.timezone.utc), 1, 0.77, -73.978242, 40.763972, -73.984935, 40.76877, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'zpX9jHQ2k0LmBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 38, tzinfo=datetime.timezone.utc), 1, 0.75, -73.968938, 40.766947, -73.965498, 40.774895, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '0cLAUGmZtxqK4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 45, tzinfo=datetime.timezone.utc), 1, 0.46, -73.953307, 40.772428, -73.960195, 40.773793, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '+rro7vXT/RWFhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 9, tzinfo=datetime.timezone.utc), 2, 0.98, -74.005227, 40.737252, -73.99209, 40.738005, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'qQ4VJEajbfdCfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 2, tzinfo=datetime.timezone.utc), 1, 0.78, -73.977022, 40.755577, -73.968928, 40.767222, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '/WqdRoDNyuXVmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 52, tzinfo=datetime.timezone.utc), 1, 0.74, -73.991097, 40.758038, -73.982383, 40.76275, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kWh9H2R+1+s/7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 30, tzinfo=datetime.timezone.utc), 4, 0.69, -73.984795, 40.741902, -73.988788, 40.736743, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'xL6Y7Sraiu+lLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 44, tzinfo=datetime.timezone.utc), 5, 0.5, -73.967752, 40.753115, -73.971273, 40.757007, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'a6PJ169bihGJhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 31, tzinfo=datetime.timezone.utc), 5, 1.03, -73.925573, 40.767647, -73.921418, 40.757368, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'nz8yFVu1J53YSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 29, tzinfo=datetime.timezone.utc), 5, 1.0, -73.984777, 40.768423, -73.978398, 40.758917, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'gmaDK6BUjk4/gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 12, 36, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 42, 44, tzinfo=datetime.timezone.utc), 1, 0.2, -73.976677, 40.759128, -73.978123, 40.756786, 'Cash', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'M9Ee38s49jjzxA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 44, tzinfo=datetime.timezone.utc), 2, 0.63, -73.946358, 40.772865, -73.949617, 40.768562, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'zNfK3HNZrQTghQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 49, tzinfo=datetime.timezone.utc), 3, 1.16, -73.965682, 40.767408, -73.955197, 40.777592, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'CPQb9mQ+/oB1kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 10, tzinfo=datetime.timezone.utc), 2, 0.95, -74.001942, 40.730002, -74.006252, 40.739665, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'cR5iDaeH/EkVDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 2, tzinfo=datetime.timezone.utc), 1, 0.69, -73.999882, 40.73285, -73.996013, 40.741103, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'YAfZbxqDegcedw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 7, tzinfo=datetime.timezone.utc), 1, 0.93, -73.95383, 40.790828, -73.944433, 40.791502, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'jWBDh5rkjyKayA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 8, tzinfo=datetime.timezone.utc), 5, 0.92, -73.966057, 40.765462, -73.9544, 40.76498, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'yyoVZcHa0TlGkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 7, 12, tzinfo=datetime.timezone.utc), 1, 1.11, -73.969545, 40.769123, -73.98259, 40.769162, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'v60y1mR+uxXm7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 48, tzinfo=datetime.timezone.utc), 1, 0.88, -74.00573, 40.748495, -74.006275, 40.739727, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'UeOUcD8MTbCH1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 49, tzinfo=datetime.timezone.utc), 2, 1.02, -73.96561, 40.768548, -73.956348, 40.781253, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '0njjsR0tKWw5lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 52, tzinfo=datetime.timezone.utc), 1, 0.68, -73.94962, 40.777027, -73.957822, 40.782283, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'KRqK4sMj42rsng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 55, tzinfo=datetime.timezone.utc), 5, 0.92, -73.977952, 40.745547, -73.99335, 40.7516, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '794MOqqdJG9Q8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 0, tzinfo=datetime.timezone.utc), 1, 0.84, -73.994598, 40.750605, -74.004352, 40.751857, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'R1PadBLUjzRCGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 1, tzinfo=datetime.timezone.utc), 1, 0.84, -74.017238, 40.704865, -74.007207, 40.705783, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IhIKDkic5PIK+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 23, tzinfo=datetime.timezone.utc), 1, 0.53, -73.95998, 40.761958, -73.96236, 40.759015, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'jeAqMhnTyJNMXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 12, 6, tzinfo=datetime.timezone.utc), 5, 0.76, -73.82395, 40.71307, -73.823203, 40.715645, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'MmMEzZrXwKExig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 38, tzinfo=datetime.timezone.utc), 1, 1.06, -74.005198, 40.740615, -74.00565, 40.725797, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'y2ObdTVh7M1etA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 57, tzinfo=datetime.timezone.utc), 1, 1.07, -73.985185, 40.727673, -73.981572, 40.740012, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'uU660c66njXf4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 18, tzinfo=datetime.timezone.utc), 2, 1.13, -73.981972, 40.746298, -73.973902, 40.759595, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'DyaicG6juyoRjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 28, tzinfo=datetime.timezone.utc), 2, 0.84, -73.971485, 40.770307, -73.981617, 40.771273, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'oyi3iP6wglR2Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 11, 39, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 45, 4, tzinfo=datetime.timezone.utc), 1, 0.6, -73.986567, 40.754353, -73.975446, 40.749509, 'Cash', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '6+pPR5tR7jl5KQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 42, tzinfo=datetime.timezone.utc), 5, 0.7, -73.975703, 40.75361, -73.981212, 40.744455, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ANUXlYt97UiKiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 56, tzinfo=datetime.timezone.utc), 1, 1.04, -73.954042, 40.77902, -73.946872, 40.791488, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'hzCQktnGHh3Rhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 19, 55, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 59, 10, tzinfo=datetime.timezone.utc), 2, 1.0, -73.9852, 40.763959, -73.989148, 40.774373, 'Cash', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '4eDFrcxYZigj0w', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 54, tzinfo=datetime.timezone.utc), 1, 0.93, -74.002087, 40.734797, -74.000445, 40.738875, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Faee2sAa3EtQpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 15, tzinfo=datetime.timezone.utc), 1, 0.91, -74.001962, 40.71512, -74.005847, 40.706205, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'nOt3WQ0rNHEy2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 27, tzinfo=datetime.timezone.utc), 1, 0.74, -73.991717, 40.74967, -73.98405, 40.743245, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'jcqDb/touGTprg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 53, tzinfo=datetime.timezone.utc), 2, 1.04, -74.003775, 40.725833, -73.999388, 40.738558, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '4rDTI3LlUcMRXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 3, tzinfo=datetime.timezone.utc), 2, 0.92, -73.980558, 40.774793, -73.983162, 40.762695, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'vMXVE0pAiwLwUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 7, tzinfo=datetime.timezone.utc), 5, 0.73, -73.959015, 40.771777, -73.961075, 40.779227, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '+1djZCxxJBUqEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 18, tzinfo=datetime.timezone.utc), 1, 0.67, -73.978515, 40.785807, -73.970652, 40.788803, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '7n84rGP3B6J2Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 38, tzinfo=datetime.timezone.utc), 1, 0.93, -73.948727, 40.773797, -73.948277, 40.78218, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IshW5nVwdavQtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 12, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 25, 10, tzinfo=datetime.timezone.utc), 1, 0.8, -73.985804, 40.727538, -73.997971, 40.733825, 'Cash', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'hYFcSCTEju7gEQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 47, tzinfo=datetime.timezone.utc), 1, 0.74, -73.985647, 40.756107, -73.975777, 40.755177, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'FT7JTm0/MKELEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 45, tzinfo=datetime.timezone.utc), 1, 0.64, -73.976605, 40.758358, -73.975175, 40.756795, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ISAx1mpPaA7YWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 30, tzinfo=datetime.timezone.utc), 1, 1.0, -73.982222, 40.762333, -73.991952, 40.74952, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'zuM0mVp0Uyaw5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 49, tzinfo=datetime.timezone.utc), 1, 0.39, -73.981542, 40.764672, -73.981938, 40.76835, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Xbhj/GcqoTTi7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 32, tzinfo=datetime.timezone.utc), 1, 0.87, -73.956588, 40.784183, -73.962485, 40.77544, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Y0jfZqYjcZX2qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 41, tzinfo=datetime.timezone.utc), 3, 0.78, -73.966048, 40.804905, -73.965155, 40.796185, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ADk5RS/IPpV49g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 57, tzinfo=datetime.timezone.utc), 1, 0.94, -73.942243, 40.754078, -73.93178, 40.765088, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '2noF0QUK8GM5qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.0, -74.004598, 40.749387, -73.997585, 40.756087, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IlhfCXv0Agb36w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 8, tzinfo=datetime.timezone.utc), 2, 0.91, -73.985368, 40.747702, -73.993377, 40.7366, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Eykj1rWBO7Argw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 33, tzinfo=datetime.timezone.utc), 1, 0.52, -73.97892, 40.77229, -73.98485, 40.768728, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'cUyTK66g4GvqnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 10, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 0, tzinfo=datetime.timezone.utc), 1, 1.04, -73.987283, 40.750437, -73.990323, 40.743557, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'eACTgL2O83Du8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 10, 24, tzinfo=datetime.timezone.utc), 1, 1.0, -73.965818, 40.79019, -73.961635, 40.779822, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kp0j8jEG9rqPkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 30, tzinfo=datetime.timezone.utc), 2, 0.88, -73.989965, 40.757535, -73.977017, 40.758678, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'xzQIbZF5n/yw5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 37, tzinfo=datetime.timezone.utc), 1, 0.8, -73.986595, 40.739968, -73.981112, 40.749532, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'DROU7nFhU3s8VQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 15, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 12, tzinfo=datetime.timezone.utc), 1, 1.04, -73.972752, 40.762, -73.962898, 40.77505, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '4kA80ZMr7J+ZhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 40, tzinfo=datetime.timezone.utc), 6, 0.72, -73.964842, 40.772457, -73.954743, 40.77232, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'NXoW5g7hEc2eIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 57, tzinfo=datetime.timezone.utc), 2, 0.82, -73.946935, 40.772382, -73.959323, 40.77456, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'bxtkszl4JTuzPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.65, -74.001192, 40.741728, -73.999652, 40.738438, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '72kdCR64WgI+NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 57, tzinfo=datetime.timezone.utc), 1, 0.59, -73.994818, 40.72586, -73.989533, 40.721107, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '3GKdunSbSjrGjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 20, tzinfo=datetime.timezone.utc), 2, 0.99, -73.992778, 40.752985, -73.992135, 40.764003, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Ez+KaadvpHYoeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 21, tzinfo=datetime.timezone.utc), 2, 1.31, -73.959287, 40.78035, -73.945683, 40.791207, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'U/vk1xS4YlpEzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 21, tzinfo=datetime.timezone.utc), 1, 0.79, -73.998005, 40.755932, -73.998005, 40.755932, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'UMB9/6/GXS0MPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 27, tzinfo=datetime.timezone.utc), 5, 0.96, -73.991092, 40.75587, -73.979428, 40.760863, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'wVHLovvtxnt5rQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 6, 14, tzinfo=datetime.timezone.utc), 5, 1.21, -73.994233, 40.751238, -73.98152, 40.76143, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'nGuS0Ghb2rcQsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.0, -74.000407, 40.732422, -73.997422, 40.72487, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '1/oouxv7iqDDOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 39, tzinfo=datetime.timezone.utc), 5, 0.8, -73.98672, 40.739633, -73.999088, 40.74433, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'yuuvR0oX9Dq5/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 29, tzinfo=datetime.timezone.utc), 2, 0.69, -73.975628, 40.755925, -73.975147, 40.763603, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'SSbo0Iy7klgAnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 10, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 10, 52, tzinfo=datetime.timezone.utc), 1, 0.89, -73.978163, 40.764247, -73.972445, 40.756435, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'wwx0Xp9MqUrQFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 50, tzinfo=datetime.timezone.utc), 1, 0.77, -73.992918, 40.72308, -73.986543, 40.733978, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kcqUCT3PUQEkVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 57, tzinfo=datetime.timezone.utc), 1, 0.93, -73.925462, 40.76777, -73.93563, 40.76117, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '1lXA3ikdMPxxOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 17, tzinfo=datetime.timezone.utc), 1, 0.91, -73.988538, 40.748923, -73.977455, 40.751372, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'rpITssp9H2hLcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 27, tzinfo=datetime.timezone.utc), 5, 1.01, -73.96591, 40.763167, -73.95952, 40.774173, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'X21YDjLKJq9JrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 43, tzinfo=datetime.timezone.utc), 3, 0.44, -73.98923, 40.776598, -73.983932, 40.775453, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'l4CSmKU0YwlDkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 18, tzinfo=datetime.timezone.utc), 1, 0.98, -73.992135, 40.730978, -74.005277, 40.728118, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'wYj07qJ/CgSmbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 37, tzinfo=datetime.timezone.utc), 5, 0.55, -73.978063, 40.750063, -73.986833, 40.753717, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'yfkJ93nMY2c8VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 10, tzinfo=datetime.timezone.utc), 1, 0.81, -73.950282, 40.771745, -73.95896, 40.771632, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'lJ6RjOCTdUSJkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 52, tzinfo=datetime.timezone.utc), 1, 0.46, -73.982917, 40.767292, -73.982043, 40.762208, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'RhdRsmkJiRcoSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 29, tzinfo=datetime.timezone.utc), 3, 1.0, -73.988708, 40.748822, -73.991112, 40.758177, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 't8z2IVXGHUgxSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 12, tzinfo=datetime.timezone.utc), 1, 0.88, -73.97391, 40.760523, -73.967502, 40.753548, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ntDwW+JIVbOd3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 14, tzinfo=datetime.timezone.utc), 3, 0.83, -73.97812, 40.750622, -73.971393, 40.75786, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'IvWK+nWC0rGh8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 25, tzinfo=datetime.timezone.utc), 1, 0.81, -73.963968, 40.773733, -73.968048, 40.765415, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'dKFDcs80Df7dYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 39, tzinfo=datetime.timezone.utc), 1, 0.95, -73.968917, 40.764, -73.95706, 40.76824, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ftS3rJ8Df4jV+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 43, tzinfo=datetime.timezone.utc), 1, 0.66, -73.944118, 40.800913, -73.949683, 40.806962, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kV8oTv6L+HERPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 8, tzinfo=datetime.timezone.utc), 1, 1.09, -73.991457, 40.770505, -73.981208, 40.784112, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'LSBjbFTVu9+TRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 20, tzinfo=datetime.timezone.utc), 2, 0.88, -73.995077, 40.760222, -73.982393, 40.759167, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'FVLgoU4G/triuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 28, tzinfo=datetime.timezone.utc), 1, 1.09, -74.003147, 40.727583, -73.993918, 40.741348, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Hj3MIYbv8NNTIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 47, tzinfo=datetime.timezone.utc), 1, 1.16, -73.981513, 40.77867, -73.970895, 40.793282, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '7L/FMfTrKinDfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 4, tzinfo=datetime.timezone.utc), 2, 0.87, -73.956977, 40.777487, -73.967307, 40.772335, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'phB5V7OqTSXTOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 12, 6, tzinfo=datetime.timezone.utc), 1, 1.09, -73.974805, 40.750983, -73.986518, 40.740507, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '0TadDmSTOPtrtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 47, tzinfo=datetime.timezone.utc), 1, 0.66, -73.978458, 40.752958, -73.98594, 40.749067, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'NC4hTsV1va9PKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 9, tzinfo=datetime.timezone.utc), 2, 0.69, -73.979852, 40.766965, -73.964978, 40.76264, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'su/4Q+YBbWJ/7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 55, tzinfo=datetime.timezone.utc), 1, 0.62, -74.007532, 40.70847, -74.011242, 40.70268, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'JFw3oCM1APX1LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 42, tzinfo=datetime.timezone.utc), 1, 0.58, -74.001133, 40.734515, -73.991962, 40.733385, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '7CORy1JUCf1u1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 43, tzinfo=datetime.timezone.utc), 1, 0.75, -73.986932, 40.761553, -73.979632, 40.763713, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 't5Ps8PM+XILMvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 31, tzinfo=datetime.timezone.utc), 1, 0.93, -73.991563, 40.744975, -74.005258, 40.749932, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'tm1XFWkpuI4aMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 42, tzinfo=datetime.timezone.utc), 3, 0.99, -73.979895, 40.743385, -73.971443, 40.755228, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'uV/1PdbqEkmZ+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 10, 26, tzinfo=datetime.timezone.utc), 5, 1.04, -73.975128, 40.755632, -73.963428, 40.757177, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'KllOkK6+maCJUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 11, tzinfo=datetime.timezone.utc), 1, 0.94, -73.989972, 40.757567, -73.9775, 40.757117, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'GUHfixeKF9b6sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 6, tzinfo=datetime.timezone.utc), 1, 0.92, -73.961558, 40.760182, -73.961558, 40.760182, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ljsW9x1EvBWALA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 31, tzinfo=datetime.timezone.utc), 1, 0.64, -73.976948, 40.753958, -73.9783, 40.748577, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'OciTeoUnDYgpwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 5, tzinfo=datetime.timezone.utc), 2, 1.16, -73.971795, 40.743883, -73.97058, 40.756602, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'hLzORAvCRB7CgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 20, tzinfo=datetime.timezone.utc), 5, 0.86, -73.999765, 40.708478, -73.999765, 40.708478, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'ezbl1s3wwHfQxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 8, tzinfo=datetime.timezone.utc), 3, 0.76, -73.956018, 40.76365, -73.949213, 40.771145, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '50I9BXrJgVbudw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 54, tzinfo=datetime.timezone.utc), 1, 0.89, -73.988175, 40.763122, -73.983155, 40.771712, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 's0P49gnVtX9CVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 12, tzinfo=datetime.timezone.utc), 1, 0.93, -73.961373, 40.760135, -73.958115, 40.77127, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'tr446oj43m2cRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 33, tzinfo=datetime.timezone.utc), 2, 0.83, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'uj4T5CRhGmUYQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 32, tzinfo=datetime.timezone.utc), 1, 0.71, -74.00151, 40.746527, -73.995735, 40.740175, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'RyV4tLki41Z4Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 50, tzinfo=datetime.timezone.utc), 1, 0.91, -73.980852, 40.779857, -73.96996, 40.78555, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Miik8/FHQmxjoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 7, tzinfo=datetime.timezone.utc), 5, 1.08, -73.981823, 40.772742, -73.964993, 40.768195, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'kRP7fIxkS1OONg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 4, tzinfo=datetime.timezone.utc), 1, 1.18, -73.998887, 40.745412, -74.004868, 40.731925, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'sXy2VQvaeKyO4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 4, tzinfo=datetime.timezone.utc), 2, 0.65, -73.961547, 40.740572, -73.962135, 40.743098, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'PrfJyRCEppMhLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 33, tzinfo=datetime.timezone.utc), 1, 0.65, -73.995528, 40.725128, -73.988323, 40.72019, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'hrdm2+oK7hvScQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.01, -74.005928, 40.750965, -73.99501, 40.7577, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'FoS6mbuXtP8UJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 11, 14, tzinfo=datetime.timezone.utc), 5, 0.57, -73.98676, 40.758703, -73.985283, 40.756907, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'bEpWda/u/hvOMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 1, tzinfo=datetime.timezone.utc), 1, 0.64, -73.973777, 40.763905, -73.982375, 40.76758, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'RtlHLDaJb64jWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 58, tzinfo=datetime.timezone.utc), 1, 0.61, -73.971798, 40.763443, -73.96506, 40.769392, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'BatiSDl+u7rmzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 6, 50, tzinfo=datetime.timezone.utc), 5, 0.7, -74.002885, 40.72008, -74.007223, 40.728325, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'WHEGpaGXPX/Dqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 57, tzinfo=datetime.timezone.utc), 3, 0.98, -73.993008, 40.72815, -73.983407, 40.738522, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'V0WCI+s6F4sPyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 42, tzinfo=datetime.timezone.utc), 1, 0.85, -73.992673, 40.763602, -74.00279, 40.760563, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'R0cu5NkapGkYeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 41, tzinfo=datetime.timezone.utc), 1, 0.95, -73.99195, 40.735363, -74.00769, 40.741993, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'EqGT6Ghrsu/nGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 25, tzinfo=datetime.timezone.utc), 1, 0.69, -74.002815, 40.707515, -74.013263, 40.702385, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'wJFV6SXFYJ1U0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 23, tzinfo=datetime.timezone.utc), 2, 0.57, -73.988968, 40.758872, -73.981522, 40.75582, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'daprXvSEurVKTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 37, tzinfo=datetime.timezone.utc), 1, 0.98, -73.948325, 40.774075, -73.959477, 40.76667, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'CUNRBUgjnlSHQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 32, tzinfo=datetime.timezone.utc), 1, 0.66, -73.990903, 40.755988, -73.98014, 40.753067, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'buEtsm80YMkIzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 27, tzinfo=datetime.timezone.utc), 5, 0.6, -73.978915, 40.766862, -73.977197, 40.772617, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'nmbkTzekntMuVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 18, tzinfo=datetime.timezone.utc), 1, 0.96, -73.973533, 40.738002, -73.971767, 40.749728, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'hnVaJXeChk1Bbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 10, tzinfo=datetime.timezone.utc), 1, 0.48, -73.989093, 40.754718, -73.987397, 40.759957, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '/g2xoFqolRdGoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 31, tzinfo=datetime.timezone.utc), 1, 0.91, -74.007532, 40.733013, -73.995275, 40.739568, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'EKbO98I+nzu2jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 59, tzinfo=datetime.timezone.utc), 1, 1.16, -73.977793, 40.7462, -73.967107, 40.760787, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'RWGZ7ys9kNhU1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 42, tzinfo=datetime.timezone.utc), 2, 0.72, -73.985638, 40.762925, -73.975163, 40.76042, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '1LZ9xobs24KBPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 31, tzinfo=datetime.timezone.utc), 1, 0.69, -73.984942, 40.73967, -73.991897, 40.748995, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'TQjSVEfPAbMdng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 30, tzinfo=datetime.timezone.utc), 5, 1.07, -73.954057, 40.78719, -73.943795, 40.777848, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '33JjnB7DS+NSqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 24, tzinfo=datetime.timezone.utc), 2, 1.16, -73.953908, 40.779007, -73.943195, 40.793625, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'YdpdNi/SAnf/RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 48, tzinfo=datetime.timezone.utc), 5, 1.03, -73.995023, 40.755275, -73.991737, 40.744925, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'UaAOL7A61cfRtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 33, tzinfo=datetime.timezone.utc), 1, 0.83, -73.982372, 40.751688, -73.981292, 40.755603, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'dYFDCi0rF0gjRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 26, tzinfo=datetime.timezone.utc), 1, 0.81, -73.962082, 40.770508, -73.967137, 40.761177, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', '1ywT3TED/fRlbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 43, tzinfo=datetime.timezone.utc), 3, 1.2, -73.974073, 40.76015, -73.963182, 40.774807, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'BzYKIiBF8BhvQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 44, tzinfo=datetime.timezone.utc), 1, 0.78, -73.982068, 40.745892, -73.97873, 40.755015, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'Lumg4yfAhdDNDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 40, tzinfo=datetime.timezone.utc), 6, 0.67, -73.999732, 40.733533, -73.992458, 40.732462, 'CASH', 4.9, 0.0, 0.0, 0.0, 4.9, '1705685161.48292', 'vJhrrdxZxeVbsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 58, tzinfo=datetime.timezone.utc), 1, 1.11, -73.992247, 40.749802, -73.985233, 40.739637, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'CUtJlyuF0Tp5Iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 17, tzinfo=datetime.timezone.utc), 1, 0.95, -74.007843, 40.72343, -73.997617, 40.714525, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'rX8kcW221IjI6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 51, tzinfo=datetime.timezone.utc), 5, 0.9, -73.983062, 40.755125, -73.971932, 40.752172, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'bTw2qNe8alqkbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 43, tzinfo=datetime.timezone.utc), 2, 0.81, -73.997407, 40.71411, -74.004993, 40.720905, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'g6EZJ/1qgiFEtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 49, tzinfo=datetime.timezone.utc), 1, 0.96, -73.978597, 40.763747, -73.974902, 40.759858, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 's7565UdGdP0Wpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 36, tzinfo=datetime.timezone.utc), 5, 1.15, -73.980802, 40.75965, -73.96405, 40.757902, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BHls3FEErMyjKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 51, tzinfo=datetime.timezone.utc), 1, 0.84, -73.944997, 40.800063, -73.944997, 40.800063, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ceYiIsckSBIV2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 56, tzinfo=datetime.timezone.utc), 1, 0.95, -73.964738, 40.80268, -73.954675, 40.808113, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'G/EwWz7zguxVQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 49, tzinfo=datetime.timezone.utc), 1, 1.1, -73.960047, 40.77457, -73.953868, 40.785323, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'kbGiMmPEbmrUew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 29, tzinfo=datetime.timezone.utc), 2, 0.89, -73.983617, 40.725965, -73.989168, 40.73422, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'B3fDBl3x50FvYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 1, tzinfo=datetime.timezone.utc), 5, 0.91, -73.957353, 40.774357, -73.967743, 40.76773, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '6F3weKP3Vswb7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 17, tzinfo=datetime.timezone.utc), 1, 1.03, -73.982565, 40.748792, -73.98864, 40.749835, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'f2AdJVn5rFrXXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 8, tzinfo=datetime.timezone.utc), 5, 1.2, -73.976848, 40.785092, -73.966677, 40.799977, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'wR4ihKzX4126IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 13, tzinfo=datetime.timezone.utc), 1, 1.15, -73.968965, 40.761013, -73.981628, 40.748857, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gwxFfCma0MOFVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 33, tzinfo=datetime.timezone.utc), 5, 1.05, -73.96875, 40.758703, -73.958822, 40.772125, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'eLRFUEEH+8pmPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 6, tzinfo=datetime.timezone.utc), 1, 1.17, -73.982122, 40.762083, -73.982842, 40.75307, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '16VZeEX8QH5KwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 27, tzinfo=datetime.timezone.utc), 1, 0.97, -73.946607, 40.7711, -73.957017, 40.777813, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'irW2JL9p/PhG9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 8, tzinfo=datetime.timezone.utc), 1, 1.08, -73.986997, 40.72543, -73.999253, 40.728915, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'WI8BvVtNhzKVIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 48, tzinfo=datetime.timezone.utc), 1, 0.56, -74.001195, 40.73183, -73.992327, 40.727412, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Aivv54sD51xcoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 52, tzinfo=datetime.timezone.utc), 2, 0.65, -73.99262, 40.765163, -73.993078, 40.757853, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'g2P6untwByEGBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 15, tzinfo=datetime.timezone.utc), 1, 0.08, -73.982707, 40.748055, -73.97409, 40.751302, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gzcGHhioeHNZ9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 13, tzinfo=datetime.timezone.utc), 1, 0.86, -73.995982, 40.726288, -73.990657, 40.733955, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'jt30JAWQgAhr7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 2, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 2, 9, tzinfo=datetime.timezone.utc), 1, 1.23, -73.983642, 40.763078, -73.991953, 40.75164, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Gm1KxHamYLqKLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 8, tzinfo=datetime.timezone.utc), 1, 0.82, -73.981488, 40.75943, -73.968125, 40.757793, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'klr94DB7o1AjgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 24, tzinfo=datetime.timezone.utc), 1, 0.84, -74.000455, 40.734935, -73.999447, 40.725552, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'DY7Qa3WwnHa1dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 25, tzinfo=datetime.timezone.utc), 2, 0.88, -73.997818, 40.722115, -74.005388, 40.726483, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'nZEw6Wt0M4RKRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 3, tzinfo=datetime.timezone.utc), 4, 0.81, -73.983612, 40.742407, -73.992262, 40.749285, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'aXDpeEhBEWZmjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 21, tzinfo=datetime.timezone.utc), 5, 0.99, -73.984562, 40.742772, -73.99279, 40.730203, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gpIwsW89Q5qEWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 47, tzinfo=datetime.timezone.utc), 5, 1.15, -74.006332, 40.733087, -73.993082, 40.737432, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'OsWinZG214AnrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 44, tzinfo=datetime.timezone.utc), 4, 1.17, -73.960083, 40.738932, -73.957533, 40.738252, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BUXWXCrvYrcwsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 45, tzinfo=datetime.timezone.utc), 1, 1.06, -73.997277, 40.736678, -73.99225, 40.749277, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Tj96ZOKlZyVDVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 18, tzinfo=datetime.timezone.utc), 1, 0.99, -73.991483, 40.760013, -74.000603, 40.747497, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'CZhdVM+D1iGYwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 43, tzinfo=datetime.timezone.utc), 1, 1.36, -73.950123, 40.780165, -73.962543, 40.763392, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'jwOAphN0Q8WrJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 12, tzinfo=datetime.timezone.utc), 2, 1.02, -73.992722, 40.75352, -73.983922, 40.76517, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'R6LJFTwoPRZW7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 39, tzinfo=datetime.timezone.utc), 1, 0.76, -73.983998, 40.744527, -73.992373, 40.74363, 'Credit', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'vMfJbxx0PblXkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 7, tzinfo=datetime.timezone.utc), 1, 0.74, -73.98196, 40.761652, -73.990447, 40.757133, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'xFrzj0TkPUEm7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 36, tzinfo=datetime.timezone.utc), 1, 0.77, -73.98728, 40.744555, -73.979412, 40.752577, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'RCjLow1FdANXkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 13, tzinfo=datetime.timezone.utc), 5, 0.81, -73.992102, 40.74903, -73.981272, 40.747083, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'MCzISzdeuMK0ww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 32, tzinfo=datetime.timezone.utc), 1, 1.06, -73.984898, 40.758605, -73.98634, 40.749567, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'WD/cykLZ9TUdbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 39, tzinfo=datetime.timezone.utc), 1, 0.75, -73.995248, 40.728602, -74.003277, 40.720328, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '1PK2dmvPEsfwoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 54, tzinfo=datetime.timezone.utc), 5, 0.88, -74.033648, 40.6171, -74.028682, 40.629082, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'KMHw4k2QruLL2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 8, tzinfo=datetime.timezone.utc), 2, 0.61, -73.97758, 40.746353, -73.981938, 40.74943, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Q4sUJvXs9sh3Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 7, tzinfo=datetime.timezone.utc), 5, 0.77, -73.990862, 40.736385, -73.992458, 40.743415, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'J+EwktqEfTkOlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 5, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 5, 58, tzinfo=datetime.timezone.utc), 1, 1.17, -73.965155, 40.764545, -73.980045, 40.760937, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '1CMQ1VIWETZSsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 35, tzinfo=datetime.timezone.utc), 1, 0.68, -73.992153, 40.759252, -74.002688, 40.760672, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'CDmt8t5Cv7Nlag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 19, tzinfo=datetime.timezone.utc), 5, 0.89, -73.978308, 40.748275, -73.982852, 40.737755, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'EKcpS4MShFxSCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 51, tzinfo=datetime.timezone.utc), 2, 1.34, -73.973197, 40.760553, -73.961147, 40.776443, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '7JOZCJn80DiJFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 57, tzinfo=datetime.timezone.utc), 1, 0.9, -73.991207, 40.760398, -73.990425, 40.750508, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'IHaq07lNs+fbJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 3, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 3, 32, tzinfo=datetime.timezone.utc), 2, 0.94, -74.000323, 40.728975, -73.987402, 40.726712, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'acwh3Cmnp1EsZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 42, tzinfo=datetime.timezone.utc), 1, 0.87, -73.963765, 40.774285, -73.968388, 40.76734, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'kgb0o5IoQD8H5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 52, tzinfo=datetime.timezone.utc), 1, 0.84, -73.976778, 40.752005, -73.974588, 40.758157, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gTjs0XOIsyIx9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 33, tzinfo=datetime.timezone.utc), 1, 0.91, -73.967023, 40.772605, -73.965203, 40.763688, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'io2U00FSKXIeLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 32, tzinfo=datetime.timezone.utc), 2, 0.91, -73.942185, 40.806315, -73.93729, 40.797635, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'dQdfasbsdYWkAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 17, tzinfo=datetime.timezone.utc), 1, 0.81, -73.99143, 40.684317, -73.978918, 40.679785, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'DQmAId0oKE8wPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 45, tzinfo=datetime.timezone.utc), 2, 0.58, -73.957215, 40.770325, -73.970023, 40.761138, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '38dihsX+WAdJhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 57, tzinfo=datetime.timezone.utc), 2, 0.82, -73.95419, 40.778665, -73.954163, 40.786238, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BavsFlcTbLESOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 43, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980332, 40.754015, -73.99138, 40.745767, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Uvd8xYoAnJU20w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 23, 22, tzinfo=datetime.timezone.utc), 1, 0.92, -73.980505, 40.765652, -73.98934, 40.773235, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'D4PHkPJ8SUFQ7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 10, tzinfo=datetime.timezone.utc), 3, 0.77, -74.005443, 40.733238, -73.998302, 40.735255, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'J4ced4OygmBROw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 0, tzinfo=datetime.timezone.utc), 3, 0.82, -73.984352, 40.769933, -73.972985, 40.764335, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'LQJ56dfmZnAaAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 4, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 4, 44, tzinfo=datetime.timezone.utc), 5, 0.87, -73.998477, 40.741415, -73.992725, 40.745628, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'l3KUVk3vSNhHeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 4, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 43, tzinfo=datetime.timezone.utc), 1, 1.02, -73.985058, 40.728138, -74.002268, 40.733837, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'K3rQFuCE4BWqYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 54, tzinfo=datetime.timezone.utc), 1, 0.88, -73.986877, 40.761248, -73.973145, 40.755997, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'y0D2LAyKaB/uWg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 41, tzinfo=datetime.timezone.utc), 2, 0.92, -73.984377, 40.754773, -73.969963, 40.750405, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'yLwew0GgXoVS9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 4, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 4, 22, tzinfo=datetime.timezone.utc), 4, 1.12, -74.002422, 40.75023, -73.989758, 40.757072, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '+lU00ankBPRiEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 41, tzinfo=datetime.timezone.utc), 5, 0.69, -74.002327, 40.740023, -73.99347, 40.742325, 'Credit', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BT998cAQbRoZ/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 46, tzinfo=datetime.timezone.utc), 1, 0.97, -73.968078, 40.799522, -73.973067, 40.788625, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'qkPsV294ZoEDAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 5, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 5, 57, tzinfo=datetime.timezone.utc), 1, 0.67, -73.980725, 40.745127, -73.978158, 40.751587, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'prtsmzoZ8/rLIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 18, tzinfo=datetime.timezone.utc), 1, 1.14, -73.983408, 40.73835, -73.977035, 40.751542, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Czmk2xa7aEFyDw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 39, tzinfo=datetime.timezone.utc), 1, 1.0, -73.992925, 40.75314, -74.002513, 40.755103, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'LR9MojIu/KillQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 48, tzinfo=datetime.timezone.utc), 1, 0.64, -73.989427, 40.739843, -73.998657, 40.740163, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'MjlY8Yqj2t/O8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 44, tzinfo=datetime.timezone.utc), 1, 0.09, -73.989935, 40.734537, -73.98224, 40.742637, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '7LxkbGyJpvxWGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 24, tzinfo=datetime.timezone.utc), 1, 1.04, -73.998727, 40.72979, -73.987933, 40.72264, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BRSIcvMQDc7lBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 2, tzinfo=datetime.timezone.utc), 1, 0.72, -73.994665, 40.728255, -74.002583, 40.726453, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ojZL+GDs5egZOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 15, tzinfo=datetime.timezone.utc), 1, 1.21, -73.982915, 40.754618, -73.981087, 40.768208, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '9mHDoF25261knw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 30, tzinfo=datetime.timezone.utc), 1, 1.32, -73.974528, 40.788255, -73.962515, 40.804728, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'vE1AZnm/rVKInQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 3, 15, tzinfo=datetime.timezone.utc), 4, 0.92, -73.935467, 40.761247, -73.921128, 40.756843, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'YcA3mbxjcBxZRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 20, tzinfo=datetime.timezone.utc), 2, 0.81, 0.0, 0.0, 0.0, 0.0, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'WG5TK0U+nrB1Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 36, tzinfo=datetime.timezone.utc), 1, 1.0, -73.981995, 40.762925, -73.991383, 40.74987, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'AjWNH/1ooe8NEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 32, tzinfo=datetime.timezone.utc), 1, 1.12, -73.996377, 40.737835, -74.0008, 40.746308, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '2iZdY65FXMZ9EA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 34, tzinfo=datetime.timezone.utc), 1, 1.11, -73.971222, 40.751212, -73.981418, 40.73706, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '7cpbu7IP6eZXkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 16, tzinfo=datetime.timezone.utc), 5, 0.81, -74.003205, 40.723002, -73.992203, 40.725043, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'HXa030aInd5NtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 58, tzinfo=datetime.timezone.utc), 5, 0.68, -73.969112, 40.785603, -73.978235, 40.787505, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'AVIsJ12drMtFpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 28, tzinfo=datetime.timezone.utc), 1, 0.54, -73.986018, 40.756695, -73.991397, 40.750473, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Xi7iHtSzYlpPnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 25, tzinfo=datetime.timezone.utc), 1, 0.81, -73.989462, 40.744545, -73.990772, 40.752548, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'xmHEtOhNtgov6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 4, 51, tzinfo=datetime.timezone.utc), 1, 0.98, -74.006295, 40.717072, -73.99536, 40.721565, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'AcRagubCbj29yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 24, tzinfo=datetime.timezone.utc), 2, 0.84, -73.996125, 40.726728, -73.98904, 40.71924, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'mWBSBFJDsYCJjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 3, tzinfo=datetime.timezone.utc), 1, 1.02, -73.906072, 40.750968, -73.907245, 40.752235, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ysiHqVO5IDl4sA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 17, tzinfo=datetime.timezone.utc), 1, 0.84, -73.983407, 40.756007, -73.97399, 40.753247, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ejlvQ8RuliW03A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 2, tzinfo=datetime.timezone.utc), 5, 0.87, -73.991005, 40.735045, -73.980822, 40.738095, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Zqr+uBw8BFg9uQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 1, 8, tzinfo=datetime.timezone.utc), 1, 0.92, -73.984768, 40.759723, -73.988495, 40.748372, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'I+OBlpqljiVSeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 27, tzinfo=datetime.timezone.utc), 1, 1.14, -73.990412, 40.73714, -73.996933, 40.747693, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'xuUk9YQsmeAD8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 37, tzinfo=datetime.timezone.utc), 1, 0.07, -73.99114, 40.727862, -73.987612, 40.721567, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'z/P1lan/wBGDmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 15, tzinfo=datetime.timezone.utc), 1, 1.22, -73.97075, 40.788608, -73.983693, 40.778707, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'XhsF0igt7dgNEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 35, tzinfo=datetime.timezone.utc), 1, 0.97, -73.993707, 40.756953, -73.998857, 40.745388, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ISoHp8MKlm/O6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.19, -73.966223, 40.770492, -73.95517, 40.785655, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'cw/0DiZysOg/JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 24, tzinfo=datetime.timezone.utc), 1, 1.24, -73.97213, 40.786392, -73.982267, 40.770907, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'ZwR2SNqnnTH9rQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 20, tzinfo=datetime.timezone.utc), 5, 1.09, -73.9817, 40.778357, -73.980415, 40.765727, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'f7s+rWrJNWDHqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 58, tzinfo=datetime.timezone.utc), 2, 1.26, -74.001488, 40.7411, -73.989787, 40.757048, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'xsxlCvahINMflQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 7, tzinfo=datetime.timezone.utc), 1, 0.92, -73.984617, 40.768522, -73.976978, 40.762612, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'jgHLtIWI4GK43A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 26, tzinfo=datetime.timezone.utc), 1, 0.93, -73.978748, 40.736988, -73.993767, 40.743353, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '0nI2E/qyGbqmVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 48, tzinfo=datetime.timezone.utc), 1, 1.0, -73.953245, 40.782562, -73.959345, 40.77156, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Zwb7ogyL0lFMGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 21, tzinfo=datetime.timezone.utc), 1, 1.0, -73.959007, 40.771553, -73.968968, 40.761018, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'peLa420ITWXLWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 2, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 2, 21, tzinfo=datetime.timezone.utc), 1, 1.23, -73.993163, 40.76266, -73.983235, 40.77577, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'duiIyQkBTS8icQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.17, -73.997887, 40.73589, -74.004533, 40.746177, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '8c2WqSjHQTl46Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 7, tzinfo=datetime.timezone.utc), 1, 1.02, -73.995398, 40.749602, -74.005008, 40.741315, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'smTdiF3Uhohazg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 28, tzinfo=datetime.timezone.utc), 1, 0.81, -73.958147, 40.773237, -73.953725, 40.766698, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'qf6fC9Nc0S/qoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 26, tzinfo=datetime.timezone.utc), 6, 0.88, -73.959718, 40.771115, -73.956295, 40.781233, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'LpzxI8d6DEyRww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 13, tzinfo=datetime.timezone.utc), 3, 0.95, -73.980708, 40.73399, -73.990018, 40.725562, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'fHUV2eDVpu4K9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 59, tzinfo=datetime.timezone.utc), 1, 0.87, -73.95503, 40.780355, -73.95503, 40.780355, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'vrhWgalMJjtfpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 9, tzinfo=datetime.timezone.utc), 2, 0.85, -73.980645, 40.765377, -73.970905, 40.760665, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'njy1GUjm3rWUqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 55, tzinfo=datetime.timezone.utc), 1, 0.84, -73.985502, 40.73831, -73.99186, 40.729845, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'XylgNfvSsTFPow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 49, tzinfo=datetime.timezone.utc), 3, 0.89, -73.97871, 40.752127, -73.991597, 40.758872, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'fuizAQqUi/A5cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 15, tzinfo=datetime.timezone.utc), 1, 0.78, -73.970602, 40.762232, -73.98017, 40.765638, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'nPfAXI2X1MAR3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 24, tzinfo=datetime.timezone.utc), 1, 1.19, -73.980328, 40.765608, -73.977573, 40.753232, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', '6AXUfmBpGSHj2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 6, tzinfo=datetime.timezone.utc), 1, 0.93, -74.004283, 40.742662, -73.994662, 40.750532, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'wwVaf6TwP/50nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 20, tzinfo=datetime.timezone.utc), 5, 0.99, -73.981955, 40.776847, -73.981308, 40.787917, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gLTpKHOGLzAlLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 17, tzinfo=datetime.timezone.utc), 1, 0.96, -74.006072, 40.735172, -73.993328, 40.732892, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'raqa4P3KxPBCGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 22, tzinfo=datetime.timezone.utc), 6, 0.84, -73.990975, 40.755298, -73.993362, 40.764425, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'evF9tdGoYviVlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 4, tzinfo=datetime.timezone.utc), 1, 0.77, -73.977562, 40.762133, -73.977738, 40.753268, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'OSANtFLshrjuqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 23, 35, tzinfo=datetime.timezone.utc), 1, 0.93, -73.991003, 40.736263, -73.982062, 40.740442, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'AJ+488lQYsv2sQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 23, tzinfo=datetime.timezone.utc), 5, 0.84, -73.948863, 40.710682, -73.948863, 40.710682, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'sjAkqD/4/YRj8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), 1, 1.23, -73.97071, 40.747793, -73.95924, 40.762223, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'CwZQgealMtqWUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 37, tzinfo=datetime.timezone.utc), 1, 0.67, -73.998857, 40.734003, -74.000563, 40.728897, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'Sq8jVSYUYieucQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 2, tzinfo=datetime.timezone.utc), 1, 0.87, -73.994557, 40.726015, -73.998415, 40.73402, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'F2eEuOt4S7lBNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 53, tzinfo=datetime.timezone.utc), 1, 1.09, -73.992427, 40.758455, -74.002897, 40.750142, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'We7B8/3YJ6BWrw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 0, tzinfo=datetime.timezone.utc), 5, 0.67, -73.99357, 40.721517, -74.002845, 40.72348, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'cv8uAKMIoAU1xw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 21, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 21, 14, tzinfo=datetime.timezone.utc), 2, 1.14, -74.010822, 40.705443, -74.005627, 40.718083, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'BC9+MlWBAiPH+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 21, tzinfo=datetime.timezone.utc), 1, 1.1, -73.960552, 40.781297, -73.97752, 40.788778, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'sakOd/x7mI4Y2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 20, tzinfo=datetime.timezone.utc), 4, 0.92, -73.952793, 40.786502, -73.953093, 40.776803, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'zJRdX3IoERScgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 33, tzinfo=datetime.timezone.utc), 1, 1.26, -73.992153, 40.76411, -73.982342, 40.77973, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'zYs/Fgejf8E5XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 14, tzinfo=datetime.timezone.utc), 5, 0.82, -73.979887, 40.760348, -73.985347, 40.756797, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'auIkHzRFMewgLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 31, tzinfo=datetime.timezone.utc), 1, 1.0, -73.98429, 40.752468, -73.972645, 40.749045, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'DF9Kmz7G0kaf7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 6, tzinfo=datetime.timezone.utc), 2, 0.88, -73.982122, 40.757785, -73.969357, 40.754957, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'sYhCZQgyWK2MQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 46, tzinfo=datetime.timezone.utc), 1, 0.91, -73.999227, 40.728228, -73.98582, 40.727937, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'J7WSQgV7XQI4pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 29, tzinfo=datetime.timezone.utc), 1, 1.1, -74.001073, 40.741845, -73.991328, 40.755347, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'HtmkIxK3KDmSWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 2, 29, tzinfo=datetime.timezone.utc), 1, 1.0, -73.98624, 40.761618, -73.98624, 40.761618, 'CASH', 4.9, 0.5, 0.0, 0.0, 5.4, '1705685161.48292', 'gL1yDNmPBUL/LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 44, tzinfo=datetime.timezone.utc), 3, 1.02, -74.310373, 40.818795, -74.303723, 40.806272, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '1eRtOtm23wqD0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 27, tzinfo=datetime.timezone.utc), 5, 0.62, -73.998985, 40.73074, -73.990118, 40.729158, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'fPDbCWvBDSmXDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.76, -73.98959, 40.733653, -73.982425, 40.739502, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '+OBm0wVTh98fpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 20, tzinfo=datetime.timezone.utc), 5, 0.6, -73.979572, 40.745562, -73.987068, 40.749562, 'Credit', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'IcBxrU5okqMk6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 31, tzinfo=datetime.timezone.utc), 1, 0.93, -73.97194, 40.750093, -73.97194, 40.750093, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'TgS7//9tv2sqoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 21, tzinfo=datetime.timezone.utc), 1, 0.98, -74.000962, 40.746297, -73.986668, 40.738793, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'HAwjY4D823QiLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 17, tzinfo=datetime.timezone.utc), 1, 1.04, -73.953433, 40.79102, -73.955843, 40.779647, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'DiBStNHF45In1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 31, tzinfo=datetime.timezone.utc), 2, 1.06, -73.9553, 40.764298, -73.950283, 40.775587, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '9nrsfGtGUmnVBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 10, tzinfo=datetime.timezone.utc), 1, 0.66, -73.955767, 40.76774, -73.957582, 40.774433, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '9F5MgySBmwcfRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 51, tzinfo=datetime.timezone.utc), 2, 0.92, -73.992182, 40.715397, -73.985417, 40.72755, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'QpUoLEbgPjttZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 54, tzinfo=datetime.timezone.utc), 2, 0.78, -73.976018, 40.744782, -73.977225, 40.7518, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'MNcoovspJ8Dddg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 50, tzinfo=datetime.timezone.utc), 3, 1.1, -73.966363, 40.76235, -73.956283, 40.775403, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '//cmus+A+OXbOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 42, tzinfo=datetime.timezone.utc), 2, 1.15, -73.974267, 40.763048, -73.9595, 40.76762, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'lJlRoOQX6Qmpzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 53, tzinfo=datetime.timezone.utc), 1, 0.67, -73.960508, 40.79756, -73.963062, 40.803912, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'U3oA0e7azuhMAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 1, tzinfo=datetime.timezone.utc), 1, 0.85, -73.958652, 40.780617, -73.944785, 40.775127, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'JaDzda36Rz1G1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 37, tzinfo=datetime.timezone.utc), 1, 0.9, -73.989205, 40.721813, -73.989205, 40.721813, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'X7z41EMQKPQDAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 50, tzinfo=datetime.timezone.utc), 2, 0.94, -73.95322, 40.76975, -73.963208, 40.758995, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'BKBicfX8kRsKPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 42, tzinfo=datetime.timezone.utc), 1, 1.03, -73.982168, 40.76746, -73.977517, 40.779337, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'JVOy+bgzKG++bQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.97, -73.96758, 40.756343, -73.977502, 40.746327, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'E1tF0gy9umWJUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 16, 17, tzinfo=datetime.timezone.utc), 2, 1.08, -74.0052, 40.735688, -73.996832, 40.746293, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '2ITZH9K1zMqlaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 30, tzinfo=datetime.timezone.utc), 1, 1.03, -73.972247, 40.786423, -73.959698, 40.779508, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '7sWvnZutG4DEow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 57, tzinfo=datetime.timezone.utc), 1, 0.86, -73.994612, 40.740252, -73.985557, 40.746962, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'Q1ZXpWi/YfoEiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 39, tzinfo=datetime.timezone.utc), 5, 0.48, -73.988085, 40.749828, -73.983237, 40.755155, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'xsxXa8f7h1xzFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 15, tzinfo=datetime.timezone.utc), 1, 0.73, -73.981598, 40.768618, -73.981433, 40.760027, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'E6y+781JZIc8HQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 19, tzinfo=datetime.timezone.utc), 1, 0.6, -73.982113, 40.728018, -73.983827, 40.721393, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'PWJvzSIPKjb6cA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 5, tzinfo=datetime.timezone.utc), 1, 0.66, -73.96605, 40.80507, -73.959323, 40.799592, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'RG8TIqsvPCp/eQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 25, tzinfo=datetime.timezone.utc), 1, 0.95, -74.00146, 40.746405, -74.004425, 40.733548, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'FtwqkwpCWRuvqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 38, tzinfo=datetime.timezone.utc), 2, 0.66, -74.00062, 40.73748, -74.008073, 40.73752, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'B5QvqYpEvHaeUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 40, tzinfo=datetime.timezone.utc), 5, 0.75, -73.96471, 40.760225, -73.976803, 40.764093, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '3I/zEAnTI6Y7oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 54, tzinfo=datetime.timezone.utc), 1, 0.57, -73.973375, 40.760602, -73.977698, 40.76638, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '60b19cnlcyoEuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 43, tzinfo=datetime.timezone.utc), 5, 0.91, -73.99448, 40.755837, -73.99753, 40.745743, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'J4KQJEJzmskK+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 22, tzinfo=datetime.timezone.utc), 5, 0.24, -73.991465, 40.760835, -73.996732, 40.762992, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'Vx8MJ6+TaLm3eA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 44, tzinfo=datetime.timezone.utc), 1, 0.9, -73.994693, 40.734775, -73.997487, 40.724528, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '0j3aFCxvpce76Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 23, tzinfo=datetime.timezone.utc), 1, 0.92, -73.981002, 40.759595, -73.98204, 40.758735, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'P6vf2ouL+CDM8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 59, tzinfo=datetime.timezone.utc), 5, 1.23, -73.982328, 40.77391, -73.973237, 40.790015, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'LomaDrGTZr3BDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 58, tzinfo=datetime.timezone.utc), 2, 0.67, -73.987443, 40.744735, -73.986923, 40.750865, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'MlRDxjuqpQ0z5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 28, tzinfo=datetime.timezone.utc), 3, 0.37, -73.998505, 40.724638, -74.002318, 40.720177, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'HmrC0X83zQWBHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 40, tzinfo=datetime.timezone.utc), 5, 0.7, -74.001208, 40.741517, -73.994845, 40.750292, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'w1//woDU40/R0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 11, tzinfo=datetime.timezone.utc), 1, 0.99, -73.996848, 40.75262, -73.993478, 40.743195, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'IwrJgkoQxXJiAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 12, tzinfo=datetime.timezone.utc), 2, 1.11, -73.963775, 40.76573, -73.953185, 40.778513, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'Dbq4AMGDqgadFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 47, tzinfo=datetime.timezone.utc), 2, 0.97, -73.956132, 40.798655, -73.950623, 40.811555, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'KWYoAj4H4qz3ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.0, -73.973058, 40.755558, -73.982855, 40.745077, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'bVDKIa0/AhFKeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 51, tzinfo=datetime.timezone.utc), 1, 0.99, -73.950862, 40.710993, -73.96342, 40.715398, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '6hT9zB59/q9/Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 4, tzinfo=datetime.timezone.utc), 1, 0.8, -73.994032, 40.726783, -73.994465, 40.734968, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'ZZ2WWGCGFRKowA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 13, tzinfo=datetime.timezone.utc), 1, 1.01, -73.94907, 40.781835, -73.958773, 40.771522, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'Rw4j2m508g2r2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 54, tzinfo=datetime.timezone.utc), 5, 0.99, -73.960083, 40.762475, -73.953653, 40.774437, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'BEw3S1pI+zzCMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 30, tzinfo=datetime.timezone.utc), 1, 0.95, -73.9719, 40.782127, -73.966315, 40.773637, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'f93AFknBjJ+CeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 27, tzinfo=datetime.timezone.utc), 1, 0.73, -74.005562, 40.739838, -74.003322, 40.730092, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '46HJH9JL0UzGIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 45, tzinfo=datetime.timezone.utc), 1, 0.54, -74.002882, 40.723398, -74.00719, 40.727458, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'qkntasHRhnh2uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 44, tzinfo=datetime.timezone.utc), 5, 0.55, -73.969115, 40.757462, -73.968058, 40.753078, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'fi3frU6qjbkU4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 53, tzinfo=datetime.timezone.utc), 5, 0.98, -73.946862, 40.77263, -73.959702, 40.770928, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'r0mbvDTlnZgt8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 11, tzinfo=datetime.timezone.utc), 5, 0.72, -74.008948, 40.710922, -74.005057, 40.718523, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'SoT5jr8GXrJSSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), 5, 0.38, -73.977813, 40.763862, -73.971715, 40.760987, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'QsrZTdTtnrlm2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 9, tzinfo=datetime.timezone.utc), 3, 0.67, -73.973263, 40.7469, -73.977912, 40.74579, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'VNd8nNusNOPePA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 23, tzinfo=datetime.timezone.utc), 5, 0.77, -73.968788, 40.7543, -73.970682, 40.76175, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'N8ZH39r8i52mKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 8, tzinfo=datetime.timezone.utc), 1, 0.78, -73.991442, 40.770245, -73.97896, 40.76727, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'f7m8v/LwWB3jtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 8, tzinfo=datetime.timezone.utc), 1, 0.64, -74.011868, 40.703275, -74.017698, 40.705018, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'nE9uSZdYIFRocQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 20, tzinfo=datetime.timezone.utc), 1, 0.97, -73.953905, 40.778947, -73.944788, 40.787268, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'SeP/B+S3qQEqVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 26, tzinfo=datetime.timezone.utc), 1, 0.81, -73.970363, 40.79923, -73.965118, 40.791823, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'SEO44Ny7yQAWHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 36, tzinfo=datetime.timezone.utc), 1, 1.12, -73.978233, 40.752552, -73.982953, 40.739298, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'J5Qr3doZ2MRQeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 4, tzinfo=datetime.timezone.utc), 1, 0.72, -73.986958, 40.729223, -73.979055, 40.723788, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'NtJTFDCQ+o3P/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 43, tzinfo=datetime.timezone.utc), 1, 0.92, -73.973178, 40.757707, -73.977813, 40.74876, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'lcxfX3P37bL0eA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 55, tzinfo=datetime.timezone.utc), 1, 0.92, -73.98113, 40.730747, -73.974633, 40.722175, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '4OI7PHTezjwN3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 38, tzinfo=datetime.timezone.utc), 5, 0.95, -73.978067, 40.776233, -73.978067, 40.776233, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 's5oea/shYQXJYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 2, tzinfo=datetime.timezone.utc), 5, 1.22, -74.002338, 40.729317, -74.004803, 40.740768, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'CjeKkHUY1sNLIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 11, tzinfo=datetime.timezone.utc), 5, 0.87, -73.967798, 40.767168, -73.959412, 40.777168, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'yzMIJDcZPnqtYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 10, tzinfo=datetime.timezone.utc), 1, 1.01, -73.986962, 40.779043, -73.976872, 40.790193, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'nQ9Emf4HpI02Bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 22, tzinfo=datetime.timezone.utc), 1, 0.87, -73.967067, 40.760805, -73.959083, 40.771757, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'pVE3mKdVMwn+pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 43, tzinfo=datetime.timezone.utc), 1, 1.13, -73.947295, 40.784122, -73.95446, 40.770618, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'dOt+ELGIV+JWZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 13, tzinfo=datetime.timezone.utc), 5, 0.91, -73.96481, 40.755877, -73.956222, 40.767395, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'IYknFnfqbvVMSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 37, tzinfo=datetime.timezone.utc), 4, 1.06, -73.971698, 40.781813, -73.978625, 40.78991, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'F3XgEfDbeLMSNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 37, tzinfo=datetime.timezone.utc), 1, 1.13, -73.975738, 40.776413, -73.962377, 40.776417, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'aeGv+N885ssbvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 0, tzinfo=datetime.timezone.utc), 1, 0.91, -73.981695, 40.747423, -73.976697, 40.75604, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'y3WMM7NPWzO2Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 15, tzinfo=datetime.timezone.utc), 1, 1.27, -73.994513, 40.758293, -73.983208, 40.771515, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '5wnb1Xh6aU8dUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 26, tzinfo=datetime.timezone.utc), 1, 1.04, -73.844603, 40.721923, -73.853832, 40.711055, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'IznjWyIn0IcWaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 54, tzinfo=datetime.timezone.utc), 1, 0.86, -73.964585, 40.760223, -73.972125, 40.750105, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'Ud0okL/Pmyvipg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 34, tzinfo=datetime.timezone.utc), 1, 1.04, -73.971547, 40.781475, -73.969727, 40.791328, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'aiB7rAqRoT1k5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 17, tzinfo=datetime.timezone.utc), 1, 1.12, -73.95352, 40.790982, -73.954363, 40.779417, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'lz4Akxwo0Ud9xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 10, tzinfo=datetime.timezone.utc), 2, 0.91, -73.980683, 40.733855, -73.989803, 40.741678, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', 'RpepGU14t5xfDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 26, tzinfo=datetime.timezone.utc), 3, 0.61, -73.955685, 40.77025, -73.964888, 40.771637, 'CASH', 4.9, 1.0, 0.0, 0.0, 5.9, '1705685161.48292', '6Z3b4IMDvTQhCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 59, tzinfo=datetime.timezone.utc), 5, 1.58, -73.994842, 40.731598, -73.987633, 40.749988, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '3nBUdi7owXDoIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 9, tzinfo=datetime.timezone.utc), 1, 1.48, -73.991237, 40.750177, -73.97799, 40.7584, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Ggev4DDPmCGgZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 35, tzinfo=datetime.timezone.utc), 1, 2.05, -73.997665, 40.761917, -73.976245, 40.776498, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'IrkqQn7VBrSGoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 20, tzinfo=datetime.timezone.utc), 1, 1.45, -73.959925, 40.766507, -73.982202, 40.774602, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '5jigo+Wbe1e6KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 19, tzinfo=datetime.timezone.utc), 1, 1.6, -73.989685, 40.755997, -73.980085, 40.775368, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'CaGYRGjU2fCiIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 56, tzinfo=datetime.timezone.utc), 5, 1.15, -73.98555, 40.755868, -73.970915, 40.748273, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'sKe/ihRypRwSJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 51, tzinfo=datetime.timezone.utc), 1, 0.9, -73.975315, 40.755477, -73.976963, 40.763968, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'AW16/Q2hPRXoqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 19, 35, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 44, 13, tzinfo=datetime.timezone.utc), 1, 1.4, -73.982384, 40.768265, -73.963156, 40.764268, 'Cash', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'i/f6GNkE+S/OXw', 1.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 23, tzinfo=datetime.timezone.utc), 5, 1.14, -73.990057, 40.763788, -73.976465, 40.754982, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '5Q/ujcvuGJWPcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.66, -73.995978, 40.749938, -73.99054, 40.757508, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'GHUEAvoRVE+Wpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 40, tzinfo=datetime.timezone.utc), 2, 1.28, -73.992308, 40.753272, -73.971398, 40.744422, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'F6Fjig1YOiRf2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 16, tzinfo=datetime.timezone.utc), 2, 1.42, -73.979897, 40.762577, -73.989268, 40.776702, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'yTXpjDs/fb+2yQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 36, tzinfo=datetime.timezone.utc), 5, 1.98, -73.969658, 40.75494, -73.983172, 40.731383, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '2HxvbsE7geIl1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 22, tzinfo=datetime.timezone.utc), 1, 1.71, -73.967658, 40.76531, -73.9544, 40.786357, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'UzVfLSNcKzD/Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 44, tzinfo=datetime.timezone.utc), 1, 1.56, -73.992425, 40.72095, -74.010305, 40.711552, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'sBvbw3kKP0MDRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 12, 26, tzinfo=datetime.timezone.utc), 1, 1.15, -73.993725, 40.749563, -73.986403, 40.75816, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'YyhJEnI6NaGq/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 27, tzinfo=datetime.timezone.utc), 1, 2.16, -73.97674, 40.75771, -73.953887, 40.786937, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'VmHKK9Oyov6zZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 23, tzinfo=datetime.timezone.utc), 1, 1.83, -73.918735, 40.743523, -73.919065, 40.742998, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '6hBvypg/dHX0Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 13, tzinfo=datetime.timezone.utc), 1, 1.77, -73.980268, 40.780502, -73.997758, 40.761672, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'e5pfAAQM6JSX2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 52, tzinfo=datetime.timezone.utc), 1, 1.77, -73.973413, 40.795153, -73.98827, 40.779317, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'jCppQnQXtg/4tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 25, tzinfo=datetime.timezone.utc), 1, 1.42, -73.966518, 40.767087, -73.979073, 40.750578, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'KCWcZHAgwen5kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 26, tzinfo=datetime.timezone.utc), 2, 0.8, -73.97793, 40.751727, -73.980333, 40.762403, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'g2LT+7j7Vh/7Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 24, tzinfo=datetime.timezone.utc), 5, 1.41, -73.97406, 40.743065, -73.992407, 40.74168, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'icMM/jhOSa23Og', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 58, tzinfo=datetime.timezone.utc), 3, 1.57, -73.99249, 40.758657, -73.994813, 40.74135, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '99DjLyXZ0nBi1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 13, tzinfo=datetime.timezone.utc), 1, 1.16, -73.984345, 40.728768, -73.996437, 40.723745, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '8JH8YKG2I5vPwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 54, tzinfo=datetime.timezone.utc), 1, 0.92, -73.984672, 40.76094, -73.981803, 40.765348, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'pO8Mz6gM+BowCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 36, tzinfo=datetime.timezone.utc), 5, 1.83, -73.99218, 40.758917, -73.994102, 40.739348, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '1Lbe4H07/t0fgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 27, 17, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 17, 30, 53, tzinfo=datetime.timezone.utc), 1, 1.3, -74.00695, 40.748846, -73.989301, 40.740986, 'Cash', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'jcoZZfqXbV/17g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 34, tzinfo=datetime.timezone.utc), 5, 1.63, -73.969228, 40.793622, -73.953075, 40.809797, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'd1qkU7hyOTmTGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 16, tzinfo=datetime.timezone.utc), 3, 1.5, -73.97962, 40.749462, -73.979808, 40.74987, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'NHkhyFIrqF2dxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 44, tzinfo=datetime.timezone.utc), 1, 1.37, -73.952068, 40.78623, -73.945812, 40.773593, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'dKnBF+KM5nMJDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 13, 9, tzinfo=datetime.timezone.utc), 4, 2.06, -73.964815, 40.7612, -73.982672, 40.735423, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'OilnBcfdrzklvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 33, tzinfo=datetime.timezone.utc), 2, 0.81, -73.97572, 40.748785, -73.978572, 40.756672, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'tZEWqsQqanvLnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 18, tzinfo=datetime.timezone.utc), 1, 1.31, -73.990982, 40.765705, -73.976727, 40.754887, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'N80iYTsdWv5nIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 22, tzinfo=datetime.timezone.utc), 1, 0.81, -73.965278, 40.755247, -73.974533, 40.76159, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'PHYVLnowvaFIsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 42, tzinfo=datetime.timezone.utc), 2, 1.51, -73.990528, 40.746092, -73.975187, 40.756307, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'wjMOjvSyIPCjvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 43, tzinfo=datetime.timezone.utc), 1, 1.14, -73.99034, 40.756052, -73.976695, 40.761413, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Vtrg6nO98/Jdjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 54, tzinfo=datetime.timezone.utc), 1, 1.66, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'xT/0Aw6umdwagg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 58, tzinfo=datetime.timezone.utc), 2, 1.72, -73.980338, 40.734587, -73.970595, 40.755195, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'mnLTbzFx1KcFnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 49, tzinfo=datetime.timezone.utc), 2, 1.45, -73.984377, 40.748755, -73.984513, 40.73223, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '0OiQPHA1Z/yVzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 33, tzinfo=datetime.timezone.utc), 5, 1.07, -73.973243, 40.761722, -73.982063, 40.774845, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'hmWx+bLfkkhBfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 20, tzinfo=datetime.timezone.utc), 6, 1.25, -74.009218, 40.716322, -74.017065, 40.711363, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '66xnvNrs1WynyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 17, tzinfo=datetime.timezone.utc), 1, 1.9, -73.969008, 40.750632, -73.950282, 40.771618, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'hSgdvOjc11m0xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 15, tzinfo=datetime.timezone.utc), 1, 1.38, -73.986867, 40.764302, -73.996822, 40.747267, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Ca/3CtItQkFWFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 27, tzinfo=datetime.timezone.utc), 1, 1.77, -73.956725, 40.778163, -73.97499, 40.761938, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ewXpG8dGpeiJrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 9, tzinfo=datetime.timezone.utc), 1, 0.59, -73.972663, 40.749822, -73.979567, 40.748955, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ggloLolZC+MxVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 8, tzinfo=datetime.timezone.utc), 5, 1.25, -73.992153, 40.74867, -73.976415, 40.749185, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Na3w92bQTiNryw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.68, -73.976108, 40.78865, -73.9646, 40.808302, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'vQqNHF6cf4T4Ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 31, tzinfo=datetime.timezone.utc), 5, 0.98, -73.99329, 40.752118, -74.00238, 40.760613, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '6mstJcdSat3igQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 27, tzinfo=datetime.timezone.utc), 2, 1.47, -73.991988, 40.750127, -73.978347, 40.761853, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '382r7I6HKUldAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 31, tzinfo=datetime.timezone.utc), 1, 0.13, -73.971107, 40.753895, -73.990185, 40.756377, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'E7oFV1eqcHQCtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 38, tzinfo=datetime.timezone.utc), 1, 1.13, -73.971108, 40.76429, -73.981002, 40.751942, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '4/QbkLZxwGGvgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 13, tzinfo=datetime.timezone.utc), 5, 0.95, -73.92127, 40.743615, -73.93703, 40.74876, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'S2cWHS5sNsAb3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 29, tzinfo=datetime.timezone.utc), 1, 1.21, -73.962933, 40.776665, -73.954187, 40.76623, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Q3QwEI008UqzzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 10, tzinfo=datetime.timezone.utc), 1, 1.77, -73.967923, 40.787382, -73.988157, 40.775083, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'E+SqJPH2kSWwXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 15, 48, tzinfo=datetime.timezone.utc), 1, 1.83, -73.968965, 40.767632, -73.950328, 40.786773, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'fLk8RTd1B8KcLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 59, tzinfo=datetime.timezone.utc), 3, 1.31, -73.981705, 40.762675, -73.984372, 40.748647, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'fiWlPpRxGexRQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 39, tzinfo=datetime.timezone.utc), 1, 1.76, -73.955672, 40.787867, -73.972012, 40.765677, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'iCv6Ppi8oDDgcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 9, tzinfo=datetime.timezone.utc), 1, 1.07, -73.982285, 40.772243, -73.96589, 40.765228, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'PTyhq8XiKFv36g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 32, tzinfo=datetime.timezone.utc), 5, 1.25, -73.97151, 40.782422, -73.982218, 40.769322, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Rj7fGLwy68OphA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 34, tzinfo=datetime.timezone.utc), 1, 1.52, -73.98082, 40.782587, -73.990968, 40.765135, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ZtcKNcL155xCGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 50, tzinfo=datetime.timezone.utc), 5, 1.26, -73.983425, 40.758702, -74.000665, 40.758125, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ZRz8T5Nr1ndeUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 28, tzinfo=datetime.timezone.utc), 1, 1.51, -73.98867, 40.768938, -73.979482, 40.756647, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'kPMYP9N17n+PTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 4, tzinfo=datetime.timezone.utc), 3, 0.89, -73.950373, 40.772432, -73.95968, 40.77404, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'iCiV/LQ7vmNA+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 12, tzinfo=datetime.timezone.utc), 2, 1.17, -73.991415, 40.749732, -73.977465, 40.755188, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'zzNtAGVyefcHbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 28, tzinfo=datetime.timezone.utc), 1, 1.28, -74.011762, 40.708877, -74.0013, 40.724002, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '1QwXzMCakcXrUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 2, tzinfo=datetime.timezone.utc), 3, 1.66, -73.95631, 40.781277, -73.95631, 40.781277, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'lEDbg646n08o7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.66, -73.946817, 40.784978, -73.9431, 40.802557, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Cn70CHmYc7tJKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 4, tzinfo=datetime.timezone.utc), 3, 1.77, -73.950922, 40.78587, -73.967903, 40.765597, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'aR8zGXHYftp9Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 11, tzinfo=datetime.timezone.utc), 3, 1.07, -73.98228, 40.77511, -73.976268, 40.763735, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '0SXOgq40ngtHaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 17, tzinfo=datetime.timezone.utc), 5, 1.6, -73.989872, 40.733512, -73.975578, 40.743742, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'sFupoVKM2yTgwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 58, tzinfo=datetime.timezone.utc), 1, 1.43, -73.976367, 40.752182, -74.00032, 40.758397, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '5kVvx9zaxh5qFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 9, tzinfo=datetime.timezone.utc), 3, 2.06, -73.989232, 40.730393, -73.973425, 40.75136, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ajbPcWBDr4IiKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 32, tzinfo=datetime.timezone.utc), 1, 1.45, -73.994808, 40.764013, -73.975283, 40.756348, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'iv1VSEY75KnWpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.41, -73.974968, 40.753172, -73.993697, 40.74989, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'iTqw4Kk/L6kHhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 3, tzinfo=datetime.timezone.utc), 2, 1.12, -73.979535, 40.77125, -73.994587, 40.756803, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'HKhDG650+69TZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 19, tzinfo=datetime.timezone.utc), 5, 1.68, -73.995407, 40.733415, -73.9751, 40.741553, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'cYXx2tjtVtLafw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 33, tzinfo=datetime.timezone.utc), 1, 1.95, -73.97698, 40.787857, -73.964663, 40.810215, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'jkvS6mDo/7y6Hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 15, tzinfo=datetime.timezone.utc), 1, 0.91, -73.968085, 40.764127, -73.98144, 40.752805, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '01dvuPOfrnh2gQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 49, tzinfo=datetime.timezone.utc), 1, 1.73, -73.96033, 40.770052, -73.976358, 40.78073, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'bJSu2H0lTSAqxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 13, tzinfo=datetime.timezone.utc), 3, 1.95, -73.987813, 40.777797, -73.992777, 40.758105, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'TOwaowp4w1hOwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 18, tzinfo=datetime.timezone.utc), 1, 1.55, -73.96767, 40.771772, -73.966535, 40.75466, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'qVZoPsYLA48h8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 49, tzinfo=datetime.timezone.utc), 1, 1.76, -73.98446, 40.745758, -74.00742, 40.74316, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Gmogh8bNB3KOuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 4, tzinfo=datetime.timezone.utc), 1, 2.02, -73.981028, 40.774352, -73.999285, 40.756337, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'g7RgHnJlDUTxnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 52, tzinfo=datetime.timezone.utc), 1, 0.17, -73.97782, 40.733905, -73.973797, 40.750502, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 't/62/royPjA6sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 44, tzinfo=datetime.timezone.utc), 1, 1.65, -73.986257, 40.77747, -73.971103, 40.798142, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'LnJVgOE0UCRXVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 14, tzinfo=datetime.timezone.utc), 1, 1.16, -73.997135, 40.747207, -73.986425, 40.761777, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '+G5GlWEDRD7IRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 52, tzinfo=datetime.timezone.utc), 2, 1.78, -73.984307, 40.760915, -73.998363, 40.743268, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'XZzc3ylPGkKlxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 19, tzinfo=datetime.timezone.utc), 1, 1.33, -73.956825, 40.78329, -73.96648, 40.767277, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '9nAIehaSaTzWKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 12, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 12, 7, tzinfo=datetime.timezone.utc), 5, 1.75, -74.014908, 40.713653, -74.012362, 40.727455, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'VTbkEIKR3/Xb6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 9, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 0, tzinfo=datetime.timezone.utc), 1, 2.04, -73.966065, 40.7624, -73.95698, 40.785913, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'WB2UboyDmkZDUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 47, tzinfo=datetime.timezone.utc), 2, 1.99, -73.956207, 40.78007, -73.96692, 40.798608, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '5dqFp7zMM+AquQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 27, tzinfo=datetime.timezone.utc), 2, 1.41, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ITR7F6aC0ekWeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 27, tzinfo=datetime.timezone.utc), 2, 1.16, -73.985408, 40.738585, -73.987955, 40.749975, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '6ioQ7wfGcm/NEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 3, tzinfo=datetime.timezone.utc), 3, 1.18, -73.988022, 40.774695, -73.98163, 40.764763, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'xn9HYf/uX5hvOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 27, tzinfo=datetime.timezone.utc), 5, 0.49, -73.972605, 40.76346, -73.977563, 40.766027, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 't1Sn49f/VoilZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 36, tzinfo=datetime.timezone.utc), 1, 2.09, -73.978682, 40.783092, -73.998645, 40.764523, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'o3RnO/1D63venw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 55, tzinfo=datetime.timezone.utc), 2, 1.24, -73.985145, 40.736492, -74.00565, 40.7452, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'cNfrzCnUNJlT6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 53, tzinfo=datetime.timezone.utc), 2, 2.01, -73.952153, 40.824345, -73.971052, 40.8014, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'TuhYhGbWybcWMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 42, tzinfo=datetime.timezone.utc), 5, 1.51, -73.982547, 40.76254, -73.981505, 40.780332, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'gjKbSOVQqAdeRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 50, tzinfo=datetime.timezone.utc), 1, 0.6, -73.964093, 40.774035, -73.962937, 40.772105, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'eG2bMcTL7olX9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 13, tzinfo=datetime.timezone.utc), 2, 1.48, -73.987358, 40.755508, -73.983807, 40.740342, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'VyH6F9PNlBdnlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 49, tzinfo=datetime.timezone.utc), 1, 1.45, -73.953675, 40.790742, -73.948762, 40.77669, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '2XSAjdewvoSe/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 49, tzinfo=datetime.timezone.utc), 1, 1.53, -73.974633, 40.791382, -73.957615, 40.779352, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Cb1pvXlUPbCJiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 11, tzinfo=datetime.timezone.utc), 1, 0.97, 0.000248, 0.0008, 0.00394, 0.003053, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'zc+WE2oax74jQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 28, tzinfo=datetime.timezone.utc), 5, 1.1, -73.973982, 40.759943, -73.986885, 40.767733, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'z3C7r9WL5qArvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 52, tzinfo=datetime.timezone.utc), 1, 1.04, -73.97806, 40.762128, -73.975338, 40.752167, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'a0j7evC2XV37SQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 53, tzinfo=datetime.timezone.utc), 1, 1.5, -73.984843, 40.728552, -73.98618, 40.743367, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Bd8DDF3wdXNI6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 41, tzinfo=datetime.timezone.utc), 1, 2.15, -74.025168, 40.75822, -74.022328, 40.76306, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '4wcrr+liHTtGgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 16, 3, tzinfo=datetime.timezone.utc), 1, 1.65, -73.975418, 40.755472, -73.960073, 40.770353, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'aqjAZfl6P5aQOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 17, 14, 1, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 11, 52, tzinfo=datetime.timezone.utc), 1, 1.2, -73.964623, 40.77467, -73.96486, 40.765, 'Cash', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'VlbH/No6LsjADw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 11, tzinfo=datetime.timezone.utc), 1, 2.15, -74.006843, 40.73008, -74.00942, 40.715523, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '/53UlWlRyhbOJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 56, tzinfo=datetime.timezone.utc), 1, 2.08, -73.99644, 40.737705, -73.978332, 40.763135, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'tNdxyOrKdqlEQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 6, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 6, 12, tzinfo=datetime.timezone.utc), 4, 1.67, -73.970563, 40.756178, -73.991207, 40.75059, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'LQVWHO/ECsafJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 53, tzinfo=datetime.timezone.utc), 5, 1.67, -73.98311, 40.750608, -74.005142, 40.74806, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ILiaELace0WjlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.89, -73.963938, 40.756965, -73.953075, 40.779418, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '/GkQH7SKFklxbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 11, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 16, tzinfo=datetime.timezone.utc), 1, 1.7, -74.008862, 40.713403, -73.993108, 40.733565, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'zSlJaRq7iCeSLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 8, tzinfo=datetime.timezone.utc), 1, 0.25, -73.966707, 40.757253, -73.969537, 40.753637, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'dTy+n114pUi/nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 51, tzinfo=datetime.timezone.utc), 1, 0.73, -73.96476, 40.769735, -73.97177, 40.764297, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'DlZmhiGClW+qOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 2, tzinfo=datetime.timezone.utc), 1, 1.55, -73.98204, 40.768545, -73.968028, 40.787058, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'rrlWAJEcuu/RrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 16, tzinfo=datetime.timezone.utc), 1, 0.94, -74.000195, 40.759583, -73.986223, 40.752575, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'rxlWaEB+vjdgXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 20, tzinfo=datetime.timezone.utc), 1, 1.4, -73.970825, 40.76648, -73.982475, 40.75695, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '0Itq/iJaDpYOIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 53, tzinfo=datetime.timezone.utc), 1, 1.49, -73.991925, 40.710325, -73.992858, 40.72833, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'PCdGHswLA3dWKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 37, tzinfo=datetime.timezone.utc), 1, 1.45, -73.984427, 40.734653, -73.991265, 40.7489, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'moY00BGAhTMPQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 5, tzinfo=datetime.timezone.utc), 1, 1.09, -73.994562, 40.72593, -74.002245, 40.716425, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'wrB5P7mJia+Eiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 15, 37, tzinfo=datetime.timezone.utc), 3, 1.0, -73.993323, 40.742373, -73.98415, 40.746098, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Zc0J3NgFXEX7aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 42, tzinfo=datetime.timezone.utc), 1, 1.68, -73.959242, 40.763377, -73.954945, 40.778938, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '36/6HmXRUmPWew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 11, tzinfo=datetime.timezone.utc), 1, 1.72, -73.959297, 40.816808, -73.971848, 40.794933, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'K0HtDx3UbaIoVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 13, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 13, 59, tzinfo=datetime.timezone.utc), 1, 1.23, -74.002093, 40.715258, -73.987415, 40.72247, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'KlduFUwOp2anJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 46, tzinfo=datetime.timezone.utc), 5, 1.83, -73.993292, 40.74214, -73.98927, 40.76244, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'axdBwDAibKdyDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 50, tzinfo=datetime.timezone.utc), 1, 1.75, -73.98315, 40.738552, -73.992595, 40.755275, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'IFfPfeiqUH1nSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 3, tzinfo=datetime.timezone.utc), 5, 0.92, -73.961045, 40.76904, -73.964588, 40.76322, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '1IqokGjNTl8Y6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 32, tzinfo=datetime.timezone.utc), 5, 1.62, -73.954548, 40.783367, -73.953955, 40.766608, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '7zNzJoh6DtrDPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 34, tzinfo=datetime.timezone.utc), 1, 1.69, -73.95277, 40.766567, -73.96901, 40.757762, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'VEPOw73ptIPyDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 2, tzinfo=datetime.timezone.utc), 1, 1.13, -73.981152, 40.749045, -73.974933, 40.757535, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'lTxLoST/dtjcOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 18, 44, tzinfo=datetime.timezone.utc), 5, 1.51, -73.993597, 40.749838, -73.996363, 40.741283, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'SrEkBxhgOZU9Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 49, tzinfo=datetime.timezone.utc), 1, 1.5, -73.993705, 40.738513, -73.979493, 40.75105, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Vj8FxRrcdyzmjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 11, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 11, 30, tzinfo=datetime.timezone.utc), 1, 1.89, -73.994543, 40.727738, -73.975127, 40.741483, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'kH+ULe4O1pU69Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 54, tzinfo=datetime.timezone.utc), 1, 1.27, -74.00452, 40.724152, -73.991862, 40.72389, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'TZ4utHVILVH0Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 43, tzinfo=datetime.timezone.utc), 1, 1.39, -73.978852, 40.744738, -73.981815, 40.758128, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'tCDkGdXBVQywLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 27, tzinfo=datetime.timezone.utc), 1, 1.24, -73.896588, 40.745432, -73.891253, 40.742418, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'B3wIBx+faEJjlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 15, tzinfo=datetime.timezone.utc), 2, 1.44, -74.008157, 40.733543, -74.00828, 40.722088, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '+lLI8nlthDc9xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 9, tzinfo=datetime.timezone.utc), 6, 1.66, -73.970183, 40.756537, -73.982335, 40.73847, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 's8ZrA9/8EGfpnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 37, tzinfo=datetime.timezone.utc), 2, 0.66, -73.958608, 40.778667, -73.962358, 40.770617, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'cDiEjPhZGJP9Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 23, tzinfo=datetime.timezone.utc), 1, 1.37, -73.97803, 40.773677, -73.97579, 40.759867, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'tiuVSW8QdTFNOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 6, tzinfo=datetime.timezone.utc), 1, 1.23, -73.978497, 40.737148, -73.994548, 40.734532, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'LYoWMnlSrlD2Sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 13, 37, tzinfo=datetime.timezone.utc), 1, 1.28, -73.990182, 40.768937, -73.981147, 40.78097, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Tl8g8qIMt4Mf4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 2, tzinfo=datetime.timezone.utc), 1, 1.33, -73.982627, 40.730515, -74.002037, 40.740117, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '/Q/iHK5VnVffhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 20, tzinfo=datetime.timezone.utc), 2, 0.79, -73.973575, 40.754967, -73.977792, 40.74823, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'N+59I4zpEMeaVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 43, tzinfo=datetime.timezone.utc), 2, 1.45, -73.986828, 40.756013, -74.00179, 40.741775, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '+O+apMrZX5raSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 27, tzinfo=datetime.timezone.utc), 1, 2.23, -73.981687, 40.752865, -73.992398, 40.72507, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '4XS3JUd2VUdbkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 21, tzinfo=datetime.timezone.utc), 1, 1.58, -74.014725, 40.681622, -73.997642, 40.674827, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'vJ08ZFSzdFgNGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 45, tzinfo=datetime.timezone.utc), 5, 1.46, -73.960272, 40.77292, -73.974897, 40.758603, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '3V8e0tNZjZTOng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 9, tzinfo=datetime.timezone.utc), 1, 1.3, -73.979532, 40.751823, -73.995497, 40.753887, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'oCMzyrm/qiWRVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 25, tzinfo=datetime.timezone.utc), 1, 1.53, -73.994767, 40.745265, -73.994117, 40.728435, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'jlNrcQKtkaKy9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 37, tzinfo=datetime.timezone.utc), 1, 1.41, -73.986298, 40.734558, -73.977137, 40.751703, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'yZTSu9reUyd6Vw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 5, tzinfo=datetime.timezone.utc), 5, 1.77, -73.981203, 40.758748, -73.96358, 40.775275, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '8U3LH/QjiQAMCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 22, tzinfo=datetime.timezone.utc), 5, 1.96, -74.002865, 40.739408, -73.985752, 40.756165, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'S006Jj0XizuCWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 27, tzinfo=datetime.timezone.utc), 1, 1.51, -73.990165, 40.731912, -73.978555, 40.751192, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'WhAMbyq3yag0zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 14, tzinfo=datetime.timezone.utc), 1, 0.27, -73.991942, 40.74845, -73.970163, 40.760443, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'f8uoNCKo7hDa5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 42, tzinfo=datetime.timezone.utc), 5, 1.41, -73.986658, 40.74681, -73.974472, 40.755585, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '30ANdxa3GGssJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 45, tzinfo=datetime.timezone.utc), 5, 1.44, -73.980188, 40.770362, -73.962467, 40.775743, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'GlqABPg+/G1gWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 7, tzinfo=datetime.timezone.utc), 1, 1.81, -73.952932, 40.786407, -73.969478, 40.763465, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'tD95EihhCxmEPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 26, tzinfo=datetime.timezone.utc), 1, 1.48, -74.010425, 40.720163, -74.012875, 40.703565, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'orGvaWnx6deH1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 6, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 4, tzinfo=datetime.timezone.utc), 1, 1.67, -73.954997, 40.820347, -73.968593, 40.799227, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'dQW3SkbtJfl2rA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 7, tzinfo=datetime.timezone.utc), 3, 1.41, -73.996463, 40.74311, -73.980288, 40.740978, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'at04LqpTVpquyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 46, tzinfo=datetime.timezone.utc), 1, 2.17, -73.98079, 40.768162, -73.994025, 40.747528, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'QvMByppoCUuKAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 18, 24, tzinfo=datetime.timezone.utc), 1, 1.72, -73.958927, 40.718725, -73.952902, 40.735533, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'zZIaD5dLdEggfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 9, tzinfo=datetime.timezone.utc), 2, 1.82, -73.950263, 40.779647, -73.967667, 40.758643, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'S3SwaAL7NpFY/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 53, tzinfo=datetime.timezone.utc), 1, 1.32, -73.994058, 40.7512, -73.977135, 40.74976, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'w2hfm+fheWPu4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 8, tzinfo=datetime.timezone.utc), 5, 1.74, -73.998465, 40.724133, -73.993997, 40.741015, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '11kbuJUMaXGvrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 50, tzinfo=datetime.timezone.utc), 1, 1.37, -73.990178, 40.737385, -74.00319, 40.728733, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'cyXvw9MX1PdmUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 7, tzinfo=datetime.timezone.utc), 1, 1.62, -73.975482, 40.78205, -73.984018, 40.763307, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'RE3/yxmQrwX3+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 10, tzinfo=datetime.timezone.utc), 1, 0.81, -73.988633, 40.748602, -73.996188, 40.75582, 'Credit', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'ZrjX3AdnylNk+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 30, tzinfo=datetime.timezone.utc), 1, 2.05, -73.983242, 40.763055, -73.997598, 40.744042, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'vuF9SLnFnUZtBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 28, tzinfo=datetime.timezone.utc), 2, 1.41, -73.973722, 40.743638, -73.989773, 40.73544, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'W7GPNoyVccAWGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 34, tzinfo=datetime.timezone.utc), 2, 0.82, -73.964013, 40.77091, -73.966815, 40.760867, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '57SWW0T4hVWC4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 28, tzinfo=datetime.timezone.utc), 1, 0.97, -73.973953, 40.763337, -73.975222, 40.752838, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'cWqZwqirVpAYxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 11, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 40, tzinfo=datetime.timezone.utc), 1, 0.85, -73.969852, 40.75341, -73.976907, 40.760688, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'K1IettW0lclvlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 56, tzinfo=datetime.timezone.utc), 2, 1.3, -73.975132, 40.763793, -73.960732, 40.773623, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'L21X8FyhSghBhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 50, tzinfo=datetime.timezone.utc), 5, 1.19, -73.964665, 40.770065, -73.979007, 40.765943, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '8VqAzWEd0qEeWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 7, 49, tzinfo=datetime.timezone.utc), 1, 2.08, -73.99229, 40.743647, -73.971348, 40.76374, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'FKqn7MdKNABU2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 0, tzinfo=datetime.timezone.utc), 5, 1.97, -73.997892, 40.724172, -73.992258, 40.742558, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '/5H8XCGxixBd/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 28, tzinfo=datetime.timezone.utc), 1, 1.64, -73.994232, 40.765738, -73.970922, 40.764597, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '5LT0UA+1Lc2IIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 3, tzinfo=datetime.timezone.utc), 5, 1.58, -74.00247, 40.685677, -73.988608, 40.696487, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'z0QS+RkjINCy6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 33, tzinfo=datetime.timezone.utc), 5, 1.87, -74.009703, 40.720298, -73.993233, 40.731068, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'mIB88IJ1HfhCbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 27, tzinfo=datetime.timezone.utc), 1, 1.66, -73.968268, 40.755325, -73.984477, 40.737728, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', '1inRdFh5PeEArA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 6, 22, tzinfo=datetime.timezone.utc), 5, 1.99, -73.956725, 40.773432, -73.972295, 40.752407, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'nKaIhY5gbzaMOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 54, tzinfo=datetime.timezone.utc), 5, 2.07, -73.998325, 40.735222, -73.979942, 40.760545, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'Cd356xgkinHo9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 11, tzinfo=datetime.timezone.utc), 1, 0.97, -73.956328, 40.784192, -73.962292, 40.773152, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'nbtLqxxITSWDDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 34, tzinfo=datetime.timezone.utc), 5, 0.58, -73.975233, 40.765177, -73.97457, 40.759777, 'CASH', 6.9, 0.0, 0.0, 0.0, 6.9, '1705685161.48292', 'xkaGWcdGZG69FA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 7, tzinfo=datetime.timezone.utc), 1, 1.89, -73.97818, 40.754478, -73.954993, 40.766073, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'd2hlLHZ98u6UMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 15, tzinfo=datetime.timezone.utc), 1, 1.46, -73.984415, 40.740272, -74.002257, 40.73448, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'DazkyAPjC+PMQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 9, tzinfo=datetime.timezone.utc), 2, 1.35, -74.003235, 40.731543, -73.98391, 40.725457, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'MbjaIAlPf4OBqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 6, tzinfo=datetime.timezone.utc), 2, 1.29, -73.981607, 40.749762, -73.969437, 40.755262, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'BVOPSzLTCTJm3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 13, tzinfo=datetime.timezone.utc), 1, 1.74, -73.971475, 40.794493, -73.946642, 40.792302, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'TDHH2MVkh4wjhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 8, tzinfo=datetime.timezone.utc), 2, 2.14, -73.979078, 40.75752, -74.000062, 40.743268, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'RequY992MFK6sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 23, tzinfo=datetime.timezone.utc), 5, 1.53, -74.004227, 40.721903, -74.00645, 40.739253, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'uEZPyuvEZKh7tA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 28, tzinfo=datetime.timezone.utc), 1, 1.92, -73.964553, 40.767145, -73.987333, 40.758723, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'rHl2M+FKoxmlcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 18, tzinfo=datetime.timezone.utc), 1, 1.65, -73.991828, 40.74992, -74.000518, 40.730093, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'JVasTwnDd7/WrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 59, tzinfo=datetime.timezone.utc), 2, 1.14, -73.990103, 40.757313, -73.983143, 40.766508, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'Iat0z/FpzqvOXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 0, 16, tzinfo=datetime.timezone.utc), 1, 0.15, -73.976308, 40.758767, -73.98698, 40.764247, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'cssr728usiyrqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 36, tzinfo=datetime.timezone.utc), 1, 1.95, -73.955163, 40.778723, -73.979547, 40.776428, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'onQ+gFF1ia62BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 4, 27, tzinfo=datetime.timezone.utc), 5, 1.26, -73.901313, 40.74587, -73.923982, 40.743985, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'wwE68wuionzK6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 35, tzinfo=datetime.timezone.utc), 1, 1.29, -73.961042, 40.76079, -73.961687, 40.771862, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'o6LDJg94UIswoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 57, tzinfo=datetime.timezone.utc), 5, 1.91, -73.990322, 40.724188, -73.976702, 40.747657, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '0od3s/pZIfWQ3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 37, tzinfo=datetime.timezone.utc), 2, 1.14, -74.007088, 40.7399, -73.99457, 40.750465, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'CYSXRzzQ9AJ+YA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 30, tzinfo=datetime.timezone.utc), 2, 1.21, -73.97555, 40.751442, -73.991308, 40.750392, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'pqtXSPxSC86w4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 18, tzinfo=datetime.timezone.utc), 1, 1.51, -73.985505, 40.776587, -73.98587, 40.761952, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'iwWL3TYlnHUiSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 39, tzinfo=datetime.timezone.utc), 5, 1.67, -73.969843, 40.76257, -73.956723, 40.747473, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'YUwG5nK+l0DBWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 50, tzinfo=datetime.timezone.utc), 1, 1.41, -73.980472, 40.745355, -73.991355, 40.72776, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'cA/GQ+svtqhM3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 32, tzinfo=datetime.timezone.utc), 1, 1.94, -73.959692, 40.770853, -73.941115, 40.793458, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '3hQ29FcxeYz6UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 5, tzinfo=datetime.timezone.utc), 5, 1.45, -73.988795, 40.74836, -73.99945, 40.761323, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'xHfzBIgjTqFQwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 47, tzinfo=datetime.timezone.utc), 1, 1.93, -73.996678, 40.734647, -73.98789, 40.757132, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'CUt0GkMIBeXsKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 23, tzinfo=datetime.timezone.utc), 1, 1.33, -73.966765, 40.803932, -73.950323, 40.806443, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'RIG7kV8FzZRniA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 59, tzinfo=datetime.timezone.utc), 2, 1.99, -73.993582, 40.741105, -73.984357, 40.761705, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '5FkvyKxGt37B1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 14, tzinfo=datetime.timezone.utc), 5, 1.68, -73.986372, 40.748008, -74.005418, 40.740072, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'aKOnUXcCSPNkjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 13, tzinfo=datetime.timezone.utc), 2, 1.81, -73.978038, 40.754717, -73.95961, 40.771403, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '3KavBg7iYkxovw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 27, tzinfo=datetime.timezone.utc), 5, 1.63, -73.987635, 40.74968, -73.977108, 40.734872, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'YXjlNIJWg0Nz1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 58, tzinfo=datetime.timezone.utc), 2, 2.02, -73.985585, 40.762527, -73.957393, 40.765722, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'TfKfONphV7ahOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 19, tzinfo=datetime.timezone.utc), 1, 1.56, -73.98273, 40.735345, -73.98995, 40.746697, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '2+CpIkvQnehyug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 12, tzinfo=datetime.timezone.utc), 5, 1.74, -73.991438, 40.749862, -73.999597, 40.72841, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '0tfeaCTlPH07WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 1, tzinfo=datetime.timezone.utc), 1, 1.71, -73.98251, 40.749527, -74.001405, 40.728725, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'z0BD6NMfcdN9Wg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 49, tzinfo=datetime.timezone.utc), 1, 1.48, -73.990995, 40.755722, -73.986343, 40.773535, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'FN6Lx6ZcA540cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 44, tzinfo=datetime.timezone.utc), 3, 1.1, -73.897142, 40.769938, -73.896227, 40.766222, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'kNRk47f+iYdK2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 30, tzinfo=datetime.timezone.utc), 2, 1.65, -73.928667, 40.704742, -73.952507, 40.69519, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'cnj2JUKKQF3ewA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 8, tzinfo=datetime.timezone.utc), 2, 1.71, -73.976298, 40.776743, -73.956518, 40.781387, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '2Ub77NJnl8UO8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 57, tzinfo=datetime.timezone.utc), 1, 1.3, -73.978192, 40.76332, -73.989643, 40.749615, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'CYbE4Sw1R6nLqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 36, tzinfo=datetime.timezone.utc), 5, 2.23, -73.972182, 40.753867, -73.953743, 40.780528, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'YUkmOlprKnKISA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 20, 46, tzinfo=datetime.timezone.utc), 6, 2.37, -73.968465, 40.750815, -73.946607, 40.780508, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '2tqtX3oFo5gQ+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 16, tzinfo=datetime.timezone.utc), 1, 1.43, -73.968353, 40.814248, -73.964335, 40.817522, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '4P77O01H7kWPjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 0, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 50, tzinfo=datetime.timezone.utc), 1, 1.83, -73.984875, 40.750047, -73.982927, 40.73101, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'SzE976qIezy0zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 51, tzinfo=datetime.timezone.utc), 5, 2.2, -73.955725, 40.779478, -73.975342, 40.754497, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'nu0ljKhKnjZoew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 23, tzinfo=datetime.timezone.utc), 3, 1.94, -73.991535, 40.749927, -73.982437, 40.731285, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'T4c0Ypg+r+btwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 4, 13, tzinfo=datetime.timezone.utc), 2, 1.91, -73.98777, 40.72422, -73.98035, 40.745253, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'aNXMutnuWnKSfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 51, tzinfo=datetime.timezone.utc), 5, 1.04, -73.985557, 40.73855, -73.988667, 40.727212, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'H1/EVYqBUUwPBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 23, tzinfo=datetime.timezone.utc), 2, 1.74, -74.009733, 40.712425, -73.987572, 40.719685, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'Et8FukiMNbfQ/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 47, tzinfo=datetime.timezone.utc), 5, 1.76, -74.00866, 40.719547, -73.995532, 40.72901, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'qlZBLPkTFcshkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 39, tzinfo=datetime.timezone.utc), 3, 1.57, -73.964367, 40.763433, -73.956768, 40.746478, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'Q9jYK9ErPLAPFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 12, tzinfo=datetime.timezone.utc), 1, 0.13, -74.00606, 40.734915, -73.990028, 40.72343, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'dogbedlXasnxTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 9, tzinfo=datetime.timezone.utc), 1, 1.53, -73.997418, 40.71938, -73.981587, 40.73278, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'BsG7F6WoL2BoCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 21, tzinfo=datetime.timezone.utc), 5, 1.63, -73.967783, 40.803013, -73.98378, 40.785482, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '3xAtVLt/v5k6NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 20, tzinfo=datetime.timezone.utc), 1, 1.63, -74.00487, 40.740648, -73.996223, 40.725853, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'wQIUT1NfWVph7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 30, tzinfo=datetime.timezone.utc), 5, 1.36, -73.97969, 40.749045, -73.96329, 40.75434, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'lj4iRPpYDWEmNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 28, tzinfo=datetime.timezone.utc), 1, 1.45, -73.976412, 40.780448, -73.992362, 40.768947, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'j4xAvlvdX7J8bA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 54, tzinfo=datetime.timezone.utc), 5, 2.02, -73.990533, 40.719087, -73.954912, 40.70822, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'gx2D4QSyj1WHpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 2, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 2, 22, tzinfo=datetime.timezone.utc), 1, 1.26, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '5xr8pS8yzwZgQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 11, tzinfo=datetime.timezone.utc), 1, 1.17, -73.981663, 40.773758, -73.984807, 40.759108, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'keNe9HV58T4iIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 40, tzinfo=datetime.timezone.utc), 5, 2.21, -73.916523, 40.779242, -73.889255, 40.770853, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '3eY2iwW039IMUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 42, tzinfo=datetime.timezone.utc), 1, 2.02, -73.993243, 40.749665, -73.96514, 40.755447, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'CLeD5LzIiSY5XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 4, tzinfo=datetime.timezone.utc), 2, 1.79, -73.965595, 40.758957, -73.982902, 40.73875, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'Y4HsVq9xwJR3TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 14, tzinfo=datetime.timezone.utc), 2, 1.26, -73.988595, 40.764118, -73.991457, 40.750353, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'EyY+9k8xQUu6Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 16, tzinfo=datetime.timezone.utc), 2, 1.52, -73.988427, 40.748165, -73.988402, 40.731595, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'MFkUxWM4TkXHNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 20, 47, tzinfo=datetime.timezone.utc), 5, 1.83, -73.989352, 40.75794, -73.984663, 40.7807, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'M3y46yvrwoNyUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 25, tzinfo=datetime.timezone.utc), 1, 2.24, -73.983062, 40.763297, -73.993807, 40.73883, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'IYqLx6QvrjHWKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.91, -73.976167, 40.76171, -73.961482, 40.772847, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'fUdE0ZBlEEQY3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 47, tzinfo=datetime.timezone.utc), 1, 1.28, -73.982438, 40.75753, -73.981448, 40.743793, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'T1UHiZjr3Loa3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 44, tzinfo=datetime.timezone.utc), 1, 1.17, -73.9881, 40.748902, -73.97311, 40.749323, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '/6Kri5t7AISxSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 53, tzinfo=datetime.timezone.utc), 5, 1.83, -74.014293, 40.708073, -74.0015, 40.73086, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'jFNJ/dz+u1xWZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 27, tzinfo=datetime.timezone.utc), 1, 1.74, -74.00536, 40.72891, -74.00515, 40.708097, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'bh5jJEOTIcjtTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 11, tzinfo=datetime.timezone.utc), 2, 2.01, -73.979445, 40.78029, -73.955585, 40.782025, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'rY9ba61P0Phoig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 41, tzinfo=datetime.timezone.utc), 1, 1.64, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '4HVKjd15IeyxOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 39, tzinfo=datetime.timezone.utc), 1, 1.79, -73.951855, 40.781743, -73.963323, 40.782032, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'wEXl5QHnHdlFog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 34, tzinfo=datetime.timezone.utc), 3, 1.61, -73.988988, 40.737715, -73.980017, 40.722822, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'nrkjTJTO+5LZHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 36, tzinfo=datetime.timezone.utc), 5, 2.06, -74.000732, 40.735775, -73.978007, 40.746427, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'LcQQ8ftv9hmHSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 49, tzinfo=datetime.timezone.utc), 5, 1.69, -73.975527, 40.765507, -73.954798, 40.773235, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'S9L3vE1Hg5LLLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 58, tzinfo=datetime.timezone.utc), 1, 1.7, -73.993527, 40.74978, -73.984807, 40.738943, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '3qH/YEoPum7J6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 28, tzinfo=datetime.timezone.utc), 2, 1.5, -73.977097, 40.753892, -74.002747, 40.760598, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'vCqBl2DaI3kn9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 19, tzinfo=datetime.timezone.utc), 1, 2.25, -74.005165, 40.719132, -73.988235, 40.746693, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'UG1LGcmtpe31Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 40, tzinfo=datetime.timezone.utc), 5, 1.72, -73.98392, 40.76267, -74.004605, 40.752028, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'OIvmbIbv3rChkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.82, -74.001237, 40.727727, -74.015623, 40.711397, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '1n/otvQW0SlBFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 0, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 2, tzinfo=datetime.timezone.utc), 1, 1.99, -73.9672, 40.803713, -73.946667, 40.811082, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'jjvMuL6LHLtO8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 43, tzinfo=datetime.timezone.utc), 1, 2.01, -73.991897, 40.75015, -73.995037, 40.72773, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'S4GTXJwIbOBwsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 22, tzinfo=datetime.timezone.utc), 2, 1.89, 0.0, 0.0, 0.0, 0.0, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '4kUGQaXQh0RfRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 53, tzinfo=datetime.timezone.utc), 3, 1.05, -73.981633, 40.732552, -73.990237, 40.72334, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'UAru/vzfVgoLaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 29, tzinfo=datetime.timezone.utc), 2, 1.72, -73.981997, 40.761807, -73.960475, 40.770063, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'ZhXaNCnPvp1h+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 17, tzinfo=datetime.timezone.utc), 2, 2.0, -73.98057, 40.76502, -73.975843, 40.74457, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'Ox35Pkd3rw0BEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 47, tzinfo=datetime.timezone.utc), 5, 1.88, -74.00186, 40.743413, -73.991003, 40.765843, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'WYHpAIiJ96tlDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 48, tzinfo=datetime.timezone.utc), 1, 1.73, -73.984472, 40.742407, -74.002317, 40.726415, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'psDWq3uHvTnuog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 32, tzinfo=datetime.timezone.utc), 1, 1.54, -73.97871, 40.749425, -73.989175, 40.731472, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'IsUyYMMjdG9wZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 18, tzinfo=datetime.timezone.utc), 1, 1.91, -74.009125, 40.70618, -74.006837, 40.730313, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'lmS/gYM0xDyXNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 1, tzinfo=datetime.timezone.utc), 5, 1.67, -73.977497, 40.77683, -73.992542, 40.758342, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'TlSj0qDWyH8iaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 14, tzinfo=datetime.timezone.utc), 1, 1.47, -73.983237, 40.744857, -73.97523, 40.761948, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '4OFLzrSjLahaAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 53, tzinfo=datetime.timezone.utc), 3, 1.81, -73.972042, 40.791888, -73.97895, 40.772243, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'yUcvZIYVZr6HWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 47, tzinfo=datetime.timezone.utc), 3, 1.7, -73.970337, 40.752638, -73.974607, 40.736427, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'xz3nQuNp8+bsAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 35, tzinfo=datetime.timezone.utc), 2, 1.78, -73.953925, 40.774673, -73.972168, 40.756595, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '6ycLGXd3xxc74w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 40, tzinfo=datetime.timezone.utc), 1, 1.91, -73.976343, 40.743482, -73.993042, 40.724385, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'LM5BM3GbzSD8KA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 30, tzinfo=datetime.timezone.utc), 5, 1.71, -73.98392, 40.725595, -73.99362, 40.74148, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '1EfxOY4q8y/7tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 56, tzinfo=datetime.timezone.utc), 4, 1.61, -73.97606, 40.744598, -73.990845, 40.724268, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'uSLcez6XOv7M4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 57, tzinfo=datetime.timezone.utc), 1, 1.06, -73.99155, 40.749973, -73.977007, 40.74423, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', 'dukzWdh8mM/TMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 33, tzinfo=datetime.timezone.utc), 5, 1.29, -73.973885, 40.763127, -73.989815, 40.760553, 'CASH', 6.9, 0.5, 0.0, 0.0, 7.4, '1705685161.48292', '7XbxMsoCl/G+0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 39, tzinfo=datetime.timezone.utc), 1, 1.87, -73.958607, 40.739895, -73.932328, 40.75365, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'fd5hidEjaLeJ7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 11, tzinfo=datetime.timezone.utc), 1, 1.1, -73.990755, 40.734052, -73.982307, 40.74561, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'AODHdT8VmJnitg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 21, tzinfo=datetime.timezone.utc), 2, 1.64, -73.978737, 40.74086, -73.979545, 40.723038, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '3cmegH6XucWb4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 37, tzinfo=datetime.timezone.utc), 2, 1.27, -73.99135, 40.74242, -74.002515, 40.747953, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'S+IACxyNadjVew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 2, tzinfo=datetime.timezone.utc), 2, 1.56, -73.99073, 40.75081, -73.987517, 40.761357, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'e7oCQgPOopeX0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 14, tzinfo=datetime.timezone.utc), 1, 1.57, -73.993055, 40.752698, -73.976002, 40.762387, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'Zx3Fp2bGYy3S6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.27, -73.976073, 40.744652, -73.992742, 40.741262, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'lMPosTTn2H2u3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 46, tzinfo=datetime.timezone.utc), 1, 1.78, -73.970158, 40.760952, -73.954893, 40.780625, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'Rbo483WE6rbjLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 7, tzinfo=datetime.timezone.utc), 1, 1.81, -73.952853, 40.765693, -73.964745, 40.754947, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'ygQYf+rR08SnIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), 2, 1.93, -73.965563, 40.77202, -73.964327, 40.792487, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'cKamN+8cT2rO3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 59, tzinfo=datetime.timezone.utc), 2, 2.2, -73.978132, 40.737307, -73.968045, 40.762622, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'jz+X0jMDHGVzBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 11, tzinfo=datetime.timezone.utc), 2, 1.48, -73.986562, 40.737813, -73.988652, 40.721548, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'ifeC3HeDciGeuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 37, tzinfo=datetime.timezone.utc), 5, 1.43, -73.989467, 40.762702, -73.99895, 40.745603, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'tdVBr068Pd4Lhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 24, tzinfo=datetime.timezone.utc), 1, 1.86, -73.982007, 40.75869, -73.962565, 40.775812, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'u3cwNocdEiX1gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 8, tzinfo=datetime.timezone.utc), 1, 1.69, -73.958115, 40.784757, -73.980463, 40.783357, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'ZBUf3/zIpag5PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 22, tzinfo=datetime.timezone.utc), 5, 1.78, -73.970347, 40.765188, -73.949785, 40.778777, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'qxWYHVpIUAlnRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.82, -73.970367, 40.759245, -73.952792, 40.772117, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '/Wn15mHqL5OetQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 59, tzinfo=datetime.timezone.utc), 1, 1.31, -74.001338, 40.741237, -73.981055, 40.737105, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'tVG6HLispBQ4Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 45, tzinfo=datetime.timezone.utc), 1, 1.69, -73.948195, 40.78301, -73.971638, 40.786177, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'apCY2U3ZUNLiSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 48, tzinfo=datetime.timezone.utc), 1, 1.78, -73.971765, 40.761608, -73.975007, 40.741715, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'TTenG9PLtUIjsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 16, tzinfo=datetime.timezone.utc), 3, 1.44, -73.987293, 40.76114, -73.979767, 40.77785, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'SKNgYi7dOC0nKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 51, tzinfo=datetime.timezone.utc), 2, 1.3, -73.988412, 40.75402, -74.004518, 40.74783, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'SJShBfDDVj64mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 38, tzinfo=datetime.timezone.utc), 1, 1.37, -73.983537, 40.758378, -73.984417, 40.74372, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'J9QVkSplFtQ8PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 52, tzinfo=datetime.timezone.utc), 5, 1.63, -73.963795, 40.774018, -73.980757, 40.785817, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'nIJ5vZxkhUAMPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 31, tzinfo=datetime.timezone.utc), 2, 1.99, -73.98197, 40.752145, -74.002628, 40.733793, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'B6gf3KQOs5iBxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 52, tzinfo=datetime.timezone.utc), 1, 1.43, -73.974513, 40.76175, -73.970557, 40.749368, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '7e1tLcHyUYvLEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 22, tzinfo=datetime.timezone.utc), 1, 1.43, -73.977768, 40.75224, -73.98587, 40.7351, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'bdUJsoKJ5QoY0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 16, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 16, 45, tzinfo=datetime.timezone.utc), 5, 1.58, -73.965438, 40.762238, -73.9619, 40.777035, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'qt1mON2rFVotAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 42, tzinfo=datetime.timezone.utc), 1, 2.1, -73.974508, 40.793523, -74.003408, 40.749855, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'rhlIiQ6y/JuYEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 3, tzinfo=datetime.timezone.utc), 1, 1.43, -73.965787, 40.766127, -73.982088, 40.775972, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'QPmYYaqpyCEypA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 36, tzinfo=datetime.timezone.utc), 3, 1.83, -73.993962, 40.755728, -73.983863, 40.730147, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'z5FHEkSK8YnspA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 47, tzinfo=datetime.timezone.utc), 1, 1.55, -73.985518, 40.757457, -73.982178, 40.774838, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'xZTJe+jZURTQcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 0, tzinfo=datetime.timezone.utc), 5, 1.63, -73.97254, 40.786178, -73.95953, 40.771003, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'AGXnJF3gInReZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 11, tzinfo=datetime.timezone.utc), 1, 2.03, -73.992257, 40.730835, -73.971352, 40.748605, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'nqpIbUOaQayD5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 25, tzinfo=datetime.timezone.utc), 1, 1.48, -73.973378, 40.752782, -73.965983, 40.772572, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'p66hPmL6qUryqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 6, tzinfo=datetime.timezone.utc), 1, 1.54, -73.973425, 40.79267, -73.982332, 40.772337, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'fMai88TO1cgvmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 5, tzinfo=datetime.timezone.utc), 1, 0.88, -74.000353, 40.738875, -73.985868, 40.7328, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'du+o+/UePG5EPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 29, tzinfo=datetime.timezone.utc), 2, 1.91, -73.970063, 40.757645, -73.952125, 40.781215, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'sf2B1JI+lRJbbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 39, tzinfo=datetime.timezone.utc), 1, 1.2, -73.99063, 40.74221, -73.989327, 40.729318, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'pxcnYdbMU2kOfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 22, tzinfo=datetime.timezone.utc), 2, 1.62, -73.952448, 40.783863, -73.962297, 40.765483, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '4n3KbginP/oOow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 7, tzinfo=datetime.timezone.utc), 2, 0.8, -73.983522, 40.770917, -73.991075, 40.760452, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'rNqVCcpGVvZGDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 41, tzinfo=datetime.timezone.utc), 1, 1.36, -73.978968, 40.76237, -73.99356, 40.751685, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'Roczu16A6DNCHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 26, tzinfo=datetime.timezone.utc), 5, 1.93, -73.960185, 40.77882, -73.968715, 40.79761, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'bcCZd6mGReCg2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 10, tzinfo=datetime.timezone.utc), 1, 1.59, -73.968753, 40.764348, -73.958398, 40.783148, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'EayQ4u/ixgc5uA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 46, tzinfo=datetime.timezone.utc), 1, 2.01, -73.965197, 40.759542, -73.980725, 40.735677, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'a0ZavbvFRSdpuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 5, tzinfo=datetime.timezone.utc), 1, 0.1, -73.97724, 40.764427, -73.977692, 40.753537, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'p8kniG4JcwrWeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 18, tzinfo=datetime.timezone.utc), 3, 1.31, -73.955727, 40.781923, -73.956292, 40.768168, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'esCtayDQVW70tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 37, tzinfo=datetime.timezone.utc), 2, 1.59, -73.991333, 40.749877, -73.97327, 40.756365, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'X4j3eM7vPX4KcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 39, tzinfo=datetime.timezone.utc), 3, 1.67, -73.980468, 40.767718, -73.959348, 40.771407, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'fsFAGWZCjvAAKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 18, tzinfo=datetime.timezone.utc), 4, 0.76, -73.973787, 40.76423, -73.983117, 40.762932, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'pxaO2vRw/ha0ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 40, tzinfo=datetime.timezone.utc), 1, 1.51, -73.97575, 40.761332, -73.975252, 40.744552, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '1UTjBmfuwbcP7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 1, tzinfo=datetime.timezone.utc), 1, 1.55, -73.98329, 40.7712, -73.971517, 40.757277, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'kiWyb6ycLeSMbw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 27, tzinfo=datetime.timezone.utc), 1, 1.69, -73.964913, 40.755555, -73.94835, 40.774207, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'bWXAuMxsb9vW8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.67, -73.982075, 40.770758, -73.971205, 40.792872, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'Ztp4Q5GdsFHrFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 13, tzinfo=datetime.timezone.utc), 1, 1.44, -73.976777, 40.764025, -73.984992, 40.780895, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '/QzxIxIMIyHphw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 4, tzinfo=datetime.timezone.utc), 2, 1.48, -73.982087, 40.774688, -73.976638, 40.792545, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'TEFql1RvX21RXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 17, 49, tzinfo=datetime.timezone.utc), 5, 1.36, -73.970093, 40.759568, -73.984712, 40.74816, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'f1ISF2cjqOQ/HQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.4, -73.983702, 40.742492, -73.973748, 40.757243, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'RNThdj6KbMRTqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 9, tzinfo=datetime.timezone.utc), 1, 0.95, -73.97348, 40.752593, -73.978537, 40.761618, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'rWVBPO6M8H6kmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 50, tzinfo=datetime.timezone.utc), 5, 1.53, -73.97862, 40.777653, -73.967222, 40.763653, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'Otibo46s156yLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 42, tzinfo=datetime.timezone.utc), 3, 1.57, -73.990143, 40.750948, -73.98077, 40.766035, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', '6/dn0Sj7wvyf3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 27, tzinfo=datetime.timezone.utc), 1, 1.68, -74.002303, 40.7414, -73.978627, 40.741028, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'k+CBa+CzEjFBlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 58, tzinfo=datetime.timezone.utc), 1, 1.36, -73.976863, 40.765747, -73.992213, 40.758138, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'zCvzWMjcJHFjDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 0, tzinfo=datetime.timezone.utc), 5, 1.48, -73.990398, 40.740178, -73.990385, 40.75617, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'yOgrZgURuyxNIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 56, tzinfo=datetime.timezone.utc), 1, 1.65, -73.976238, 40.776643, -73.98544, 40.759535, 'CASH', 6.9, 1.0, 0.0, 0.0, 7.9, '1705685161.48292', 'tyifWqK3twGEuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 17, tzinfo=datetime.timezone.utc), 2, 1.43, -73.982502, 40.760918, -73.98758, 40.74418, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'kgb0v7hcfvmtoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 52, tzinfo=datetime.timezone.utc), 1, 2.32, -73.976413, 40.739603, -73.978945, 40.713708, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'bvfIeLt8p+1UAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 48, tzinfo=datetime.timezone.utc), 1, 1.97, -73.99104, 40.765803, -73.972063, 40.788122, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'BeJANUt88Fi2sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 8, tzinfo=datetime.timezone.utc), 2, 1.3, -73.981983, 40.766052, -73.979357, 40.752843, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'Qr/2eENhr+rLtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 38, tzinfo=datetime.timezone.utc), 1, 1.9, -74.008932, 40.722962, -73.997733, 40.731063, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '8kC8ED51Ref6jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 53, tzinfo=datetime.timezone.utc), 1, 1.21, -73.975533, 40.751747, -73.9804, 40.76287, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'lJIs8gyTyCDE4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 56, tzinfo=datetime.timezone.utc), 2, 1.88, -73.979262, 40.755548, -73.996625, 40.731918, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'M4dXL86ffU0FsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.58, -73.990418, 40.750953, -73.980628, 40.764403, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'EdukLR2aks4AhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 56, tzinfo=datetime.timezone.utc), 1, 1.96, -74.00277, 40.728555, -73.979008, 40.736452, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '7IbSKXVkXRKOFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 19, 2, tzinfo=datetime.timezone.utc), 5, 1.0, -73.971658, 40.753935, -73.971465, 40.76418, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'NHGR+Ra2LI9Bwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 50, tzinfo=datetime.timezone.utc), 1, 1.55, -73.979307, 40.752405, -73.961163, 40.761748, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'i2rHNQ0mGgqaYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 52, tzinfo=datetime.timezone.utc), 1, 1.97, -73.97196, 40.7598, -73.952555, 40.781607, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'MRYN7m1U8dh5Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 46, tzinfo=datetime.timezone.utc), 1, 2.2, -73.956457, 40.775752, -73.948087, 40.798268, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'khvFPqrRIumSZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 19, tzinfo=datetime.timezone.utc), 1, 0.94, -73.977958, 40.753547, -73.990588, 40.751177, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'H0T00nEpwYs/Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 11, tzinfo=datetime.timezone.utc), 5, 2.3, -73.952902, 40.768108, -73.974852, 40.746403, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'jq4Z+TzFmZlrAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 42, tzinfo=datetime.timezone.utc), 1, 1.69, -74.008477, 40.704112, -73.989663, 40.720347, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'qm2QFoZpLtpV/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 47, tzinfo=datetime.timezone.utc), 1, 2.02, -73.970545, 40.764652, -73.947435, 40.775632, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'lu2TUECu7QV+bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 10, tzinfo=datetime.timezone.utc), 1, 1.31, -73.983988, 40.721112, -73.989843, 40.733855, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'V5jSD4g/MERE/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 45, tzinfo=datetime.timezone.utc), 1, 0.68, -73.958182, 40.764473, -73.9677, 40.762907, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '8SqbFC45Vv8tBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.74, -74.01168, 40.70794, -73.998155, 40.709913, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'yTQNxUMQLT9qxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 36, tzinfo=datetime.timezone.utc), 1, 1.32, -73.963242, 40.772487, -73.973812, 40.757813, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'NhA4BJYXJW9vvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 12, tzinfo=datetime.timezone.utc), 1, 1.64, -73.966075, 40.789895, -73.982902, 40.774065, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'DTfvsYcUPfNazw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 17, 54, tzinfo=datetime.timezone.utc), 1, 1.5, -73.984703, 40.742518, -73.9732, 40.760568, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'X1Y2qoRJ54azPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 16, 20, tzinfo=datetime.timezone.utc), 1, 1.49, -73.994183, 40.751198, -73.983345, 40.739107, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'z/oJ8v33seVIVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 29, tzinfo=datetime.timezone.utc), 1, 1.05, -73.92129, 40.77042, -73.92396, 40.764173, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '8Wo4+CeKaimdfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 13, tzinfo=datetime.timezone.utc), 5, 1.72, -73.994412, 40.750053, -73.992962, 40.738385, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'ATatPy3zzwgvWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 21, tzinfo=datetime.timezone.utc), 1, 1.62, -73.980903, 40.784418, -73.978807, 40.76676, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '10tNmdYLLjKyHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 0, tzinfo=datetime.timezone.utc), 1, 1.07, -73.984802, 40.742873, -74.000788, 40.746308, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'KeuBTmvs5swdQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 44, tzinfo=datetime.timezone.utc), 5, 1.62, -73.97699, 40.755363, -73.989787, 40.735497, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'mPHmtLn3Tizdqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 37, tzinfo=datetime.timezone.utc), 1, 1.54, -73.966342, 40.773368, -73.983358, 40.762425, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'rxFzPnfObFXi4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 14, tzinfo=datetime.timezone.utc), 2, 1.64, -73.974093, 40.743145, -73.992365, 40.730742, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', '7mdcchB+9S6B4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 44, tzinfo=datetime.timezone.utc), 6, 1.78, -74.00527, 40.72152, -74.005635, 40.740222, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'WbdAcPHzjVinPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 16, 31, tzinfo=datetime.timezone.utc), 3, 1.74, -73.959323, 40.771733, -73.981518, 40.77619, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'CmtS8r9B2jzmXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 6, tzinfo=datetime.timezone.utc), 5, 1.34, -73.98642, 40.734693, -74.000187, 40.746072, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'fEmo4FHOiz+u0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 32, tzinfo=datetime.timezone.utc), 1, 1.8, -73.971668, 40.797202, -73.961673, 40.779935, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'i9zfr0jH31VBnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 16, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 16, 30, tzinfo=datetime.timezone.utc), 1, 1.31, -73.952665, 40.804752, -73.952665, 40.804752, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'RPlgW+adArjIfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 55, tzinfo=datetime.timezone.utc), 1, 1.17, -73.97602, 40.760512, -73.988335, 40.748347, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'ItLQrk8Gt2eXmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 23, tzinfo=datetime.timezone.utc), 5, 1.18, -73.956583, 40.7711, -73.961633, 40.761025, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'AfLZ39IbL4L+9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 52, tzinfo=datetime.timezone.utc), 1, 1.78, -73.970283, 40.764812, -73.954073, 40.78732, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'I7emR6brOmSHsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 47, tzinfo=datetime.timezone.utc), 1, 1.56, -74.005023, 40.740757, -73.985007, 40.742803, 'CASH', 7.3, 1.0, 0.0, 0.0, 8.3, '1705685161.48292', 'lrXLQ5xJSRWiMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})"
          ]
        },
        {
          "output_type": "stream",
          "name": "stderr",
          "text": [
            "IOPub data rate exceeded.\n",
            "The notebook server will temporarily stop sending output\n",
            "to the client in order to avoid crashing it.\n",
            "To change this limit, set the config variable\n",
            "`--NotebookApp.iopub_data_rate_limit`.\n",
            "\n",
            "Current values:\n",
            "NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)\n",
            "NotebookApp.rate_limit_window=3.0 (secs)\n",
            "\n"
          ]
        },
        {
          "output_type": "stream",
          "name": "stdout",
          "text": [
            "Row(('VTS', datetime.datetime(2009, 6, 19, 6, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 6, 24, tzinfo=datetime.timezone.utc), 1, 14.61, 0.0, 0.0, 0.0, 0.0, 'Credit', 45.0, 0.0, 5.0, 0.0, 50.0, '1705685161.48292', 'F5QHNiERdU/AHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 57, tzinfo=datetime.timezone.utc), 1, 19.38, -74.008028, 40.708762, -73.79072, 40.644258, 'Credit', 45.0, 0.0, 5.0, 0.0, 50.0, '1705685161.48292', 'oybHLMWbVXrezg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 59, tzinfo=datetime.timezone.utc), 1, 10.28, -73.87208, 40.773835, -73.97337, 40.754577, 'Credit', 28.5, 0.0, 5.0, 5.0, 38.5, '1705685161.48292', '5bb2uGL/KKTFaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 51, tzinfo=datetime.timezone.utc), 1, 11.23, -74.01255, 40.721687, -74.016508, 40.70503, 'Credit', 60.0, 0.0, 5.0, 8.0, 73.0, '1705685161.48292', 'GZuZwQUb2ACuOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 51, tzinfo=datetime.timezone.utc), 1, 18.18, -73.790232, 40.643573, -73.974463, 40.755867, 'Credit', 45.0, 0.0, 5.0, 5.0, 55.0, '1705685161.48292', '3oZr0BJJRt/cKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 6, 47, tzinfo=datetime.timezone.utc), 1, 17.75, -73.984387, 40.764782, -73.785893, 40.63873, 'Credit', 45.0, 0.0, 5.0, 4.15, 54.15, '1705685161.48292', 'WCFRDOGyvdWpkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 5, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 5, 55, tzinfo=datetime.timezone.utc), 1, 17.99, -73.803833, 40.66176, -73.960323, 40.769703, 'Credit', 45.0, 0.0, 5.0, 4.15, 54.15, '1705685161.48292', 'E4SF0rsH1184HQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 50, tzinfo=datetime.timezone.utc), 2, 18.16, -73.789988, 40.643617, -73.972775, 40.757695, 'Credit', 45.0, 0.0, 5.0, 4.15, 54.15, '1705685161.48292', 'Kwt9/P/FOshe0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 12, tzinfo=datetime.timezone.utc), 1, 7.53, -73.870692, 40.77372, -73.954408, 40.818117, 'Credit', 21.3, 1.0, 5.0, 4.15, 31.45, '1705685161.48292', '6pyG1DFv2NYQzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 12, tzinfo=datetime.timezone.utc), 1, 12.57, -73.864647, 40.770735, -73.986883, 40.729623, 'Credit', 28.5, 0.0, 5.0, 4.15, 37.65, '1705685161.48292', '6WFOLZ1yC88HuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 7, tzinfo=datetime.timezone.utc), 1, 8.38, -73.872098, 40.773925, -73.97921, 40.744123, 'Credit', 22.9, 0.0, 5.0, 4.15, 32.05, '1705685161.48292', '1++fi36HiZfG2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 50, tzinfo=datetime.timezone.utc), 1, 10.85, -73.862673, 40.768887, -73.971482, 40.757612, 'Credit', 24.9, 0.5, 5.0, 4.15, 34.55, '1705685161.48292', '2aYCblI6CJGqrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 4, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 5, 6, tzinfo=datetime.timezone.utc), 5, 3.78, -73.9755, 40.763263, -74.00453, 40.721487, 'Credit', 10.9, 0.5, 5.0, 0.0, 16.4, '1705685161.48292', '+l86rPxa5OuOiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 48, tzinfo=datetime.timezone.utc), 2, 14.09, -74.010485, 40.703248, -73.886525, 40.76856, 'Credit', 30.9, 1.0, 5.0, 4.15, 41.05, '1705685161.48292', 'np3laBpjNemeTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 57, tzinfo=datetime.timezone.utc), 1, 10.46, -73.863392, 40.76896, -73.982002, 40.76623, 'Credit', 27.3, 0.0, 5.0, 4.15, 36.45, '1705685161.48292', 'IjYxxjlIAqwLow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 13, tzinfo=datetime.timezone.utc), 3, 15.8, -73.790443, 40.643705, -73.926487, 40.763352, 'Credit', 39.7, 0.0, 5.0, 0.0, 44.7, '1705685161.48292', 'jBXx1+OqIcXtFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 48, tzinfo=datetime.timezone.utc), 1, 0.0, -74.035993, 40.716303, -74.035992, 40.716302, 'Credit', 88.4, 0.0, 5.0, 0.0, 93.4, '1705685161.48292', 'w1uQaKAlploFhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 12, tzinfo=datetime.timezone.utc), 1, 9.92, -73.874595, 40.7741, -73.97517, 40.777457, 'Credit', 23.3, 0.5, 5.0, 4.15, 32.95, '1705685161.48292', '8jNRVVlLGZeBFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 15, tzinfo=datetime.timezone.utc), 1, 8.98, -73.981005, 40.75278, -73.872785, 40.774407, 'Credit', 21.7, 0.0, 5.0, 4.15, 30.85, '1705685161.48292', 'FeDBJIp709JBxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 42, tzinfo=datetime.timezone.utc), 1, 18.92, -73.994123, 40.690702, -73.776373, 40.646105, 'Credit', 42.1, 0.0, 5.0, 0.0, 47.1, '1705685161.48292', 'arvmBej7R92RwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 3, tzinfo=datetime.timezone.utc), 2, 4.71, -73.987898, 40.722793, -73.983287, 40.76582, 'Credit', 15.3, 0.5, 5.0, 0.0, 20.8, '1705685161.48292', 'HfOp/8W7NPnHTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 1, tzinfo=datetime.timezone.utc), 1, 0.0, -74.062107, 40.871553, -74.062103, 40.871548, 'Credit', 111.11, 0.0, 5.0, 0.0, 116.11, '1705685161.48292', 'K5yqhG1hGnyKFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 42, tzinfo=datetime.timezone.utc), 1, 7.11, -73.969275, 40.75788, -73.98293, 40.670967, 'Credit', 20.5, 0.5, 5.25, 0.0, 26.25, '1705685161.48292', '9GTsf5P8kwFORQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 12, tzinfo=datetime.timezone.utc), 5, 11.79, -73.86278, 40.768813, -73.982912, 40.744628, 'Credit', 30.1, 0.0, 5.5, 4.15, 39.75, '1705685161.48292', 'IkdbKQFW/4H0uQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 39, tzinfo=datetime.timezone.utc), 1, 10.32, -73.874452, 40.774095, -73.974907, 40.761565, 'Credit', 28.1, 0.0, 6.0, 4.15, 38.25, '1705685161.48292', 'XC7VghY7R+r0Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 6, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 33, tzinfo=datetime.timezone.utc), 1, 8.78, -73.963772, 40.756923, -73.87229, 40.774455, 'Credit', 28.9, 0.0, 6.0, 0.0, 34.9, '1705685161.48292', '0A1VbLc4o+ODQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 17, 45, tzinfo=datetime.timezone.utc), 1, 13.77, -74.010812, 40.707797, -73.885175, 40.770425, 'Credit', 37.3, 1.0, 6.0, 0.0, 44.3, '1705685161.48292', 'DqEjh4eJ8wPKQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 12, 39, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 14, 59, tzinfo=datetime.timezone.utc), 1, 10.8, -73.874925, 40.773888, -74.009741, 40.719233, 'Credit', 29.3, 0.0, 6.0, 0.0, 35.3, '1705685161.48292', 'wyiEsilGz9qBXA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 2, tzinfo=datetime.timezone.utc), 1, 4.73, -73.985403, 40.760523, -74.01601, 40.715057, 'Credit', 16.9, 1.0, 6.0, 0.0, 23.9, '1705685161.48292', 'Uk4+meY/6nCsKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 49, tzinfo=datetime.timezone.utc), 1, 10.6, -74.004395, 40.741913, -73.871502, 40.774368, 'Credit', 33.3, 0.0, 6.0, 4.15, 43.45, '1705685161.48292', '/h7u5AD1A3cftw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 11, tzinfo=datetime.timezone.utc), 5, 11.17, -73.862818, 40.768812, -73.979177, 40.771912, 'Credit', 27.3, 0.5, 6.0, 4.15, 37.95, '1705685161.48292', '585RsDLmwTBSlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 8, tzinfo=datetime.timezone.utc), 1, 13.88, -73.990658, 40.724628, -74.025912, 40.62868, 'Credit', 32.1, 0.5, 6.0, 0.0, 38.6, '1705685161.48292', 'raJ5mkRYkUpz1Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 19, tzinfo=datetime.timezone.utc), 1, 10.27, 0.0, 0.0, 0.0, 0.0, 'Credit', 30.9, 1.0, 6.5, 0.0, 38.4, '1705685161.48292', 'JsxOYq8k02aZkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 17, tzinfo=datetime.timezone.utc), 2, 18.63, -73.776895, 40.646038, -73.99919, 40.744203, 'Credit', 45.0, 0.0, 6.5, 4.15, 55.65, '1705685161.48292', '+bhJeelum9oj6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 8, 18, tzinfo=datetime.timezone.utc), 1, 9.4, -73.982497, 40.731597, -73.872593, 40.774318, 'Credit', 22.5, 0.0, 6.75, 5.0, 34.25, '1705685161.48292', 't5IddMIUPDkstw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 6, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 5, tzinfo=datetime.timezone.utc), 5, 17.6, -73.990338, 40.728797, -73.782532, 40.648802, 'Credit', 45.0, 0.0, 7.0, 4.15, 56.15, '1705685161.48292', 'gwv6EKKumFMHZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 17, tzinfo=datetime.timezone.utc), 2, 14.47, -73.989895, 40.7456, -73.799448, 40.665228, 'Credit', 45.0, 0.0, 7.0, 4.15, 56.15, '1705685161.48292', 'YM+fibPOZkkCZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 22, tzinfo=datetime.timezone.utc), 1, 17.41, -73.789553, 40.647398, -73.990267, 40.734747, 'Credit', 45.0, 0.0, 7.0, 4.15, 56.15, '1705685161.48292', 'FcgjjAoQ1kmbKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 53, tzinfo=datetime.timezone.utc), 1, 4.16, -74.016303, 40.706322, -73.979223, 40.669655, 'Credit', 11.7, 0.5, 7.0, 0.0, 19.2, '1705685161.48292', 'PqQdDoLW7jILdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 50, tzinfo=datetime.timezone.utc), 1, 1.2, -73.981318, 40.74387, -73.987152, 40.7307, 'Credit', 5.7, 0.5, 7.0, 0.0, 13.2, '1705685161.48292', 'GdDthGqTWbJEyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 34, tzinfo=datetime.timezone.utc), 5, 9.76, -73.990405, 40.730962, -73.871755, 40.774252, 'Credit', 29.3, 1.0, 7.0, 4.15, 41.45, '1705685161.48292', 'jRNY72PDFICa1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 0, tzinfo=datetime.timezone.utc), 1, 0.0, -74.00017, 40.728585, -74.000155, 40.728588, 'Credit', 31.0, 0.0, 7.75, 0.0, 38.75, '1705685161.48292', 'Z5HvJKkpvYoQJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 19, tzinfo=datetime.timezone.utc), 1, 20.68, -73.788385, 40.64743, -74.00697, 40.707957, 'Credit', 45.0, 0.0, 8.0, 0.0, 53.0, '1705685161.48292', '5xxCviGHkRIonw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 14, 52, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 24, 53, tzinfo=datetime.timezone.utc), 1, 10.3, -73.862913, 40.769062, -73.980768, 40.763268, 'Credit', 27.3, 0.0, 8.0, 4.15, 39.45, '1705685161.48292', 'ma9GOFh2W+TMiw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 54, tzinfo=datetime.timezone.utc), 1, 16.3, -73.78975, 40.643842, -73.957953, 40.719648, 'Credit', 38.1, 0.5, 8.0, 0.0, 46.6, '1705685161.48292', 'j3LnsWSLSkuKUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 41, tzinfo=datetime.timezone.utc), 1, 7.35, -73.989218, 40.758108, -73.94369, 40.828552, 'Credit', 21.3, 0.5, 8.0, 0.0, 29.8, '1705685161.48292', 'x40AubiY9PQA0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 12, tzinfo=datetime.timezone.utc), 1, 18.48, -73.783563, 40.648565, -73.978002, 40.766415, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', 'EZ0YYiZ3L21tew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 18, tzinfo=datetime.timezone.utc), 1, 18.38, -74.005665, 40.736727, -73.789955, 40.643237, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', '2tBL7qlmgjlAmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 5, 33, tzinfo=datetime.timezone.utc), 1, 0.0, -73.782962, 40.643925, -73.78296, 40.643922, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', 'piGDC63+qykQOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 26, tzinfo=datetime.timezone.utc), 1, 0.59, -73.98952, 40.700405, -73.989742, 40.700543, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', 'EsYtaITxK83Ucw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 49, tzinfo=datetime.timezone.utc), 2, 17.7, -73.988618, 40.7225, -73.776357, 40.645317, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', '4qsu6yn0p1621A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 56, tzinfo=datetime.timezone.utc), 1, 19.94, -73.7889, 40.641307, -73.954338, 40.77448, 'Credit', 45.0, 0.0, 9.0, 0.0, 54.0, '1705685161.48292', 'KbwuPH6OV8SR4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 40, tzinfo=datetime.timezone.utc), 1, 0.53, -73.804272, 40.679845, -73.802938, 40.677005, 'Credit', 45.0, 0.0, 9.0, 5.0, 59.0, '1705685161.48292', '1qj3e4EL554gZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 34, tzinfo=datetime.timezone.utc), 2, 16.23, -73.806938, 40.653532, -73.975335, 40.757882, 'Credit', 45.0, 0.0, 9.0, 5.0, 59.0, '1705685161.48292', '4fAJxR+7qdCrqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 53, tzinfo=datetime.timezone.utc), 1, 15.28, -73.973558, 40.750777, -73.783222, 40.643823, 'Credit', 45.0, 0.0, 9.0, 5.0, 59.0, '1705685161.48292', 'Zro9JREatdMQnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 8, tzinfo=datetime.timezone.utc), 1, 20.89, -73.983183, 40.777582, -73.782318, 40.648698, 'Credit', 45.0, 0.0, 9.0, 5.0, 59.0, '1705685161.48292', '0q6qDJYOZ1vpxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 23, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 48, tzinfo=datetime.timezone.utc), 1, 17.52, -73.787442, 40.641525, -73.980072, 40.742963, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 't5wi9n3AvMSmCw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 13, tzinfo=datetime.timezone.utc), 1, 18.24, -73.809345, 40.64989, -73.985473, 40.74138, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'z0jbsw0jTJGZeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 35, tzinfo=datetime.timezone.utc), 2, 19.6, -73.97384, 40.795515, -73.782603, 40.644048, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'gn+bTQFTogPW0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 3, tzinfo=datetime.timezone.utc), 1, 18.76, -73.95535, 40.77432, -73.786668, 40.63888, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'nq9nTX2qV+jlSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 55, tzinfo=datetime.timezone.utc), 1, 18.51, -74.006417, 40.744608, -73.776303, 40.645425, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'jPGHR17DlUxyFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 7, tzinfo=datetime.timezone.utc), 3, 19.71, -73.794648, 40.64516, -73.966272, 40.806322, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'dtJ+X8y8JpbFtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 55, tzinfo=datetime.timezone.utc), 1, 2.35, -73.949397, 40.825925, -73.937992, 40.855028, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', '5PbDqnAZMafIww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 22, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 21, tzinfo=datetime.timezone.utc), 5, 0.0, -73.974765, 40.752545, -73.974765, 40.752545, 'Credit', 45.0, 0.0, 9.0, 4.15, 58.15, '1705685161.48292', 'KNOBHGMnxG/yXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 30, tzinfo=datetime.timezone.utc), 1, 0.0, -74.177905, 40.695485, -74.177905, 40.695485, 'Credit', 82.0, 0.0, 10.0, 0.0, 92.0, '1705685161.48292', 'XtFkBqzpKqvowQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 14, 52, tzinfo=datetime.timezone.utc), 1, 0.0, -73.990478, 40.739897, -73.99058, 40.739788, 'Credit', 35.0, 0.0, 10.0, 0.0, 45.0, '1705685161.48292', '4yf0iKCjgdT4ZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 20, 56, tzinfo=datetime.timezone.utc), 2, 17.53, -73.789865, 40.646737, -73.981315, 40.766213, 'Credit', 45.0, 0.0, 10.0, 0.0, 55.0, '1705685161.48292', 'usCmYpSW86xBww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 12, tzinfo=datetime.timezone.utc), 2, 22.32, -73.783805, 40.648635, -73.982403, 40.7559, 'Credit', 45.0, 0.0, 10.0, 0.0, 55.0, '1705685161.48292', 'EKBiztuoJMhIyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 1, 35, tzinfo=datetime.timezone.utc), 1, 15.65, -73.800892, 40.669465, -73.962487, 40.775298, 'Credit', 45.0, 0.0, 10.0, 0.0, 55.0, '1705685161.48292', 'NrqnVAvPJpV+9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 28, tzinfo=datetime.timezone.utc), 2, 12.41, -73.985947, 40.740517, -73.872483, 40.774033, 'Credit', 28.5, 0.0, 10.0, 4.15, 42.65, '1705685161.48292', 'e+rYKVunRiIppw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 18, tzinfo=datetime.timezone.utc), 1, 15.74, -74.003978, 40.742113, -73.80157, 40.66699, 'Credit', 45.0, 0.0, 10.0, 4.15, 59.15, '1705685161.48292', 'HAalO8schPDUdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 19, tzinfo=datetime.timezone.utc), 1, 6.99, -73.900797, 40.725643, -73.977827, 40.773453, 'Credit', 45.0, 0.0, 10.0, 4.15, 59.15, '1705685161.48292', 'RK7k9anc67+5IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 20, tzinfo=datetime.timezone.utc), 2, 19.72, -73.776885, 40.645277, -73.956822, 40.785782, 'Credit', 45.0, 0.0, 10.0, 4.15, 59.15, '1705685161.48292', 'I7DxGs9zfEWI7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 54, tzinfo=datetime.timezone.utc), 1, 17.61, -73.997193, 40.755495, -73.777622, 40.644763, 'Credit', 45.0, 0.0, 10.0, 4.15, 59.15, '1705685161.48292', 'Rv2IRES/TK8b/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 42, tzinfo=datetime.timezone.utc), 5, 10.69, -73.998142, 40.729125, -73.843275, 40.71354, 'Credit', 26.9, 0.5, 10.0, 4.15, 41.55, '1705685161.48292', 'e0bDxVibbKCM6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 45, tzinfo=datetime.timezone.utc), 5, 9.41, -73.982875, 40.730993, -73.870605, 40.773825, 'Credit', 22.1, 0.0, 10.0, 0.0, 32.1, '1705685161.48292', 'wro0GZ+kDFgV3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 58, tzinfo=datetime.timezone.utc), 1, 32.92, -74.00814, 40.70499, -73.696267, 40.58459, 'Credit', 89.7, 0.5, 10.0, 9.0, 109.2, '1705685161.48292', 'Kb9hhVAkymaCzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 31, tzinfo=datetime.timezone.utc), 1, 10.4, -73.991638, 40.745073, -73.978158, 40.656735, 'Credit', 24.1, 0.5, 11.0, 0.0, 35.6, '1705685161.48292', '80M8VK28OiVrzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 17, 28, tzinfo=datetime.timezone.utc), 1, 13.79, -73.865632, 40.771325, -74.011498, 40.715083, 'Credit', 36.5, 0.0, 12.0, 0.0, 48.5, '1705685161.48292', 'OEZ4K1oBB7841w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 55, tzinfo=datetime.timezone.utc), 2, 1.77, -74.008733, 40.71933, -74.0016, 40.729395, 'Credit', 8.5, 1.0, 12.0, 0.0, 21.5, '1705685161.48292', 'mjiz4xx7BJKrNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 21, tzinfo=datetime.timezone.utc), 5, 0.0, -73.940837, 40.791673, -73.940837, 40.791673, 'Credit', 2.5, 0.0, 13.5, 0.0, 16.0, '1705685161.48292', 'SxFKSAoXBZaDCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 13, tzinfo=datetime.timezone.utc), 2, 19.37, -73.951463, 40.77384, -73.794307, 40.644558, 'Credit', 45.0, 0.0, 13.5, 4.15, 62.65, '1705685161.48292', 'bQ2CNiXZ/dHbqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), 2, 16.8, -73.988168, 40.76165, -73.7827, 40.648865, 'Credit', 45.0, 0.0, 13.5, 4.15, 62.65, '1705685161.48292', 'w+WJOJFRhC1Opg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 23, tzinfo=datetime.timezone.utc), 5, 10.3, -74.005608, 40.750922, -73.873165, 40.774427, 'Credit', 31.3, 1.0, 15.0, 4.15, 51.45, '1705685161.48292', 'r1XH3ATXTdpORw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 16, tzinfo=datetime.timezone.utc), 1, 0.0, -73.548183, 41.069102, -73.548183, 41.069102, 'Credit', 170.0, 0.0, 20.0, 0.0, 190.0, '1705685161.48292', 'Ojv/+ZY5xbQ4yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 9, tzinfo=datetime.timezone.utc), 3, 0.77, -73.966475, 40.767195, -73.961943, 40.776233, 'Credit', 4.5, 0.0, 0.5, 0.0, 5.0, '1705685161.48292', 'awcAQKEy5VL6aQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 9, tzinfo=datetime.timezone.utc), 1, 1.09, -73.981903, 40.773343, -73.990115, 40.760722, 'Credit', 4.5, 0.0, 0.5, 0.0, 5.0, '1705685161.48292', 'oY4QA4r7marUQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 21, tzinfo=datetime.timezone.utc), 2, 0.91, -73.987173, 40.761015, -73.982117, 40.7727, 'Credit', 4.5, 0.5, 0.5, 0.0, 5.5, '1705685161.48292', 'J52HK0uoehhDQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 23, tzinfo=datetime.timezone.utc), 1, 0.96, -73.986723, 40.725682, -73.987262, 40.735898, 'Credit', 4.5, 0.5, 0.5, 0.0, 5.5, '1705685161.48292', 'JtF8HXHr8HvaSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 37, tzinfo=datetime.timezone.utc), 1, 1.19, -73.984202, 40.7594, -74.000242, 40.75864, 'Credit', 6.5, 0.0, 0.5, 0.0, 7.0, '1705685161.48292', 'VvNNkPI3vLT60Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 21, tzinfo=datetime.timezone.utc), 2, 1.1, -73.995985, 40.732242, -74.001943, 40.740675, 'Credit', 6.5, 0.0, 0.5, 0.0, 7.0, '1705685161.48292', 'TRiULdw4N2FP5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 12, tzinfo=datetime.timezone.utc), 1, 1.04, -73.975518, 40.760652, -73.980963, 40.744638, 'Credit', 6.5, 0.5, 0.5, 0.0, 7.5, '1705685161.48292', 'EDGRNstgjTSsfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 6, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 6, 40, tzinfo=datetime.timezone.utc), 1, 2.63, -74.004303, 40.742353, -74.011367, 40.707942, 'Credit', 8.5, 0.0, 0.5, 0.0, 9.0, '1705685161.48292', 'CGsohcqYcABvpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 4, tzinfo=datetime.timezone.utc), 1, 2.22, -73.978602, 40.762675, -73.951487, 40.771773, 'Credit', 8.5, 1.0, 0.5, 0.0, 10.0, '1705685161.48292', 'Qzc4y/rVV9VOEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 49, tzinfo=datetime.timezone.utc), 2, 1.18, -73.97847, 40.782977, -73.965305, 40.791022, 'Credit', 5.3, 0.0, 0.5, 0.0, 5.8, '1705685161.48292', 'tuBmKrTKiysMlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 16, tzinfo=datetime.timezone.utc), 5, 2.66, -73.999988, 40.732965, -73.975117, 40.761517, 'Credit', 8.1, 0.0, 0.5, 0.0, 8.6, '1705685161.48292', '5nH9gKC5OlQncg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 6, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 6, 39, tzinfo=datetime.timezone.utc), 5, 0.58, -73.966295, 40.755527, -73.973277, 40.759257, 'Credit', 4.1, 0.0, 0.5, 0.0, 4.6, '1705685161.48292', 'EyAsUtwvXfRfJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 4, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 4, 55, tzinfo=datetime.timezone.utc), 5, 1.54, -73.980535, 40.741953, -73.964727, 40.760387, 'Credit', 6.1, 0.5, 0.5, 0.0, 7.1, '1705685161.48292', 'JRiQ1i2IpdSMBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 49, tzinfo=datetime.timezone.utc), 2, 1.4, -73.976713, 40.74755, -73.962098, 40.760142, 'Credit', 6.1, 0.5, 0.5, 0.0, 7.1, '1705685161.48292', 'Lxcf5mFl8GKc/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 33, tzinfo=datetime.timezone.utc), 1, 3.12, -73.971668, 40.750422, -74.004268, 40.718833, 'Credit', 11.7, 0.5, 0.5, 0.0, 12.7, '1705685161.48292', 'xjgkEqXpj9FLVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 27, tzinfo=datetime.timezone.utc), 3, 0.74, -73.982617, 40.77231, -73.9894, 40.762778, 'Credit', 4.9, 0.0, 0.5, 0.0, 5.4, '1705685161.48292', 'rTdkX4BIXVcHjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 4, tzinfo=datetime.timezone.utc), 2, 0.93, -73.960985, 40.778312, -73.96678, 40.76728, 'Credit', 4.9, 0.0, 0.5, 0.0, 5.4, '1705685161.48292', '2MrSCupSFOd3JA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 37, tzinfo=datetime.timezone.utc), 1, 1.24, -73.960343, 40.769538, -73.949327, 40.785175, 'Credit', 4.9, 0.5, 0.5, 0.0, 5.9, '1705685161.48292', 'WP5KkGl1H4oiIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 15, tzinfo=datetime.timezone.utc), 1, 0.92, -73.951773, 40.75266, -73.947662, 40.751522, 'Credit', 4.9, 0.5, 0.5, 0.0, 5.9, '1705685161.48292', '8Z5XfSCLfYUe0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 28, tzinfo=datetime.timezone.utc), 1, 1.19, -73.965205, 40.759512, -73.975962, 40.744538, 'Credit', 4.9, 1.0, 0.5, 0.0, 6.4, '1705685161.48292', '73yc/MLblyVxqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 54, tzinfo=datetime.timezone.utc), 1, 1.17, -73.98647, 40.742922, -73.985482, 40.755458, 'Credit', 5.7, 0.0, 0.5, 0.0, 6.2, '1705685161.48292', 'AX93xE/oUS6hUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 3, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 3, 41, tzinfo=datetime.timezone.utc), 1, 1.12, -73.98951, 40.726172, -73.993727, 40.73038, 'Credit', 5.7, 0.5, 0.5, 0.0, 6.7, '1705685161.48292', 'Cll0MuSymiBN3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 17, tzinfo=datetime.timezone.utc), 1, 2.46, -73.983105, 40.742118, -73.984005, 40.741303, 'Credit', 8.9, 1.0, 0.5, 0.0, 10.4, '1705685161.48292', 'm+k4KvnEvXD2nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 7, tzinfo=datetime.timezone.utc), 5, 1.71, -73.958148, 40.77924, -73.972412, 40.75895, 'Credit', 8.9, 1.0, 0.5, 0.0, 10.4, '1705685161.48292', 'mADtV/QB5Pv6gw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 17, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 17, 31, tzinfo=datetime.timezone.utc), 5, 0.83, -73.990342, 40.737927, -73.990342, 40.737927, 'Credit', 4.5, 0.0, 0.75, 0.0, 5.25, '1705685161.48292', 'Dw5hxcH403PZPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 57, tzinfo=datetime.timezone.utc), 2, 0.92, -73.988762, 40.728957, -73.980888, 40.736162, 'Credit', 4.5, 0.5, 0.75, 0.0, 5.75, '1705685161.48292', 'VwO+0o9Re5REPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 3, tzinfo=datetime.timezone.utc), 1, 1.49, -73.981408, 40.766078, -73.959072, 40.763353, 'Credit', 6.5, 0.5, 0.75, 0.0, 7.75, '1705685161.48292', 'dbedAZNaL3HSnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 31, tzinfo=datetime.timezone.utc), 5, 1.87, -73.980798, 40.760502, -73.97267, 40.782462, 'Credit', 8.5, 1.0, 0.75, 0.0, 10.25, '1705685161.48292', 'DGWha3btYHveJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 16, tzinfo=datetime.timezone.utc), 5, 0.73, -73.978572, 40.77253, -73.97192, 40.781688, 'Credit', 4.1, 0.0, 0.75, 0.0, 4.85, '1705685161.48292', 'JnhFQ1iSFo+0nA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 37, tzinfo=datetime.timezone.utc), 2, 0.28, -73.993738, 40.721167, -73.997407, 40.720743, 'Credit', 4.1, 0.0, 0.75, 0.0, 4.85, '1705685161.48292', 'IADkt+8ws8j4lA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 52, tzinfo=datetime.timezone.utc), 5, 1.81, -73.982135, 40.740433, -73.98154, 40.75973, 'Credit', 7.7, 0.0, 0.75, 0.0, 8.45, '1705685161.48292', 'nllSX9rvQXRdTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 37, tzinfo=datetime.timezone.utc), 5, 1.01, -73.970312, 40.796678, -73.97916, 40.785047, 'Credit', 4.9, 0.0, 0.75, 0.0, 5.65, '1705685161.48292', 'kvfn8PIt7y74JQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 23, tzinfo=datetime.timezone.utc), 5, 0.97, -73.954858, 40.769147, -73.960553, 40.757497, 'Credit', 5.7, 0.0, 0.75, 0.0, 6.45, '1705685161.48292', 'NZebrwnWbr/wwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 25, tzinfo=datetime.timezone.utc), 1, 0.81, -73.991832, 40.72615, -73.984155, 40.7353, 'Credit', 5.7, 0.0, 0.75, 0.0, 6.45, '1705685161.48292', 'z7YcIBBhZQEG6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 9, tzinfo=datetime.timezone.utc), 1, 1.15, -73.987877, 40.752097, -73.99055, 40.740498, 'Credit', 5.7, 0.0, 0.75, 0.0, 6.45, '1705685161.48292', 'b2U2q6TLVxJRGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 58, tzinfo=datetime.timezone.utc), 1, 0.58, -73.993775, 40.754173, -73.993482, 40.749855, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'DcWqQdskLRueaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 9, 37, tzinfo=datetime.timezone.utc), 1, 1.16, -73.972955, 40.762142, -73.961905, 40.776855, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'sHcxAhfc7jsDgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 6, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 6, 49, tzinfo=datetime.timezone.utc), 5, 0.92, -73.992643, 40.752907, -73.984775, 40.760972, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'p9c24qcQNKAu1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 16, tzinfo=datetime.timezone.utc), 2, 0.38, -73.975383, 40.764608, -73.969185, 40.762027, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'E9jGsvTwzSnZTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.77, -73.949345, 40.781448, -73.959648, 40.781583, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'aMhDGIfBOf5YOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 45, tzinfo=datetime.timezone.utc), 1, 0.78, -73.982002, 40.768798, -73.980843, 40.779733, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'n54zJSkxqboIig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 56, tzinfo=datetime.timezone.utc), 1, 0.75, -73.960507, 40.77559, -73.968598, 40.769625, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', '5dYUFis9gLreag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 5, tzinfo=datetime.timezone.utc), 2, 0.73, -74.001208, 40.714768, -74.010043, 40.720718, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'WYkvGEfGEIJAgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 39, tzinfo=datetime.timezone.utc), 5, 0.82, -73.991137, 40.770495, -73.983085, 40.77333, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'SMwpRQ66xG8VKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 7, 7, tzinfo=datetime.timezone.utc), 1, 0.8, -73.975407, 40.749332, -73.972563, 40.758888, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', '+sLvWLUtGL+QDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 22, tzinfo=datetime.timezone.utc), 1, 0.9, -73.97648, 40.76504, -73.975403, 40.756637, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', '3kGsrYhJ0jqDiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 5, tzinfo=datetime.timezone.utc), 2, 0.89, -73.981972, 40.776395, -73.983125, 40.76415, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'LROPzbWC90dgAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 11, 0, tzinfo=datetime.timezone.utc), 2, 0.74, -74.013953, 40.71369, -74.001263, 40.727582, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'Uur36wKLsdjNxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.61, 0.0, 0.0, 0.0, 0.0, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'UJrgAY29lUuwKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 0, tzinfo=datetime.timezone.utc), 1, 0.71, -73.981797, 40.759325, -73.972768, 40.7631, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'S4+Ax0IUGXmzKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 10, tzinfo=datetime.timezone.utc), 1, 0.97, -73.962003, 40.805458, -73.963172, 40.794253, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'h1EIc5joUyqegQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 26, tzinfo=datetime.timezone.utc), 1, 0.8, -73.953177, 40.778502, -73.959555, 40.773547, 'Credit', 4.5, 0.0, 1.0, 0.0, 5.5, '1705685161.48292', 'sEBOpHrJnmry4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 12, tzinfo=datetime.timezone.utc), 1, 0.95, -73.955077, 40.78597, -73.966632, 40.792578, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'G6vQk7p7ToW17A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 0, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 54, tzinfo=datetime.timezone.utc), 1, 0.84, -73.987352, 40.74475, -73.987352, 40.74475, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'M+JGgYALyWDMdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 21, tzinfo=datetime.timezone.utc), 3, 0.81, -74.004753, 40.737637, -73.991942, 40.735357, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'iaDiGTkYoZnLjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 1, tzinfo=datetime.timezone.utc), 2, 1.0, -73.970173, 40.765272, -73.980482, 40.773225, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'hqBnpzl7VbC6yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 0, tzinfo=datetime.timezone.utc), 1, 0.88, -74.005948, 40.735493, -74.005152, 40.745042, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'X1Qw4fQ06saYMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 5, tzinfo=datetime.timezone.utc), 1, 0.85, -73.975905, 40.762985, -73.971428, 40.75517, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'wc7TDY81k2bgeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 7, tzinfo=datetime.timezone.utc), 1, 0.63, -73.975718, 40.760472, -73.985625, 40.763417, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'LWOtgVhHcUT9Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 16, tzinfo=datetime.timezone.utc), 5, 0.8, -73.985827, 40.730023, -73.9869, 40.723388, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'b330RWYPgOMg1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 55, tzinfo=datetime.timezone.utc), 1, 0.73, -73.970008, 40.753028, -73.977202, 40.74608, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'yPvDLKuk/melQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 34, tzinfo=datetime.timezone.utc), 1, 0.95, -73.96488, 40.762377, -73.955302, 40.76864, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', '4Q7OogSls1ONdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 45, tzinfo=datetime.timezone.utc), 1, 0.6, -73.982745, 40.738688, -73.992893, 40.743155, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'dwaFTFtoce7vkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 23, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 46, tzinfo=datetime.timezone.utc), 5, 0.87, -73.987375, 40.733438, -74.002122, 40.739643, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'd/HdUlqJcP6wdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 15, tzinfo=datetime.timezone.utc), 1, 0.72, -73.9685, 40.761342, -73.974832, 40.751755, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'lDpJoYQI0cV1Ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 53, tzinfo=datetime.timezone.utc), 1, 0.8, -73.973132, 40.758462, -73.977425, 40.749337, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', '7A1BWukYmHWFWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 11, tzinfo=datetime.timezone.utc), 5, 0.73, -73.976878, 40.7434, -73.987338, 40.74476, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'QqBk39fijEcVwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 0, 23, tzinfo=datetime.timezone.utc), 1, 0.78, -73.993187, 40.727875, -73.990768, 40.736503, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 's+azUxH/kUyT+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 4, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 4, 51, tzinfo=datetime.timezone.utc), 1, 0.84, -73.983713, 40.738097, -73.984963, 40.729093, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'wVkxEG27YiWgFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 52, tzinfo=datetime.timezone.utc), 1, 0.64, -73.988557, 40.723007, -73.989807, 40.718985, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'qq5yfekgJIttNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 51, tzinfo=datetime.timezone.utc), 1, 0.81, -73.982475, 40.753812, -73.974312, 40.755553, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'pZ8Rq1Ke8GgBdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 35, tzinfo=datetime.timezone.utc), 3, 0.78, -73.984302, 40.742387, -73.987483, 40.748082, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'j9aSUeJ6eYbWOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 44, tzinfo=datetime.timezone.utc), 1, 0.9, -73.989375, 40.773163, -73.995037, 40.761807, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'egOT8wsiDShhYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 22, 10, tzinfo=datetime.timezone.utc), 2, 0.68, -73.97822, 40.745892, -73.979375, 40.74061, 'Credit', 4.5, 0.5, 1.0, 0.0, 6.0, '1705685161.48292', 'hDgv2GHh47GyVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 18, 43, tzinfo=datetime.timezone.utc), 1, 0.88, -73.961115, 40.780923, -73.974707, 40.787612, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'JQzY/4a5onR+qA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 1, tzinfo=datetime.timezone.utc), 2, 0.73, -73.947838, 40.77489, -73.95513, 40.76919, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'p0M2HKtXl9RSdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 17, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 37, tzinfo=datetime.timezone.utc), 2, 0.81, -73.99516, 40.745452, -73.992827, 40.737172, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'hNNKYSteKjM5/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 27, tzinfo=datetime.timezone.utc), 1, 1.05, -73.971705, 40.780382, -73.971705, 40.780382, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', '3MD/d0BLBuYFrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 45, tzinfo=datetime.timezone.utc), 2, 0.89, -73.964583, 40.77312, -73.952808, 40.775043, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'kOqwuleY+2qpMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 48, tzinfo=datetime.timezone.utc), 1, 0.8, 0.0, 0.0, 0.0, 0.0, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'JVZNEhsUOkoZ2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 13, tzinfo=datetime.timezone.utc), 1, 0.59, -73.972102, 40.759925, -73.977375, 40.753045, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', 'mFWw/MLATnkgHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 20, 0, tzinfo=datetime.timezone.utc), 1, 1.16, -73.991413, 40.744527, -73.979222, 40.752475, 'Credit', 4.5, 1.0, 1.0, 0.0, 6.5, '1705685161.48292', '6FVj0a8dbf/lYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 12, tzinfo=datetime.timezone.utc), 1, 1.0, -73.956368, 40.78147, -73.963083, 40.768982, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'ygzHMb+2nc0dgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 30, tzinfo=datetime.timezone.utc), 1, 1.15, -73.981837, 40.763387, -73.992077, 40.749277, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '4v5ztuTrqHOPsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 14, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 14, 19, tzinfo=datetime.timezone.utc), 1, 1.26, -73.974895, 40.764248, -73.990888, 40.77025, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'kPQWcXyRm7Y8WQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 14, tzinfo=datetime.timezone.utc), 1, 1.25, -74.00241, 40.708838, -74.009377, 40.720653, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'yZaGARfYkf5wFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 1, tzinfo=datetime.timezone.utc), 1, 1.38, -74.006455, 40.732528, -73.995035, 40.750047, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'LuUnQDMSKxGBUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 6, tzinfo=datetime.timezone.utc), 1, 1.41, -73.987202, 40.760418, -73.973947, 40.759077, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'eVVmOQpxXjF/jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 16, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 16, 10, tzinfo=datetime.timezone.utc), 5, 1.03, -73.975317, 40.749013, -73.966842, 40.762407, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'p2/s5Awo/TT1UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 8, tzinfo=datetime.timezone.utc), 1, 0.96, -73.981673, 40.767628, -73.967443, 40.760205, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'wcdztL4b0NOV3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 14, tzinfo=datetime.timezone.utc), 1, 1.36, -73.976283, 40.78081, -73.964382, 40.773522, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'yPwAe8ONg9KTug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 35, tzinfo=datetime.timezone.utc), 3, 1.83, -73.94969, 40.780688, -73.966303, 40.757775, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'iSt3pjxqD4xdIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 40, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 50, 30, tzinfo=datetime.timezone.utc), 1, 0.8, -73.988214, 40.718762, -74.00186, 40.722862, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'tx3UIhpIfVoZmw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 25, tzinfo=datetime.timezone.utc), 1, 1.79, -74.015728, 40.717617, -74.008562, 40.702288, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'HqLdRmEOLWynww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 48, tzinfo=datetime.timezone.utc), 1, 1.38, -73.969478, 40.758593, -73.963115, 40.774953, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'kRHvm6MbAUzaBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 29, tzinfo=datetime.timezone.utc), 1, 1.24, -73.974692, 40.762368, -73.988443, 40.753963, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'EsaqQlizgqaSOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 9, tzinfo=datetime.timezone.utc), 2, 1.26, -73.990468, 40.751363, -73.985678, 40.739043, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'ver7/k/eT2j9Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 26, tzinfo=datetime.timezone.utc), 1, 1.58, -74.007023, 40.707612, -73.99898, 40.725583, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '6/lzu/enkpp+hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 14, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 59, tzinfo=datetime.timezone.utc), 1, 1.31, -73.952488, 40.7835, -73.951477, 40.76996, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'pzNI79828ZNF3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 13, 27, tzinfo=datetime.timezone.utc), 1, 0.96, -73.98638, 40.761927, -73.973778, 40.764652, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '6HqWlIBtu9mrLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 18, tzinfo=datetime.timezone.utc), 1, 1.19, 0.0, 0.0, 0.0, 0.0, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'kGKjnRU/vX3h3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 18, tzinfo=datetime.timezone.utc), 1, 1.33, -73.985515, 40.747377, -73.990542, 40.73909, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '4zAD44b/F786jQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 37, tzinfo=datetime.timezone.utc), 1, 1.7, -73.96719, 40.768978, -73.972733, 40.78675, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '11NRo+O/WAqYHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 8, tzinfo=datetime.timezone.utc), 4, 1.45, -73.953073, 40.772428, -73.969487, 40.763497, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', '/rkOa7vLNYargA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 12, 46, tzinfo=datetime.timezone.utc), 5, 1.51, -74.006988, 40.728722, -73.993963, 40.741275, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'k+zA6/VoGozPSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 48, tzinfo=datetime.timezone.utc), 5, 1.1, -73.994618, 40.760727, -73.97688, 40.754953, 'Credit', 6.5, 0.0, 1.0, 0.0, 7.5, '1705685161.48292', 'OsDmfIPk1VmHiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 42, tzinfo=datetime.timezone.utc), 2, 2.04, -73.979782, 40.75503, -73.992955, 40.73058, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'd+cpm1fNoH09iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 4, tzinfo=datetime.timezone.utc), 5, 1.82, -73.97348, 40.763855, -73.97488, 40.744077, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'T8GnExm+UsZu+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 54, tzinfo=datetime.timezone.utc), 1, 1.89, -73.997407, 40.801833, -74.003983, 40.795407, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', '+7AMryjjd8DBsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 0, 3, tzinfo=datetime.timezone.utc), 1, 1.87, -74.001132, 40.731485, -73.992603, 40.753683, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'l5mm3Z9x8rA+JQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 55, tzinfo=datetime.timezone.utc), 1, 1.59, -73.99016, 40.742013, -73.980168, 40.72692, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'OhsEQAYC65hJbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 45, tzinfo=datetime.timezone.utc), 1, 1.29, -73.980853, 40.733775, -73.995238, 40.743868, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', '/5nCImsvhNJ8Fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 31, tzinfo=datetime.timezone.utc), 2, 1.37, -73.973167, 40.75953, -73.988527, 40.748437, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'LlaH9yadwOvSvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 34, tzinfo=datetime.timezone.utc), 1, 1.57, 0.0, 0.0, 0.0, 0.0, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'gOq9FFFvp/LpzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 14, tzinfo=datetime.timezone.utc), 2, 1.55, -73.96693, 40.753433, -73.984932, 40.744383, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', 'cwPzJgsCxLl88g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 4, tzinfo=datetime.timezone.utc), 1, 1.56, -73.982392, 40.763593, -73.988088, 40.779343, 'Credit', 6.5, 0.5, 1.0, 0.0, 8.0, '1705685161.48292', '2YC3bkaKnIQbhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 43, tzinfo=datetime.timezone.utc), 1, 1.56, -74.009767, 40.722065, -74.005698, 40.740187, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', 'jZ6560pqMnHk9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 22, tzinfo=datetime.timezone.utc), 2, 1.6, -73.97473, 40.790697, -73.964202, 40.809308, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', '/XcHjsLBolP9oA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 59, tzinfo=datetime.timezone.utc), 1, 0.98, -73.964073, 40.773738, -73.965407, 40.763615, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', '3VEBZg/18ABMuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 47, tzinfo=datetime.timezone.utc), 1, 1.51, -73.979528, 40.749475, -73.989298, 40.730748, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', 'HZLLjgv4Sm+rqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 17, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 57, tzinfo=datetime.timezone.utc), 1, 1.33, -73.976033, 40.765712, -73.978317, 40.778948, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', '22kTwvTEcFWXjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 35, tzinfo=datetime.timezone.utc), 2, 1.63, -73.977225, 40.755375, -73.960095, 40.770175, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', 'Jy0vU/tAov6JbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 47, tzinfo=datetime.timezone.utc), 1, 1.52, -73.960317, 40.778748, -73.973877, 40.762477, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', 'p5sldF1bkd4MGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 42, tzinfo=datetime.timezone.utc), 2, 1.48, -73.955692, 40.803677, -73.971597, 40.79231, 'Credit', 6.5, 1.0, 1.0, 0.0, 8.5, '1705685161.48292', 'NTJnqcSawYzyeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 9, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 9, 43, tzinfo=datetime.timezone.utc), 1, 2.65, -73.991283, 40.750183, -73.961242, 40.760648, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'XWKre1Bjcd+QZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 45, tzinfo=datetime.timezone.utc), 4, 2.26, -74.000547, 40.727267, -74.01692, 40.704917, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', '/lLM327C4z1Xsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 13, 15, tzinfo=datetime.timezone.utc), 2, 1.88, -73.97061, 40.788982, -73.945202, 40.790665, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'xu/IiFaDOfN5jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 32, tzinfo=datetime.timezone.utc), 5, 2.61, -73.979623, 40.72722, -73.973823, 40.756457, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'cOknhsACZ8Nf1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 15, tzinfo=datetime.timezone.utc), 1, 1.8, -73.988417, 40.727533, -73.982895, 40.74497, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', '23UkiVF6Du2CJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 10, tzinfo=datetime.timezone.utc), 1, 2.06, -73.97235, 40.759505, -73.95559, 40.785383, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'GUXZRI5RuCGNww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 6, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 2, tzinfo=datetime.timezone.utc), 1, 2.55, -73.977678, 40.788792, -73.955272, 40.765887, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'HLHdgT1Rib+87w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 9, 53, tzinfo=datetime.timezone.utc), 1, 1.29, -73.980305, 40.783257, -73.957615, 40.774332, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', '/wipgNI7TkQGJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 10, 22, tzinfo=datetime.timezone.utc), 1, 2.69, -73.948713, 40.782468, -73.981857, 40.77352, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'MPzrgxqrgh5RHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 4, tzinfo=datetime.timezone.utc), 1, 2.31, -74.007693, 40.708858, -73.989745, 40.733988, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'B69EB0L34zI7qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 16, tzinfo=datetime.timezone.utc), 3, 1.61, -73.987887, 40.779437, -73.971582, 40.765615, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'tIOtPdJJxe1izg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 38, tzinfo=datetime.timezone.utc), 1, 1.55, -73.97448, 40.780125, -73.967015, 40.781978, 'Credit', 8.5, 0.0, 1.0, 0.0, 9.5, '1705685161.48292', 'EsPr7okFHHZNDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 12, tzinfo=datetime.timezone.utc), 2, 2.08, -73.990677, 40.728408, -73.979155, 40.752712, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'i8E73Y0d91QyVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 43, tzinfo=datetime.timezone.utc), 3, 2.62, -73.978848, 40.782315, -73.948645, 40.797745, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'OxqtPAOtzNnvJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 57, tzinfo=datetime.timezone.utc), 1, 2.16, -73.987547, 40.7214, -73.977865, 40.74561, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'NKVgBvLlAXnisQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 37, tzinfo=datetime.timezone.utc), 1, 1.68, -74.00247, 40.750045, -73.977117, 40.745133, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'f63jSdcUShxjDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 6, tzinfo=datetime.timezone.utc), 1, 2.34, -73.976965, 40.763125, -73.969568, 40.791198, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', '6CJCZC4lbF+hCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 38, tzinfo=datetime.timezone.utc), 1, 1.97, -73.98765, 40.720698, -73.977588, 40.738937, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', '59igyojZe04bYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 58, tzinfo=datetime.timezone.utc), 5, 1.99, -73.988678, 40.750045, -73.998717, 40.774553, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'boPz18rb134xVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 0, 6, tzinfo=datetime.timezone.utc), 1, 2.19, -73.95618, 40.771818, -73.983157, 40.762237, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'OIyW6T0/j4/5QA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 2, tzinfo=datetime.timezone.utc), 1, 2.33, -74.013717, 40.702403, -73.99754, 40.738517, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'bnfE8hXi5sZvbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 23, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 23, 21, tzinfo=datetime.timezone.utc), 2, 2.7, -73.981797, 40.769537, -73.952158, 40.786195, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', 'wLXv2GnxyOO43g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 45, tzinfo=datetime.timezone.utc), 5, 2.71, -74.005043, 40.717147, -73.985517, 40.752152, 'Credit', 8.5, 0.5, 1.0, 0.0, 10.0, '1705685161.48292', '+Iij+1bt/P3NYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 39, tzinfo=datetime.timezone.utc), 5, 2.31, -74.010703, 40.72055, -74.00118, 40.747218, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', 'WIWRqgVnuS/Q0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 18, 0, tzinfo=datetime.timezone.utc), 5, 2.0, -74.00233, 40.739935, -73.979398, 40.752877, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', 'NkcySoi7pqGg+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 17, 47, tzinfo=datetime.timezone.utc), 1, 2.28, -73.971772, 40.750387, -73.99221, 40.721417, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', 'mPHYcRfDIGzy3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 0, tzinfo=datetime.timezone.utc), 1, 1.98, -73.979103, 40.75328, -73.985982, 40.771335, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', 'kmEBowh2IJTM7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 37, tzinfo=datetime.timezone.utc), 1, 2.17, -73.976802, 40.75573, -73.954055, 40.775507, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', '6MM3R3/T6dnpCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 30, tzinfo=datetime.timezone.utc), 1, 1.68, -73.987503, 40.784458, -73.973938, 40.778873, 'Credit', 8.5, 1.0, 1.0, 0.0, 10.5, '1705685161.48292', 'hANz9kB5srI2eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 14, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 8, tzinfo=datetime.timezone.utc), 1, 0.0, -74.00505, 40.746807, -74.00505, 40.746807, 'Credit', 10.0, 0.0, 1.0, 0.0, 11.0, '1705685161.48292', 'H9wamZVRPM54QA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 14, tzinfo=datetime.timezone.utc), 1, 2.24, -73.98262, 40.751742, -74.00822, 40.738043, 'Credit', 10.5, 0.0, 1.0, 0.0, 11.5, '1705685161.48292', 'DXoN1v/YRH4d5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 35, tzinfo=datetime.timezone.utc), 1, 2.4, -73.992733, 40.724215, -73.991495, 40.75001, 'Credit', 10.5, 0.0, 1.0, 0.0, 11.5, '1705685161.48292', 'DXCl8WpZtla06A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 49, tzinfo=datetime.timezone.utc), 1, 2.77, -73.983617, 40.725957, -73.983992, 40.755052, 'Credit', 10.5, 0.0, 1.0, 0.0, 11.5, '1705685161.48292', 'ZM2h+h1mbHypRw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 1, tzinfo=datetime.timezone.utc), 1, 2.45, -74.003485, 40.748893, -73.975888, 40.761518, 'Credit', 10.5, 0.0, 1.0, 0.0, 11.5, '1705685161.48292', '0tCEvU8OGRlgdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 43, tzinfo=datetime.timezone.utc), 1, 2.58, -73.968673, 40.762562, -73.979662, 40.737235, 'Credit', 10.5, 0.5, 1.0, 0.0, 12.0, '1705685161.48292', 'Q3xodRw3L4cVeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 9, tzinfo=datetime.timezone.utc), 2, 3.15, -73.972178, 40.794475, -73.936958, 40.815665, 'Credit', 10.5, 0.5, 1.0, 0.0, 12.0, '1705685161.48292', 'LljA6N29umwRbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 10, tzinfo=datetime.timezone.utc), 2, 1.95, -73.962485, 40.778777, -73.975422, 40.755823, 'Credit', 10.5, 1.0, 1.0, 0.0, 12.5, '1705685161.48292', 'Sr9tZBspZ7gQmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 16, tzinfo=datetime.timezone.utc), 1, 0.44, -75.233332, 40.746017, -73.975997, 40.750832, 'Credit', 12.5, 0.0, 1.0, 0.0, 13.5, '1705685161.48292', 'Y4EouNLvyQJKMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 6, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 10, tzinfo=datetime.timezone.utc), 1, 4.22, -74.000233, 40.7616, -74.011442, 40.708253, 'Credit', 12.5, 0.0, 1.0, 0.0, 13.5, '1705685161.48292', 'KD6JwoKIwe27Kg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 27, tzinfo=datetime.timezone.utc), 1, 3.36, -73.98868, 40.75221, -73.950848, 40.772277, 'Credit', 12.5, 0.0, 1.0, 0.0, 13.5, '1705685161.48292', 'sFgnU19hQWFOjQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 41, tzinfo=datetime.timezone.utc), 5, 3.18, -73.982433, 40.773075, -73.990233, 40.736832, 'Credit', 12.5, 0.0, 1.0, 0.0, 13.5, '1705685161.48292', 't/UIZvyqiOSuBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 11, tzinfo=datetime.timezone.utc), 1, 0.4, -74.011582, 40.707855, -74.005023, 40.752197, 'Credit', 12.5, 0.5, 1.0, 0.0, 14.0, '1705685161.48292', 'bbLAdnZSpR8JpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 3, tzinfo=datetime.timezone.utc), 2, 3.91, -73.985897, 40.752428, -73.962953, 40.79907, 'Credit', 12.5, 0.5, 1.0, 0.0, 14.0, '1705685161.48292', 'bQRYywv+IpwBxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 51, tzinfo=datetime.timezone.utc), 1, 4.29, -73.927235, 40.764647, -73.969148, 40.761132, 'Credit', 14.5, 0.0, 1.0, 0.0, 15.5, '1705685161.48292', 'eV1cAmq27FwQlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 4, tzinfo=datetime.timezone.utc), 1, 5.57, -74.001702, 40.740288, -73.959665, 40.808637, 'Credit', 14.5, 0.5, 1.0, 0.0, 16.0, '1705685161.48292', 'V3m76OorCnxgfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 51, tzinfo=datetime.timezone.utc), 5, 4.77, -74.007708, 40.725268, -73.973142, 40.76952, 'Credit', 14.5, 0.5, 1.0, 0.0, 16.0, '1705685161.48292', 'MA07qh+DlHUWkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 46, tzinfo=datetime.timezone.utc), 5, 10.96, -73.907425, 40.741638, -73.928142, 40.861668, 'Credit', 26.1, 0.5, 1.0, 4.15, 31.75, '1705685161.48292', 'M+QbDjaGxSxNcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 56, tzinfo=datetime.timezone.utc), 1, 0.21, -73.967272, 40.756775, -73.970492, 40.75805, 'Credit', 3.3, 0.0, 1.0, 0.0, 4.3, '1705685161.48292', 'TCt+2qIDrqKhtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 12, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 12, 46, tzinfo=datetime.timezone.utc), 1, 0.54, -73.97297, 40.74862, -73.978612, 40.743572, 'Credit', 3.3, 0.0, 1.0, 0.0, 4.3, '1705685161.48292', 'GDITCTtzIKY8qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 35, tzinfo=datetime.timezone.utc), 5, 0.41, -73.995525, 40.740028, -73.991482, 40.744362, 'Credit', 3.3, 0.0, 1.0, 0.0, 4.3, '1705685161.48292', 'GbpGgCnsJWMN7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 44, tzinfo=datetime.timezone.utc), 1, 0.23, -73.960763, 40.772333, -73.96414, 40.772105, 'Credit', 3.3, 0.0, 1.0, 0.0, 4.3, '1705685161.48292', 'jw6xOa3JfsMoOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 30, tzinfo=datetime.timezone.utc), 2, 0.6, -74.006333, 40.70888, -74.004485, 40.718222, 'Credit', 3.3, 0.5, 1.0, 0.0, 4.8, '1705685161.48292', 'PngbfCFJJmhr/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 2, tzinfo=datetime.timezone.utc), 1, 0.48, -73.98296, 40.78191, -73.976158, 40.78125, 'Credit', 3.3, 1.0, 1.0, 0.0, 5.3, '1705685161.48292', 'fCVjJmrm5Wl8ZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 30, tzinfo=datetime.timezone.utc), 2, 0.59, -73.998627, 40.750222, -74.003908, 40.742915, 'Credit', 3.3, 1.0, 1.0, 0.0, 5.3, '1705685161.48292', 'GT95Vf7Yk3588w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 29, tzinfo=datetime.timezone.utc), 1, 0.48, -73.976615, 40.760427, -73.971162, 40.764083, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'lTiDskMXB0PYuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 24, tzinfo=datetime.timezone.utc), 5, 0.86, -73.990293, 40.740567, -73.991908, 40.749143, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'l0L2+ETYcV2Lqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 22, tzinfo=datetime.timezone.utc), 1, 0.79, -73.9884, 40.7556, -73.981063, 40.749555, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'snvlM9sCnNDW6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 45, tzinfo=datetime.timezone.utc), 1, 1.08, -74.016228, 40.714885, -74.014055, 40.702507, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'ejxe9XjDXQ3QRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 36, tzinfo=datetime.timezone.utc), 2, 0.85, -74.04927, 40.694643, -74.04927, 40.694643, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', '1mU++LqAt+Mzqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 14, 36, tzinfo=datetime.timezone.utc), 2, 0.95, -73.978415, 40.75021, -73.975145, 40.74144, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'cS7U2XlCXNfRug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 18, 36, tzinfo=datetime.timezone.utc), 1, 1.13, -73.96309, 40.79935, -73.952442, 40.810907, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'OUGDm6SaVTzWSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 55, tzinfo=datetime.timezone.utc), 2, 1.04, -73.998648, 40.735035, -73.98714, 40.743057, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'bdxmjRKYKvyo1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 46, tzinfo=datetime.timezone.utc), 1, 1.08, -73.978818, 40.759982, -73.981647, 40.755458, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', '/U601wZS+CL10Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 50, tzinfo=datetime.timezone.utc), 1, 1.24, -73.986608, 40.73986, -73.975275, 40.75537, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'yPP+0pldowFnNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 14, tzinfo=datetime.timezone.utc), 1, 1.07, -73.983162, 40.76627, -73.969355, 40.758702, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'KPHYIBIQloT3vQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 8, tzinfo=datetime.timezone.utc), 2, 0.92, -73.950525, 40.792065, -73.957525, 40.800418, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'KIf/PNg/qlW1sw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 46, tzinfo=datetime.timezone.utc), 5, 1.15, -73.990067, 40.751225, -73.990147, 40.739423, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'PJpA1/+rvfBOig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 35, tzinfo=datetime.timezone.utc), 1, 1.14, -73.960795, 40.770633, -73.971233, 40.757725, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', '6atkF/UBfzuT+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 32, tzinfo=datetime.timezone.utc), 1, 1.11, -73.991663, 40.738637, -73.99751, 40.725953, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'bhYpkWX3SGKELg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 33, tzinfo=datetime.timezone.utc), 1, 1.05, -73.949355, 40.781957, -73.953082, 40.788888, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 's9//cbDExVZQJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 41, tzinfo=datetime.timezone.utc), 5, 0.97, -73.986987, 40.739622, -73.991277, 40.749063, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'o9MALhU/QpyGOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.78, -73.963627, 40.75758, -73.963548, 40.765958, 'Credit', 5.3, 0.0, 1.0, 0.0, 6.3, '1705685161.48292', 'ohX00WthjtUfiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 0, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 0, 28, tzinfo=datetime.timezone.utc), 1, 0.9, -73.956365, 40.775437, -73.96773, 40.772325, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', '/PKzJ1zfyZs+Fg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 46, tzinfo=datetime.timezone.utc), 1, 0.88, -74.005255, 40.751203, -74.00745, 40.740138, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', '6XgB/y2dtoId7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 34, tzinfo=datetime.timezone.utc), 1, 0.71, -73.987475, 40.753612, -73.991238, 40.760198, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'h9+ih6xzd1Iz7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 14, tzinfo=datetime.timezone.utc), 2, 0.83, -73.989295, 40.734578, -74.001753, 40.737742, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'G8W6drv51Agfrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 56, tzinfo=datetime.timezone.utc), 5, 1.23, -74.000162, 40.732835, -73.994887, 40.747133, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'F2hfGXr5gyOocw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 2, tzinfo=datetime.timezone.utc), 1, 1.25, -73.974273, 40.78728, -73.982407, 40.773307, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', '3ouH+rkHTV149w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 3, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 3, 48, tzinfo=datetime.timezone.utc), 1, 1.29, -74.003932, 40.72224, -73.995865, 40.738448, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', '5vG65Ili8XiBHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 18, tzinfo=datetime.timezone.utc), 1, 0.94, -73.983098, 40.766877, -73.99292, 40.757893, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'Y4+BqVgvpPqnwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 21, tzinfo=datetime.timezone.utc), 5, 0.87, -73.997843, 40.735892, -73.991115, 40.728115, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'XnhG0AjN6av1eA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 33, tzinfo=datetime.timezone.utc), 1, 0.77, -74.003203, 40.7487, -74.006273, 40.74377, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'iBH8KjHBuQEbOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 35, tzinfo=datetime.timezone.utc), 1, 1.48, -73.980555, 40.7541, -73.980555, 40.7541, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'uvqay6yM3GgdbA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 49, tzinfo=datetime.timezone.utc), 1, 0.68, -73.985708, 40.746768, -73.979122, 40.741363, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', '4WdstmM4G5Gzdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 18, tzinfo=datetime.timezone.utc), 5, 1.12, -73.985673, 40.74093, -73.97478, 40.749292, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'Nkx+DKLk65wTyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 45, tzinfo=datetime.timezone.utc), 1, 0.84, -73.98839, 40.723272, -73.999737, 40.730273, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'vGHccX2xK/pGdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 41, tzinfo=datetime.timezone.utc), 1, 0.88, -73.990653, 40.740818, -74.004957, 40.746453, 'Credit', 5.3, 0.5, 1.0, 0.0, 6.8, '1705685161.48292', 'NCyNS/xtPhAT9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 43, tzinfo=datetime.timezone.utc), 1, 1.22, -73.97393, 40.794312, -73.980738, 40.780032, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', '1LVkn/KFgjkmLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 3, tzinfo=datetime.timezone.utc), 2, 0.89, -73.98763, 40.775363, -73.975558, 40.776865, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'OExjCqeymm8rQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 19, 40, tzinfo=datetime.timezone.utc), 1, 0.96, -73.976458, 40.753178, -73.98745, 40.748695, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'YZGEtQRjbURr4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 34, tzinfo=datetime.timezone.utc), 1, 0.43, -73.973717, 40.763488, -73.978743, 40.758687, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'DVQPU4loehumqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 41, tzinfo=datetime.timezone.utc), 1, 0.89, -73.979283, 40.752947, -73.96601, 40.753882, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'yrjM3gd6CR6zZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 29, tzinfo=datetime.timezone.utc), 1, 0.65, -73.998733, 40.745028, -73.990493, 40.740228, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'bxRM9rZeKyGVJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 19, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 0, tzinfo=datetime.timezone.utc), 1, 1.19, -73.989528, 40.743248, -73.99157, 40.730193, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', '9exfVXOkWvKGzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 7, tzinfo=datetime.timezone.utc), 1, 1.13, -73.988433, 40.74371, -73.974982, 40.749047, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', 'u/++f5Jb320X8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 19, 17, tzinfo=datetime.timezone.utc), 5, 0.85, -74.001278, 40.767758, -74.003897, 40.769175, 'Credit', 5.3, 1.0, 1.0, 0.0, 7.3, '1705685161.48292', '8u+3AVGBS14+mw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 30, tzinfo=datetime.timezone.utc), 1, 1.23, -74.001422, 40.620942, -74.006097, 40.624545, 'Credit', 6.1, 1.0, 1.0, 0.0, 8.1, '1705685161.48292', 'ZTNGRmKQwXA6MQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 16, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 45, tzinfo=datetime.timezone.utc), 5, 1.37, -73.978387, 40.737227, -73.978228, 40.750758, 'Credit', 6.1, 1.0, 1.0, 0.0, 8.1, '1705685161.48292', 'sO+aY7UgZcdLzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 42, tzinfo=datetime.timezone.utc), 2, 1.08, -73.995417, 40.75452, -73.98757, 40.744877, 'Credit', 6.1, 1.0, 1.0, 0.0, 8.1, '1705685161.48292', 'rqdPj8DVTQhcxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 26, tzinfo=datetime.timezone.utc), 1, 1.16, -73.969353, 40.757938, -73.968105, 40.757772, 'Credit', 6.1, 1.0, 1.0, 0.0, 8.1, '1705685161.48292', 'iUUcETQ9IjysEQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 12, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 32, 56, tzinfo=datetime.timezone.utc), 1, 2.2, -73.976583, 40.747719, -73.994518, 40.724885, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'gW5Y/7yhaZ+6hg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 14, tzinfo=datetime.timezone.utc), 1, 1.53, -73.980708, 40.738013, -73.993822, 40.751565, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'acbgwMuJ9R+R6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 50, tzinfo=datetime.timezone.utc), 1, 2.37, -74.00657, 40.705923, -73.99828, 40.735228, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'ujlf4sYvym1Waw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 7, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 7, 33, tzinfo=datetime.timezone.utc), 1, 2.01, -73.993882, 40.755638, -73.968808, 40.761607, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'pVCPBVXwUrPLfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 9, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 51, tzinfo=datetime.timezone.utc), 2, 0.15, -73.975937, 40.76557, -73.978952, 40.7801, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'GEsrAIHg+XeLsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 13, 29, tzinfo=datetime.timezone.utc), 1, 2.09, -73.993007, 40.752865, -73.97619, 40.778998, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'mdTy95f5Gc6hCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 53, tzinfo=datetime.timezone.utc), 1, 1.35, -73.985863, 40.740023, -73.990862, 40.724298, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'tZeQpIiimq8luA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 8, 7, tzinfo=datetime.timezone.utc), 1, 2.12, -73.956763, 40.772358, -73.979782, 40.755133, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'p/gFvapXaNR47w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 52, tzinfo=datetime.timezone.utc), 5, 2.27, -73.986987, 40.733432, -73.966423, 40.761675, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'ZpM6beQ9iJESDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 44, tzinfo=datetime.timezone.utc), 1, 1.68, -73.982938, 40.739602, -73.990965, 40.75156, 'Credit', 8.1, 0.0, 1.0, 0.0, 9.1, '1705685161.48292', 'L/ojcJbMWTtAPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 0, 32, tzinfo=datetime.timezone.utc), 5, 1.83, -73.969327, 40.751957, -73.988243, 40.7441, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', '0p738aMJUNOChg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 30, tzinfo=datetime.timezone.utc), 1, 1.82, -73.98149, 40.714457, -73.98026, 40.734472, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', 'w6t6p04S8P52sg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 20, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 20, 33, tzinfo=datetime.timezone.utc), 1, 2.04, -73.97171, 40.797375, -73.960958, 40.778315, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', '+l0Fvny6mDb88g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 45, tzinfo=datetime.timezone.utc), 5, 1.73, -73.985152, 40.718992, -73.99846, 40.734735, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', '3T1Ze5emPovNaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 22, 9, tzinfo=datetime.timezone.utc), 1, 2.09, -73.986502, 40.761833, -73.980443, 40.741805, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', 'l4C2u7V5CB/tyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 55, tzinfo=datetime.timezone.utc), 1, 2.3, -73.976172, 40.744037, -74.006295, 40.739835, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', 'jg4OH4CLaWKRPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 25, tzinfo=datetime.timezone.utc), 2, 1.88, -73.985975, 40.761897, -73.98272, 40.742307, 'Credit', 8.1, 0.5, 1.0, 0.0, 9.6, '1705685161.48292', 'Wt9JmXSV2F4S3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 53, tzinfo=datetime.timezone.utc), 2, 2.1, -73.965407, 40.769408, -73.983367, 40.783765, 'Credit', 8.1, 1.0, 1.0, 0.0, 10.1, '1705685161.48292', 'GOGxhOuERKq0hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 5, tzinfo=datetime.timezone.utc), 2, 2.66, -73.951438, 40.774307, -73.971947, 40.747228, 'Credit', 8.1, 1.0, 1.0, 0.0, 10.1, '1705685161.48292', 'pGzcUiW0B+3TSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 23, tzinfo=datetime.timezone.utc), 5, 3.03, -73.988648, 40.764093, -73.988577, 40.731513, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'rXE+nCx4FpXT2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 23, tzinfo=datetime.timezone.utc), 1, 2.24, -74.006903, 40.751222, -73.977358, 40.757122, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'TEwKJLekrdjq/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 9, 27, tzinfo=datetime.timezone.utc), 1, 2.48, -74.002545, 40.733277, -73.975867, 40.755567, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'OzkOiDuEq0ZUng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 55, tzinfo=datetime.timezone.utc), 1, 1.49, -73.981425, 40.737103, -73.989488, 40.749702, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'kDdUJKFCFPYA6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 12, 38, tzinfo=datetime.timezone.utc), 1, 2.38, -73.985563, 40.727255, -73.993838, 40.748977, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'pGer5aR1Jsk1Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 49, tzinfo=datetime.timezone.utc), 1, 3.13, -73.97465, 40.788305, -73.97966, 40.755008, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'CxXMTjr/rkUqag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 35, tzinfo=datetime.timezone.utc), 2, 2.28, -73.986247, 40.740185, -73.974455, 40.763135, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', '7jJF3wRctjqp6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 32, tzinfo=datetime.timezone.utc), 1, 2.43, -73.996312, 40.7322, -73.979593, 40.756005, 'Credit', 10.1, 0.0, 1.0, 0.0, 11.1, '1705685161.48292', 'lSJqN2vCmZvWtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 3, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 54, tzinfo=datetime.timezone.utc), 1, 3.15, -73.983567, 40.725957, -74.0075, 40.70854, 'Credit', 10.1, 0.5, 1.0, 0.0, 11.6, '1705685161.48292', 'NTt/0N3Rljz1XQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 19, tzinfo=datetime.timezone.utc), 1, 3.44, -73.990742, 40.718115, -73.945195, 40.725542, 'Credit', 10.1, 0.5, 1.0, 0.0, 11.6, '1705685161.48292', '9w9eTPSYRvNSqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 6, tzinfo=datetime.timezone.utc), 5, 2.71, -73.977108, 40.75809, -73.98877, 40.727127, 'Credit', 10.1, 0.5, 1.0, 0.0, 11.6, '1705685161.48292', 'bUIWaPzUte5r4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 2, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 2, 59, tzinfo=datetime.timezone.utc), 2, 3.36, -73.967813, 40.760105, -73.973132, 40.79527, 'Credit', 10.1, 0.5, 1.0, 0.0, 11.6, '1705685161.48292', '/vZ5oR1yT7rVig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 35, tzinfo=datetime.timezone.utc), 1, 2.84, -73.978208, 40.773898, -73.976758, 40.743915, 'Credit', 10.1, 0.5, 1.0, 0.0, 11.6, '1705685161.48292', 'B5wjAIPGCQ/HrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 15, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 55, tzinfo=datetime.timezone.utc), 1, 3.23, -73.951345, 40.78533, -73.987725, 40.765198, 'Credit', 12.1, 0.0, 1.0, 0.0, 13.1, '1705685161.48292', 'iNfWJC5isxa/Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 51, tzinfo=datetime.timezone.utc), 1, 2.55, -74.005702, 40.750818, -73.997722, 40.724632, 'Credit', 12.1, 0.0, 1.0, 0.0, 13.1, '1705685161.48292', 'iOcMhAL4uwad3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 17, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 17, 44, tzinfo=datetime.timezone.utc), 5, 2.22, -73.996173, 40.743318, -73.997575, 40.724395, 'Credit', 12.1, 0.0, 1.0, 0.0, 13.1, '1705685161.48292', 'DELOy8iXpjQSYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 23, 8, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 23, 23, 33, tzinfo=datetime.timezone.utc), 1, 3.7, -73.982518, 40.762287, -73.964152, 40.767788, 'Credit', 12.1, 0.0, 1.0, 0.0, 13.1, '1705685161.48292', 'mYMIM/twXRKEwg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 48, tzinfo=datetime.timezone.utc), 1, 3.29, -73.96782, 40.765463, -74.001848, 40.745598, 'Credit', 12.1, 0.0, 1.0, 0.0, 13.1, '1705685161.48292', 'kfIlAR9TWhSQWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 22, tzinfo=datetime.timezone.utc), 1, 3.65, 0.0, 0.0, 0.0, 0.0, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', 'm+uMRGX4n8v/Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 43, tzinfo=datetime.timezone.utc), 1, 4.67, -73.989637, 40.746975, -73.960692, 40.797478, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', 'XWCp0zle7JRsww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 22, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 22, 44, tzinfo=datetime.timezone.utc), 5, 2.98, -74.007377, 40.743245, -73.98106, 40.773425, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', 'rdvW+fmR5MwNvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 6, tzinfo=datetime.timezone.utc), 5, 3.56, -73.994158, 40.751202, -73.955912, 40.776015, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', 'vl5maLmPBaIjYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 20, tzinfo=datetime.timezone.utc), 2, 3.32, -74.003555, 40.73226, -73.970392, 40.762675, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', 'Fg2rkM5xVHviCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 7, tzinfo=datetime.timezone.utc), 1, 3.97, -73.99699, 40.715142, -73.99592, 40.759058, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', '7ADjv6mI3B+7qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 21, 52, tzinfo=datetime.timezone.utc), 5, 3.34, -73.956428, 40.77151, -73.987477, 40.731647, 'Credit', 12.1, 0.5, 1.0, 0.0, 13.6, '1705685161.48292', '7t8K9aRZqUrX8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 0, tzinfo=datetime.timezone.utc), 6, 4.3, -74.00456, 40.742133, -73.977787, 40.790673, 'Credit', 14.1, 0.0, 1.0, 0.0, 15.1, '1705685161.48292', 'MKVgRWbhblrGnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 20, tzinfo=datetime.timezone.utc), 1, 4.24, -74.006467, 40.738943, -73.963753, 40.774137, 'Credit', 14.1, 0.5, 1.0, 0.0, 15.6, '1705685161.48292', 'wLst1QEFlJYb9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 1, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 37, tzinfo=datetime.timezone.utc), 1, 5.61, 0.0, 0.0, 0.0, 0.0, 'Credit', 14.1, 0.5, 1.0, 0.0, 15.6, '1705685161.48292', 'qdD+rrzEAiemqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 50, tzinfo=datetime.timezone.utc), 1, 5.09, -74.00305, 40.733185, -73.976278, 40.78843, 'Credit', 15.7, 0.5, 1.0, 0.0, 17.2, '1705685161.48292', 'EFHrOXsGA2TVvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 0, 41, tzinfo=datetime.timezone.utc), 1, 9.24, -74.0057, 40.726322, -73.942602, 40.800455, 'Credit', 23.7, 0.5, 1.0, 0.0, 25.2, '1705685161.48292', 'l1cjTFFZFBgPiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 20, 13, tzinfo=datetime.timezone.utc), 5, 4.02, -73.828843, 40.737482, -73.828843, 40.737482, 'Credit', 15.7, 0.0, 1.0, 0.0, 16.7, '1705685161.48292', 'SHEwGRBAeigaCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 49, tzinfo=datetime.timezone.utc), 1, 8.64, -73.996797, 40.73746, -73.938758, 40.821905, 'Credit', 25.7, 0.0, 1.0, 0.0, 26.7, '1705685161.48292', '2CQf+osVVe1Xqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 19, tzinfo=datetime.timezone.utc), 1, 0.57, -74.013478, 40.734662, -74.012645, 40.736895, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', '/q+4UYnLD4zY8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 28, tzinfo=datetime.timezone.utc), 5, 0.64, -73.97031, 40.788918, -73.96951, 40.795225, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'RLuIG6rvNYtNRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 11, 22, tzinfo=datetime.timezone.utc), 1, 0.41, -73.951152, 40.782582, -73.94683, 40.778695, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'dST4/Zo14EXE3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 9, tzinfo=datetime.timezone.utc), 1, 0.61, -73.98417, 40.76481, -73.982372, 40.773067, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'CkI+EVOT6cqUfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 23, tzinfo=datetime.timezone.utc), 2, 0.58, -73.962217, 40.767683, -73.96799, 40.762452, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'H/EJ4AYFJm0R/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 47, tzinfo=datetime.timezone.utc), 1, 0.74, -73.983605, 40.72658, -73.994437, 40.727307, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', '7lXtd94903UpEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 10, 40, tzinfo=datetime.timezone.utc), 5, 0.81, -73.991518, 40.769495, -73.982643, 40.775552, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'x8sBit3Adrcbpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 32, tzinfo=datetime.timezone.utc), 1, 0.75, -73.973522, 40.760205, -73.981363, 40.753313, 'Credit', 4.1, 0.0, 1.0, 0.0, 5.1, '1705685161.48292', 'Z5HZ1XZ5ILK+GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 25, tzinfo=datetime.timezone.utc), 1, 0.63, -73.988412, 40.75815, -73.982798, 40.764413, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', 'KoTNwIb8sOz+/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 21, 30, tzinfo=datetime.timezone.utc), 1, 0.86, -73.956658, 40.766828, -73.952027, 40.777023, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', 'UaLKWSa8GsqX+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 51, tzinfo=datetime.timezone.utc), 1, 0.67, -73.958372, 40.773002, -73.959315, 40.780092, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', 'SXIiL44KHRJ3bg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 5, tzinfo=datetime.timezone.utc), 2, 0.64, -74.003795, 40.743262, -73.997683, 40.746292, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', '5lMSUUCIl96qvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 35, tzinfo=datetime.timezone.utc), 1, 0.71, -73.993848, 40.735868, -73.993933, 40.72817, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', 'HDjg2tKZMgpVmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 3, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 3, 50, tzinfo=datetime.timezone.utc), 2, 0.56, -73.982872, 40.74442, -73.982008, 40.738987, 'Credit', 4.1, 0.5, 1.0, 0.0, 5.6, '1705685161.48292', 'gFwAqyLGHvcp+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 19, tzinfo=datetime.timezone.utc), 5, 0.4, -73.984807, 40.770193, -73.98829, 40.76563, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', 'S3J4B3FfIykXaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 16, tzinfo=datetime.timezone.utc), 1, 0.77, -73.991283, 40.740173, -73.999993, 40.734148, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', 'yeWgQYaQWtleCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 54, tzinfo=datetime.timezone.utc), 1, 0.89, -73.975692, 40.776293, -73.967353, 40.787405, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', 'N/kVrrS7XAYX8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 17, 33, tzinfo=datetime.timezone.utc), 1, 0.69, -73.98156, 40.754407, -73.990715, 40.750958, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', 'sD+uiRO1qgwnkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 33, tzinfo=datetime.timezone.utc), 1, 0.48, -73.999802, 40.748352, -73.991945, 40.745043, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', '8pK9Ue2K3uJf0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 21, tzinfo=datetime.timezone.utc), 1, 0.55, -73.957997, 40.778957, -73.958195, 40.78459, 'Credit', 4.1, 1.0, 1.0, 0.0, 6.1, '1705685161.48292', 'RIEF2Z4ujyIA4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 26, tzinfo=datetime.timezone.utc), 1, 0.8, -73.979355, 40.746, -73.987058, 40.752128, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'atgVspyj26GoGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 52, tzinfo=datetime.timezone.utc), 1, 1.54, -73.984198, 40.754652, -73.991047, 40.739025, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'Lul6NLffwXZmcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 45, tzinfo=datetime.timezone.utc), 1, 0.91, -73.993028, 40.743348, -73.987092, 40.736063, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'iA4fKj8yxoUzuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 44, tzinfo=datetime.timezone.utc), 1, 1.43, -73.955897, 40.772388, -73.969705, 40.756223, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'Kt4HlT6gzPn4RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 26, tzinfo=datetime.timezone.utc), 5, 1.32, -73.994958, 40.739877, -73.997837, 40.753155, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'dEL4F8ItVvqsrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 40, tzinfo=datetime.timezone.utc), 1, 0.93, -73.953952, 40.766755, -73.966168, 40.765018, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'M0zE/wDthyY4CQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 44, tzinfo=datetime.timezone.utc), 5, 1.2, -73.99446, 40.755797, -73.995933, 40.741563, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', '5Wd4j6IGgYQLMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 11, tzinfo=datetime.timezone.utc), 5, 1.59, -73.981755, 40.749007, -73.994803, 40.735715, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', '1bNEwcTRNRUwhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 7, tzinfo=datetime.timezone.utc), 1, 0.9, -73.973658, 40.759508, -73.9719, 40.764725, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'mmSmb73rO9D4Pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 1, tzinfo=datetime.timezone.utc), 1, 0.88, -73.976602, 40.761083, -73.985893, 40.756458, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'FWG6j6/SbMI2iA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 4, tzinfo=datetime.timezone.utc), 1, 1.09, -73.98184, 40.76277, -73.977497, 40.751785, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', '46iZYEl3pNvJSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 44, tzinfo=datetime.timezone.utc), 1, 0.15, -73.993677, 40.752275, -73.992965, 40.767677, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'F6SnuTF7YZSg0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 10, tzinfo=datetime.timezone.utc), 1, 1.13, -73.9603, 40.762033, -73.971523, 40.761817, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'i58lA/xFCKy0xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 8, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 8, 46, tzinfo=datetime.timezone.utc), 1, 1.71, -73.97077, 40.751827, -73.989408, 40.738275, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'nCVYulY/7YC6Qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 16, tzinfo=datetime.timezone.utc), 5, 1.4, -74.005105, 40.748055, -74.003237, 40.733555, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'S0ADxG6W2InMRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 28, tzinfo=datetime.timezone.utc), 1, 1.11, -73.992087, 40.742662, -73.999795, 40.732805, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'CPg9hYIdX2yYnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 8, tzinfo=datetime.timezone.utc), 6, 1.06, -73.96664, 40.753362, -73.963877, 40.765355, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'lueVcrSXcD8YTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 12, 3, tzinfo=datetime.timezone.utc), 2, 1.15, -73.98726, 40.729163, -74.004767, 40.733178, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'Hs+Z4+1ogaZB/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 38, tzinfo=datetime.timezone.utc), 4, 0.84, -73.998018, 40.745913, -73.987135, 40.747513, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'TrD03G3WiNcAXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 21, tzinfo=datetime.timezone.utc), 2, 1.87, -73.981407, 40.779025, -73.967265, 40.801955, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'yQe0yx3a+1Srkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 10, tzinfo=datetime.timezone.utc), 1, 1.04, -73.984467, 40.754598, -73.980598, 40.746557, 'Credit', 6.1, 0.0, 1.0, 0.0, 7.1, '1705685161.48292', 'H7xaDtpdthSnnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 7, tzinfo=datetime.timezone.utc), 2, 1.3, -73.962295, 40.71496, -73.954845, 40.715007, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', '5sy76mla5p8+OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 35, tzinfo=datetime.timezone.utc), 1, 1.31, -73.887225, 40.709853, -73.893963, 40.725487, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'XCUpEu/FDcUXWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 0, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 0, 45, tzinfo=datetime.timezone.utc), 4, 1.12, -74.004315, 40.742408, -73.997838, 40.73122, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'pRIYVqv1lMfbIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 21, 4, tzinfo=datetime.timezone.utc), 1, 1.13, -74.006058, 40.73447, -73.989, 40.732868, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'QceTfdtqw8wzbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 43, tzinfo=datetime.timezone.utc), 1, 1.33, -73.991557, 40.74417, -74.002822, 40.73072, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'DXKPpJFtaXt9Eg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 25, tzinfo=datetime.timezone.utc), 1, 1.49, -74.007372, 40.705638, -73.993093, 40.722573, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'CkAmdjQltnjXCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 23, tzinfo=datetime.timezone.utc), 2, 1.51, -73.985918, 40.76328, -73.994658, 40.745772, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'P+5VV2BwCEtQLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 44, tzinfo=datetime.timezone.utc), 1, 1.0, -73.996155, 40.75141, -73.991945, 40.748822, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', '37GvuVFT42yA5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 15, tzinfo=datetime.timezone.utc), 5, 1.07, -73.987942, 40.764983, -73.975188, 40.757555, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'YNJOW/Dh8XB3TQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 0, 12, tzinfo=datetime.timezone.utc), 1, 1.62, -73.949772, 40.780497, -73.964457, 40.76056, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'XO7G/0JqR2y6mA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 19, tzinfo=datetime.timezone.utc), 5, 1.56, -73.985783, 40.74094, -73.972402, 40.75944, 'Credit', 6.1, 0.5, 1.0, 0.0, 7.6, '1705685161.48292', 'Qs8M8z+rvr/YxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 8, tzinfo=datetime.timezone.utc), 5, 1.84, -73.999652, 40.733445, -73.978202, 40.745418, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'mnxXc4o3HdHaIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 33, tzinfo=datetime.timezone.utc), 2, 1.38, -73.983908, 40.706163, -73.9873, 40.709002, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'gGAJqUJQdx62UQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 34, tzinfo=datetime.timezone.utc), 3, 1.95, -73.987957, 40.732092, -74.009803, 40.720012, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'QAKmVFFL2dPCSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 27, tzinfo=datetime.timezone.utc), 1, 2.07, -73.976895, 40.743468, -73.97515, 40.721808, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'as+MzPEvdqxdwA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 56, tzinfo=datetime.timezone.utc), 1, 1.58, -73.972173, 40.760112, -73.985623, 40.757263, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', '+PL9UEZyHpqSCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 26, tzinfo=datetime.timezone.utc), 2, 0.94, -73.978765, 40.740973, -73.99267, 40.74323, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'o+55z4+EWz+HKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 12, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 21, tzinfo=datetime.timezone.utc), 1, 1.47, -73.971662, 40.763835, -73.98094, 40.777387, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'ZhA+/SY+PyuRgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 54, tzinfo=datetime.timezone.utc), 1, 1.69, -73.987292, 40.738565, -73.992893, 40.75292, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'brCp3n3i6gb0xA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.88, -73.981455, 40.74134, -74.003447, 40.732112, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'AxYOiin7jQUnzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 17, tzinfo=datetime.timezone.utc), 1, 1.44, -73.97364, 40.743695, -73.986087, 40.756747, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', '9LetT/0O18wrkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 6, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 6, 41, tzinfo=datetime.timezone.utc), 1, 2.37, -73.939577, 40.84758, -73.955483, 40.820263, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', '04gDrJ5kzck8Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 52, tzinfo=datetime.timezone.utc), 4, 1.82, -73.975328, 40.752318, -73.975043, 40.733032, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', '4CKX05cXTdqP2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 13, 54, tzinfo=datetime.timezone.utc), 5, 1.86, -74.0057, 40.718227, -73.99204, 40.738507, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'z9Idj3mE1d82PQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 39, tzinfo=datetime.timezone.utc), 5, 2.0, -73.966402, 40.804842, -73.984377, 40.780205, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'Bco8JHrG3PNIsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 11, 4, tzinfo=datetime.timezone.utc), 1, 1.97, -73.974623, 40.754198, -73.991307, 40.729995, 'Credit', 7.7, 0.0, 1.0, 0.0, 8.7, '1705685161.48292', 'mHfAUJZ3xz584Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 21, 25, tzinfo=datetime.timezone.utc), 1, 1.98, -73.993145, 40.7413, -74.007968, 40.720128, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', '8jOp/MfTD4rTww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 54, tzinfo=datetime.timezone.utc), 2, 1.93, -74.016138, 40.706307, -74.001272, 40.72427, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', '6Xtwngny+72TGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 3, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 3, 37, tzinfo=datetime.timezone.utc), 4, 2.3, -74.004382, 40.742283, -73.987063, 40.766318, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'lLMWORj+z8gn4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 27, tzinfo=datetime.timezone.utc), 1, 1.73, -73.99323, 40.721057, -73.982903, 40.743223, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'QNOqjuiLJXfffQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 4, 21, tzinfo=datetime.timezone.utc), 3, 2.07, -73.997907, 40.763623, -73.99825, 40.740683, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'mnpdY+jkf26cdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 0, 36, tzinfo=datetime.timezone.utc), 1, 1.83, -74.003508, 40.751503, -73.982113, 40.751123, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'dl8eE9ePeGsD/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 40, tzinfo=datetime.timezone.utc), 2, 1.53, -73.986815, 40.761215, -73.965332, 40.75819, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'Z4QLGHu+MR0Auw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 56, tzinfo=datetime.timezone.utc), 1, 1.81, -73.96559, 40.758945, -73.982223, 40.774443, 'Credit', 7.7, 0.5, 1.0, 0.0, 9.2, '1705685161.48292', 'IvO6YhkBWDB0Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 17, tzinfo=datetime.timezone.utc), 1, 2.0, -73.96814, 40.762348, -73.948763, 40.779247, 'Credit', 7.7, 1.0, 1.0, 0.0, 9.7, '1705685161.48292', 'YrA4i08rctwgSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 42, tzinfo=datetime.timezone.utc), 1, 1.79, -73.956205, 40.787137, -73.955045, 40.765937, 'Credit', 7.7, 1.0, 1.0, 0.0, 9.7, '1705685161.48292', 'hr6hruBIpzMv0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 45, tzinfo=datetime.timezone.utc), 2, 1.56, -73.967648, 40.787637, -73.954198, 40.782288, 'Credit', 7.7, 1.0, 1.0, 0.0, 9.7, '1705685161.48292', 'XhoYGKkfHYmTsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 16, 5, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 16, 21, 58, tzinfo=datetime.timezone.utc), 1, 1.6, -73.971941, 40.752446, -73.99202, 40.749052, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', '3ua73W3/lLNqgg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 0, tzinfo=datetime.timezone.utc), 1, 2.25, -73.992148, 40.725797, -73.995438, 40.749413, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'qQTONivciB0slQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 13, 55, tzinfo=datetime.timezone.utc), 1, 3.0, -73.961905, 40.805713, -73.986315, 40.769982, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'mlzqSqBkf4VRAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 32, tzinfo=datetime.timezone.utc), 2, 1.89, -73.957323, 40.765628, -73.981003, 40.757683, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'Ja2eRYB2Ys5G3Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 16, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 22, tzinfo=datetime.timezone.utc), 5, 2.37, -73.989885, 40.738577, -73.965877, 40.754397, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'LRShNbi+l0Uyxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 54, tzinfo=datetime.timezone.utc), 1, 2.8, -73.985412, 40.756202, -73.998758, 40.725108, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'utg3GvKa8uiPfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 29, tzinfo=datetime.timezone.utc), 2, 1.16, -73.991798, 40.749898, -73.98056, 40.750208, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'Z/Q7Vc/vsbkhPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 10, 0, tzinfo=datetime.timezone.utc), 5, 3.1, -73.985017, 40.747667, -74.011663, 40.716633, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', 'pqeYvmp72NLUnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 31, tzinfo=datetime.timezone.utc), 1, 1.07, -73.95468, 40.778285, -73.956332, 40.77892, 'Credit', 9.7, 0.0, 1.0, 0.0, 10.7, '1705685161.48292', '082lSFnpjzVAPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 34, tzinfo=datetime.timezone.utc), 2, 3.08, -73.980608, 40.763078, -73.929362, 40.755723, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', '9bO+ozFBBQePaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 1, tzinfo=datetime.timezone.utc), 5, 2.76, -73.992213, 40.749917, -73.965402, 40.767693, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'LMRrKtb4rNA9Yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 23, 19, tzinfo=datetime.timezone.utc), 5, 2.84, -73.985327, 40.723542, -74.007362, 40.705867, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'Vw3WeYgumLy6mQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 5, tzinfo=datetime.timezone.utc), 3, 2.12, -73.955783, 40.776228, -73.955783, 40.776228, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', '9ASqpAntDjfajA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 31, tzinfo=datetime.timezone.utc), 1, 3.07, -74.000878, 40.718527, -73.959385, 40.716318, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'jIfD89E3LmUWKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 21, 39, tzinfo=datetime.timezone.utc), 1, 2.68, -73.976287, 40.755978, -73.949878, 40.784323, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'obW1KVk3jR9rBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 23, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 36, tzinfo=datetime.timezone.utc), 1, 2.98, -73.956845, 40.775032, -73.990898, 40.765092, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'jRL7JpasbTTXCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 10, tzinfo=datetime.timezone.utc), 1, 2.87, -73.97918, 40.756168, -73.980337, 40.785393, 'Credit', 9.7, 0.5, 1.0, 0.0, 11.2, '1705685161.48292', 'sXfaxFSC8KyLJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 2, tzinfo=datetime.timezone.utc), 1, 2.09, -73.981123, 40.741312, -73.961335, 40.762413, 'Credit', 9.7, 1.0, 1.0, 0.0, 11.7, '1705685161.48292', '/rFZX9WZqjYSGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 38, tzinfo=datetime.timezone.utc), 1, 2.66, -73.968178, 40.762253, -73.991923, 40.730875, 'Credit', 9.7, 1.0, 1.0, 0.0, 11.7, '1705685161.48292', 'HeEgJ1zvTI2wTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 46, tzinfo=datetime.timezone.utc), 1, 1.5, -73.986427, 40.758495, -73.979015, 40.776625, 'Credit', 9.7, 1.0, 1.0, 0.0, 11.7, '1705685161.48292', 'w6K+q+ZazMfF5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 54, tzinfo=datetime.timezone.utc), 1, 1.86, -73.936895, 40.805035, -73.947747, 40.822028, 'Credit', 9.7, 1.0, 1.0, 0.0, 11.7, '1705685161.48292', 'ij++lwfmycX1jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 18, 37, tzinfo=datetime.timezone.utc), 5, 2.0, -73.994535, 40.7348, -73.973823, 40.748862, 'Credit', 9.7, 1.0, 1.0, 0.0, 11.7, '1705685161.48292', 'tlsxsCdqwVHr/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 17, 7, 42, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 0, 17, tzinfo=datetime.timezone.utc), 1, 2.6, -73.940233, 40.75121, -73.978617, 40.751083, 'Credit', 11.7, 0.0, 1.0, 0.0, 12.7, '1705685161.48292', '+M2H4hs1xCSm9Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 38, tzinfo=datetime.timezone.utc), 1, 3.37, -73.989193, 40.755623, -74.004562, 40.717133, 'Credit', 11.7, 0.5, 1.0, 0.0, 13.2, '1705685161.48292', '8Df1aVfUdQSO7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 17, tzinfo=datetime.timezone.utc), 1, 2.84, -74.005807, 40.750723, -73.997445, 40.722468, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685161.48292', 'qfY1WXnOyEL1/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 14, tzinfo=datetime.timezone.utc), 5, 4.07, -73.943685, 40.776642, -73.97432, 40.736957, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685161.48292', 'SRu26oVWbIIVWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 18, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 18, 34, tzinfo=datetime.timezone.utc), 1, 2.14, -73.965217, 40.765917, -73.984425, 40.747647, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685161.48292', 'ySEOEU5z5MVbWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 3, tzinfo=datetime.timezone.utc), 5, 2.88, -73.96442, 40.756257, -73.972647, 40.785728, 'Credit', 11.7, 1.0, 1.0, 0.0, 13.7, '1705685161.48292', '07naRzrkTYbgCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 11, tzinfo=datetime.timezone.utc), 1, 2.73, -73.961005, 40.777872, -73.978707, 40.746092, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685161.48292', 'MO40tXdFx6SPHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 11, 1, tzinfo=datetime.timezone.utc), 1, 4.89, -73.987807, 40.700877, -73.983262, 40.734522, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685161.48292', 'ikwfvAaoMEUo6w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 41, tzinfo=datetime.timezone.utc), 5, 4.1, -73.949467, 40.785187, -73.98948, 40.743132, 'Credit', 13.7, 0.0, 1.0, 0.0, 14.7, '1705685161.48292', 'Ltm5Kvqd04jHYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 6, tzinfo=datetime.timezone.utc), 5, 4.86, -73.999493, 40.727538, -73.960197, 40.758098, 'Credit', 13.7, 1.0, 1.0, 0.0, 15.7, '1705685161.48292', 'kqUPOb6jDRUSog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 55, tzinfo=datetime.timezone.utc), 5, 3.33, -73.979162, 40.776817, -73.994562, 40.738185, 'Credit', 13.7, 1.0, 1.0, 0.0, 15.7, '1705685161.48292', 'Apij85getYczdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 22, 28, tzinfo=datetime.timezone.utc), 1, 5.82, -73.916777, 40.743182, -73.99657, 40.737232, 'Credit', 16.9, 0.5, 1.0, 0.0, 18.4, '1705685161.48292', 'r6oSWcfXG+pslw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 4, tzinfo=datetime.timezone.utc), 5, 4.1, -73.975338, 40.777217, -74.005298, 40.72853, 'Credit', 16.9, 1.0, 1.0, 0.0, 18.9, '1705685161.48292', 'Bo+gI+4UwESsZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 11, 16, tzinfo=datetime.timezone.utc), 5, 5.92, -73.949167, 40.781278, -74.002043, 40.739703, 'Credit', 16.1, 0.0, 1.0, 0.0, 17.1, '1705685161.48292', 'jReu5rJ76ywEPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), 1, 4.69, -73.993605, 40.76229, -73.991643, 40.738462, 'Credit', 18.1, 0.0, 1.0, 0.0, 19.1, '1705685161.48292', 'KIOaKSC/o49asA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 39, tzinfo=datetime.timezone.utc), 1, 6.26, -73.9502, 40.80229, -74.008343, 40.746692, 'Credit', 18.1, 1.0, 1.0, 0.0, 20.1, '1705685161.48292', 'WSOWAgpUhGbMSA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 42, tzinfo=datetime.timezone.utc), 1, 6.48, -73.968413, 40.750645, -73.94839, 40.821617, 'Credit', 18.1, 1.0, 1.0, 0.0, 20.1, '1705685161.48292', 'jRLPaBS1Dw+FFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 43, tzinfo=datetime.timezone.utc), 2, 0.93, -73.965072, 40.766685, -73.979332, 40.771735, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', '5u8eML98dsHaiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 14, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 47, tzinfo=datetime.timezone.utc), 5, 0.92, -73.980522, 40.75087, -73.990748, 40.74374, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'RuLyUf4VdRBJCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 27, tzinfo=datetime.timezone.utc), 5, 0.79, -73.954093, 40.790168, -73.956972, 40.781042, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'NmxGlNWwq44dsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 29, tzinfo=datetime.timezone.utc), 2, 0.72, -73.990253, 40.746448, -73.98369, 40.755663, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'yu9X0W/qnoCGxQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 39, tzinfo=datetime.timezone.utc), 5, 0.7, -73.980925, 40.773412, -73.98934, 40.769552, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'PvjVqCc1lEkJgA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 12, tzinfo=datetime.timezone.utc), 2, 0.89, -73.994847, 40.734438, -73.992083, 40.743925, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'zpTxpqlsTQ4oJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 8, tzinfo=datetime.timezone.utc), 1, 0.17, -73.970322, 40.758378, -73.973697, 40.75761, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'JK0YkkCSmTf9Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 36, tzinfo=datetime.timezone.utc), 5, 0.75, -73.998627, 40.721233, -73.991838, 40.727015, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'uSKe2wR3zFPbBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 15, 12, tzinfo=datetime.timezone.utc), 1, 0.81, -74.008948, 40.713772, -74.011315, 40.723667, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'QFZ0zaEPgJsncQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 6, tzinfo=datetime.timezone.utc), 1, 0.69, -73.961378, 40.768862, -73.954743, 40.777672, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'LMOmv6nuhKlBpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 15, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 49, tzinfo=datetime.timezone.utc), 1, 0.93, -73.96637, 40.76878, -73.956188, 40.767387, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', '/nSxqrVAj4JE2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 10, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 10, 10, tzinfo=datetime.timezone.utc), 1, 0.95, -73.996893, 40.733275, -74.004817, 40.725537, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'q533gS238jSiXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 47, tzinfo=datetime.timezone.utc), 5, 0.96, -73.960215, 40.761947, -73.954773, 40.773313, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'wPfw6jLKIk5u9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 9, tzinfo=datetime.timezone.utc), 2, 1.04, -73.957595, 40.801438, -73.968112, 40.792065, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', '3Glpa6QoNu2dpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 15, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 31, tzinfo=datetime.timezone.utc), 1, 0.84, -73.980125, 40.743137, -73.976812, 40.750843, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'hx0Q6FIaqMK7EQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), 1, 0.73, -74.005853, 40.72603, -73.997727, 40.719317, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'ONYA2vrkgLm6GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 16, 15, tzinfo=datetime.timezone.utc), 1, 0.93, -73.960613, 40.769693, -73.949902, 40.776015, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'Fs15uMHs+XgTdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 6, 22, tzinfo=datetime.timezone.utc), 1, 1.23, -73.986023, 40.727477, -73.975365, 40.74245, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', 'lp1RltWGL41Vxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 18, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 18, 17, tzinfo=datetime.timezone.utc), 1, 0.98, -73.982437, 40.751237, -73.992428, 40.758362, 'Credit', 4.9, 0.0, 1.0, 0.0, 5.9, '1705685161.48292', '7mrTYkcVZktn5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 36, tzinfo=datetime.timezone.utc), 1, 1.16, -73.947295, 40.78412, -73.957755, 40.769565, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'hG9E+dgLL3OtSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 5, 38, tzinfo=datetime.timezone.utc), 1, 1.0, -73.99001, 40.756282, -73.975203, 40.756135, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'm28IoJOw/3Td7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 24, tzinfo=datetime.timezone.utc), 1, 1.25, -73.990828, 40.734778, -74.002065, 40.719232, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'gjOeqFfaaCUvDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 51, tzinfo=datetime.timezone.utc), 3, 0.88, -73.981518, 40.737277, -73.989245, 40.726257, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'woq7O6CorGekyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 59, tzinfo=datetime.timezone.utc), 5, 0.96, -73.975522, 40.789623, -73.967752, 40.801975, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', '4Z40X3qe6M7qwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 51, tzinfo=datetime.timezone.utc), 2, 0.72, -73.992315, 40.725048, -73.996783, 40.715497, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', '8yKz/pKSg1LJjA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 20, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 20, 35, tzinfo=datetime.timezone.utc), 1, 1.0, -73.946593, 40.667157, -73.958982, 40.733215, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', '4HoC3DKAR6Qynw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 38, tzinfo=datetime.timezone.utc), 5, 0.59, -73.983888, 40.740578, -73.995757, 40.736115, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', '+I6dmEstIMnmHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 18, tzinfo=datetime.timezone.utc), 5, 0.77, -73.989107, 40.720403, -73.989557, 40.712653, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'evEU7XRHbIln8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 3, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 24, tzinfo=datetime.timezone.utc), 1, 0.93, -74.007513, 40.740107, -74.00267, 40.74999, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'VqgPPCSQ/+m/fw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 47, tzinfo=datetime.timezone.utc), 1, 1.2, -73.993098, 40.75786, -74.003797, 40.743075, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'kQmxKUAuz4YwQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 42, tzinfo=datetime.timezone.utc), 1, 1.32, -73.994108, 40.746083, -74.005168, 40.728868, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'XBQJm2BBxCFM2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 54, tzinfo=datetime.timezone.utc), 1, 0.96, -73.969918, 40.797315, -73.965625, 40.80911, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'BQll9i7P0vbW9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 22, 17, tzinfo=datetime.timezone.utc), 5, 0.93, -73.992018, 40.725382, -73.980932, 40.72959, 'Credit', 4.9, 0.5, 1.0, 0.0, 6.4, '1705685161.48292', 'ZAFynalyh7gBYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 37, tzinfo=datetime.timezone.utc), 1, 0.93, -73.98112, 40.781078, -73.974388, 40.791658, 'Credit', 4.9, 1.0, 1.0, 0.0, 6.9, '1705685161.48292', 'HIpMgfpOIUmEiw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 32, tzinfo=datetime.timezone.utc), 1, 1.37, -73.987693, 40.728508, -74.005562, 40.726037, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'UFiniw4wyJ8tlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 8, tzinfo=datetime.timezone.utc), 2, 1.36, -74.008488, 40.732525, -73.996163, 40.748762, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'B7osvnAkqZnPiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 8, 38, tzinfo=datetime.timezone.utc), 2, 1.74, -74.005088, 40.719315, -73.991147, 40.736798, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', '6sjCGleVRnbN9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 16, 4, tzinfo=datetime.timezone.utc), 1, 1.42, -73.986368, 40.743598, -73.974237, 40.75526, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'LGr+x/TYn9f37A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 49, 1, tzinfo=datetime.timezone.utc), 2, 1.8, -73.98851, 40.75353, -73.981695, 40.770604, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'wwsWpzQjCDahCg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 13, tzinfo=datetime.timezone.utc), 1, 0.99, -73.972173, 40.747307, -73.987125, 40.752553, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', '7TJrSBx1DC5xdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 18, tzinfo=datetime.timezone.utc), 1, 1.65, -73.979762, 40.755705, -73.984902, 40.736707, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', '0uTOkZSAvY4Jtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 29, tzinfo=datetime.timezone.utc), 2, 0.81, -73.975665, 40.749317, -73.982223, 40.755787, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'G7xJFcc6oNVdmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 15, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 15, 41, tzinfo=datetime.timezone.utc), 1, 1.48, -73.99114, 40.727732, -73.996045, 40.742743, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', '0Poqnx5glQcynw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.82, -73.954652, 40.789375, -73.971777, 40.766293, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'LGB52TmDeEBnaw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 33, tzinfo=datetime.timezone.utc), 1, 1.63, -73.971128, 40.764377, -73.956837, 40.784097, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'JOZoczrqrmgFBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 34, tzinfo=datetime.timezone.utc), 1, 1.42, -73.982878, 40.738805, -73.99813, 40.735315, 'Credit', 6.9, 0.0, 1.0, 0.0, 7.9, '1705685161.48292', 'DYLaDIMUyPiMhg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 53, tzinfo=datetime.timezone.utc), 3, 1.9, -73.958992, 40.799637, -73.979198, 40.784675, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'McHsoWkTVMzlxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 14, 40, tzinfo=datetime.timezone.utc), 2, 1.85, -73.954233, 40.787337, -73.978217, 40.786363, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'Z6EpZhDxVeok+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 24, tzinfo=datetime.timezone.utc), 1, 1.59, -73.962797, 40.758518, -73.947033, 40.776057, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', '6x6mfdimNfU8hg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 50, tzinfo=datetime.timezone.utc), 5, 1.51, -73.970832, 40.748558, -73.977792, 40.763627, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', '9DplzAuJ69kv8w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 12, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 12, 25, tzinfo=datetime.timezone.utc), 2, 2.3, -73.94814, 40.770455, -73.974187, 40.746297, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'k7O4u2QnTTgoRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 16, tzinfo=datetime.timezone.utc), 5, 1.68, -73.991112, 40.770762, -73.979318, 40.755428, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'rvhjG4eRvit6zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 23, tzinfo=datetime.timezone.utc), 2, 1.23, -73.994583, 40.721253, -73.975723, 40.718918, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'uoMx3iH5fxUstg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 13, tzinfo=datetime.timezone.utc), 1, 1.59, -73.976283, 40.780748, -73.962148, 40.770712, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'q5o5L1jVW7QsoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 35, tzinfo=datetime.timezone.utc), 1, 1.85, -73.975897, 40.751417, -73.996255, 40.736288, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'BjzDGgmCynfbEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 28, tzinfo=datetime.timezone.utc), 2, 1.65, -73.970092, 40.758332, -73.953497, 40.767215, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', 'HnCdJJkLP3wqaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 6, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 6, 26, tzinfo=datetime.timezone.utc), 1, 2.15, -73.9871, 40.733352, -73.972687, 40.75957, 'Credit', 7.3, 0.0, 1.0, 0.0, 8.3, '1705685161.48292', '3FTseDaoeT1Seg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 43, tzinfo=datetime.timezone.utc), 2, 2.02, -73.988092, 40.759682, -73.960835, 40.75724, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'GFnswJmVgCTsPA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 27, tzinfo=datetime.timezone.utc), 1, 2.05, -74.00404, 40.750985, -73.984618, 40.759985, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'Tfogt6UcDiPIVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 41, tzinfo=datetime.timezone.utc), 1, 1.92, -73.969518, 40.767875, -73.97179, 40.775282, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', '3NR/4fMTQMBuag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 14, tzinfo=datetime.timezone.utc), 1, 2.25, -73.976953, 40.763592, -73.953605, 40.780193, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'nDzoJXp1nQUABw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 52, tzinfo=datetime.timezone.utc), 1, 2.19, -73.999742, 40.752923, -73.980577, 40.772928, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'RJVhH6vNmfcUsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 3, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 29, tzinfo=datetime.timezone.utc), 2, 2.02, -74.000838, 40.746347, -73.981225, 40.729003, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'wOx83kMstFFWug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 23, 42, tzinfo=datetime.timezone.utc), 2, 1.87, -73.96971, 40.753145, -73.985132, 40.72915, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', '9X/fJsHw97Sg3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 31, tzinfo=datetime.timezone.utc), 4, 1.31, -73.997693, 40.727555, -73.981555, 40.724578, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', '4FloLI1l2CBWtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 24, tzinfo=datetime.timezone.utc), 5, 1.8, -74.011267, 40.702735, -74.01581, 40.715172, 'Credit', 7.3, 0.5, 1.0, 0.0, 8.8, '1705685161.48292', 'c/HOX2qM4nSDHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 41, tzinfo=datetime.timezone.utc), 1, 0.19, -73.988575, 40.753515, -74.00515, 40.729455, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', 'rGiW6CXQoXaojg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 24, tzinfo=datetime.timezone.utc), 2, 2.07, -73.974638, 40.746397, -73.985798, 40.726778, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', 'Qdo1ezEK7NvObA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 31, tzinfo=datetime.timezone.utc), 5, 1.52, -74.235548, 40.772248, -74.239548, 40.776728, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', 'mnZxQt2R+aej/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 27, tzinfo=datetime.timezone.utc), 2, 1.28, -73.897295, 40.754247, -73.897295, 40.754247, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', '3YgnzYmbGcx4/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 6, tzinfo=datetime.timezone.utc), 5, 1.9, -73.978598, 40.75892, -73.980258, 40.77542, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', 'nHDS8ATsBcdKRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 9, tzinfo=datetime.timezone.utc), 5, 1.83, -73.974813, 40.742013, -73.997812, 40.741387, 'Credit', 7.3, 1.0, 1.0, 0.0, 9.3, '1705685161.48292', '56BAdmMEwgNc7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 7, 48, tzinfo=datetime.timezone.utc), 2, 2.36, -73.975538, 40.733145, -73.981138, 40.757977, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'gqyCfFpReHX6ug', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 23, tzinfo=datetime.timezone.utc), 4, 2.61, -73.953875, 40.806502, -73.961225, 40.776798, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'AqLUc48icVF14w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 57, tzinfo=datetime.timezone.utc), 1, 1.92, -73.985957, 40.740105, -73.9673, 40.761397, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'IDs3eMZZ05exEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 11, 28, tzinfo=datetime.timezone.utc), 5, 2.5, -73.972185, 40.786617, -73.997815, 40.7609, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'ETHBptWIYEULCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 25, tzinfo=datetime.timezone.utc), 1, 2.51, -73.970487, 40.796698, -73.976495, 40.765685, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'hcN2AR4dw69r1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 48, tzinfo=datetime.timezone.utc), 2, 2.91, -73.983325, 40.721368, -74.007193, 40.705417, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'sboYeE4DpFl8uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 27, tzinfo=datetime.timezone.utc), 1, 1.56, -74.001478, 40.724108, -73.988953, 40.73678, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'Ur0V8qddLGG16w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 46, tzinfo=datetime.timezone.utc), 5, 2.07, -73.967847, 40.75766, -73.990622, 40.74528, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'BlRZmpsIpRsllA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.97, -73.966605, 40.75341, -73.983002, 40.76932, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'RgGjFSoXbipALA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 14, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 14, 35, tzinfo=datetime.timezone.utc), 5, 2.13, -73.978085, 40.725332, -73.988137, 40.745685, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'QoawfUvKitSLpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 12, 0, tzinfo=datetime.timezone.utc), 1, 2.16, -73.977708, 40.764738, -73.95617, 40.784417, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'Rt4X5IzFMHLuiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 17, 16, tzinfo=datetime.timezone.utc), 1, 2.65, -73.982295, 40.776962, -74.007702, 40.751625, 'Credit', 9.3, 0.0, 1.0, 0.0, 10.3, '1705685161.48292', 'o/rx5Dhvo2DqxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 14, tzinfo=datetime.timezone.utc), 1, 2.7, -74.006045, 40.717085, -73.979565, 40.74363, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'ZNdHKo9BMaxSrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 22, 5, tzinfo=datetime.timezone.utc), 2, 2.62, -73.989732, 40.7141, -74.005368, 40.739923, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'op8hGqJzMbKb8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 35, tzinfo=datetime.timezone.utc), 1, 2.56, -73.9914, 40.749825, -73.988918, 40.722728, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'AznUdai549f42A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 2, tzinfo=datetime.timezone.utc), 1, 2.99, -73.940803, 40.712168, -73.987682, 40.71953, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', '8xM1wEHg1IPEMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 47, tzinfo=datetime.timezone.utc), 1, 2.81, -73.973013, 40.785123, -73.943253, 40.810685, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'nEyn8nwOiw16Tg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 15, tzinfo=datetime.timezone.utc), 5, 1.52, -73.973428, 40.764053, -73.992712, 40.758157, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'NtFW2YTpWkhuEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 58, tzinfo=datetime.timezone.utc), 5, 2.64, -73.990975, 40.769515, -73.957582, 40.776013, 'Credit', 9.3, 0.5, 1.0, 0.0, 10.8, '1705685161.48292', 'Ng2t1G5hSC1PTA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 8, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 55, tzinfo=datetime.timezone.utc), 5, 4.33, -73.973827, 40.743522, -74.01084, 40.701907, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685161.48292', 'pSXb4lJNPzU20w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 20, 14, 6, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 22, 58, tzinfo=datetime.timezone.utc), 2, 2.7, -73.981235, 40.763671, -73.98027, 40.73412, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685161.48292', 'pJIaZ7dwEhmBLw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 50, tzinfo=datetime.timezone.utc), 1, 3.22, -73.974698, 40.777965, -73.976662, 40.743663, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685161.48292', 'KOLyNNz+AwBvtA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 53, tzinfo=datetime.timezone.utc), 5, 2.8, -73.98782, 40.716323, -73.997733, 40.745012, 'Credit', 11.3, 0.0, 1.0, 0.0, 12.3, '1705685161.48292', 'CUYMiAy52HWvdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 0, tzinfo=datetime.timezone.utc), 1, 3.16, -73.981992, 40.770978, -73.948682, 40.781435, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685161.48292', 'E5l2s3b3NVM5pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 20, 19, tzinfo=datetime.timezone.utc), 1, 3.7, -74.005843, 40.748407, -74.010162, 40.705113, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685161.48292', 'Hk9H5LYFXP1iFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 1, tzinfo=datetime.timezone.utc), 1, 2.91, -73.996212, 40.753337, -73.998118, 40.719697, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685161.48292', '8EtpDlgV83USZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 11, tzinfo=datetime.timezone.utc), 2, 1.83, -73.97019, 40.764472, -73.994868, 40.7594, 'Credit', 11.3, 0.5, 1.0, 0.0, 12.8, '1705685161.48292', 'kz7YCfmkrnB/dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 17, tzinfo=datetime.timezone.utc), 3, 3.85, -73.993327, 40.752263, -74.010858, 40.713177, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685161.48292', 'ZXmtOwKGYEf53g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 12, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 13, 19, tzinfo=datetime.timezone.utc), 1, 3.48, -74.001032, 40.736842, -73.972045, 40.758873, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685161.48292', 'H+9dB+vK2uQldg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 18, tzinfo=datetime.timezone.utc), 1, 3.47, -73.966248, 40.767947, -73.997193, 40.725013, 'Credit', 13.3, 0.0, 1.0, 0.0, 14.3, '1705685161.48292', 'T3yag+jp5pmoHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 18, 26, tzinfo=datetime.timezone.utc), 1, 4.59, -73.946515, 40.779985, -73.980933, 40.729425, 'Credit', 13.3, 1.0, 1.0, 0.0, 15.3, '1705685161.48292', 'dXTFmtoqEq/6iA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 29, tzinfo=datetime.timezone.utc), 1, 7.36, -73.998622, 40.756047, -73.943253, 40.839495, 'Credit', 18.1, 0.5, 1.0, 0.0, 19.6, '1705685161.48292', 'j1zUALzU8rBLlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 51, tzinfo=datetime.timezone.utc), 1, 10.34, -73.872247, 40.773872, -73.992568, 40.758262, 'Credit', 33.7, 1.0, 1.0, 0.0, 35.7, '1705685161.48292', '03guT1gNe281Lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 6, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 6, 52, tzinfo=datetime.timezone.utc), 1, 6.54, -73.953292, 40.76745, -74.01135, 40.703985, 'Credit', 15.3, 0.0, 1.0, 0.0, 16.3, '1705685161.48292', 'iNky44/aoQN7qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 6, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 6, 37, tzinfo=datetime.timezone.utc), 5, 5.84, -74.00768, 40.705242, -73.976365, 40.760413, 'Credit', 15.3, 0.0, 1.0, 0.0, 16.3, '1705685161.48292', 'pGDn1Hlf71qPSQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 42, tzinfo=datetime.timezone.utc), 2, 3.86, -74.000178, 40.721553, -73.97432, 40.762882, 'Credit', 15.3, 1.0, 1.0, 0.0, 17.3, '1705685161.48292', 'EoorOTIIYeEZMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 14, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 32, tzinfo=datetime.timezone.utc), 5, 6.47, 0.0, 0.0, 0.0, 0.0, 'Credit', 17.3, 0.0, 1.0, 0.0, 18.3, '1705685161.48292', 'X4ufi1I8jThiNA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 7, 49, tzinfo=datetime.timezone.utc), 4, 0.56, -73.969062, 40.753357, -73.975928, 40.749078, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685161.48292', 'uwihIF35NlXDYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 1, tzinfo=datetime.timezone.utc), 1, 0.23, -73.987723, 40.752522, -73.992212, 40.749913, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685161.48292', '737n75Bm/vFu8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 35, tzinfo=datetime.timezone.utc), 1, 0.3, -73.955995, 40.782005, -73.953923, 40.78481, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685161.48292', 'iQAXUcDFiqxZkg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 19, tzinfo=datetime.timezone.utc), 2, 0.52, -73.977805, 40.761135, -73.984412, 40.759857, 'Credit', 3.7, 0.0, 1.0, 0.0, 4.7, '1705685161.48292', 'ZrNyu/42TKxVEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 9, tzinfo=datetime.timezone.utc), 1, 0.4, -73.966408, 40.767147, -73.962125, 40.770277, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685161.48292', '0r4+ouNSuE7wOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 6, tzinfo=datetime.timezone.utc), 2, 0.57, -73.984943, 40.771207, -73.985347, 40.778123, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685161.48292', 'ZtRfiQ+anEPBSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 22, 56, tzinfo=datetime.timezone.utc), 1, 0.51, -73.975315, 40.751558, -73.970235, 40.749142, 'Credit', 3.7, 0.5, 1.0, 0.0, 5.2, '1705685161.48292', 'dpX2kfdromJjoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 51, tzinfo=datetime.timezone.utc), 1, 0.71, -73.99966, 40.753787, -73.999527, 40.761403, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'Z3dlT3VN8JCImA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 31, tzinfo=datetime.timezone.utc), 1, 0.75, -74.003882, 40.725693, -74.002872, 40.733933, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'U+tnDhNy/JqS6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 27, tzinfo=datetime.timezone.utc), 1, 0.54, -73.9898, 40.764637, -73.987312, 40.764063, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'oVpSOknyOOy0yA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 18, 36, tzinfo=datetime.timezone.utc), 2, 0.6, -73.978725, 40.736922, -73.975937, 40.744082, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'hLoU8v9quxD0/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 16, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 16, 21, tzinfo=datetime.timezone.utc), 5, 0.62, -73.969258, 40.766813, -73.963442, 40.774445, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'kZC2ZWnMF4KC7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 31, tzinfo=datetime.timezone.utc), 2, 0.5, -73.950815, 40.78599, -73.953027, 40.78035, 'Credit', 3.7, 1.0, 1.0, 0.0, 5.7, '1705685161.48292', 'rk7kbinYv+K2/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 37, tzinfo=datetime.timezone.utc), 1, 1.03, -73.959022, 40.781003, -73.961633, 40.771157, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'vP/VwlN19ytI4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 47, tzinfo=datetime.timezone.utc), 1, 1.34, -73.987303, 40.761368, -73.983598, 40.775878, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'BbmEqQfp1Bxpmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 9, 22, tzinfo=datetime.timezone.utc), 1, 0.75, -73.979877, 40.76537, -73.977638, 40.773733, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', '4C+/H1gdBLVIXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 59, tzinfo=datetime.timezone.utc), 2, 1.2, -73.97325, 40.757645, -73.990035, 40.750977, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'tJhtzcmhMTfZyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 7, 0, tzinfo=datetime.timezone.utc), 1, 1.1, -73.955465, 40.788678, -73.950438, 40.798147, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'zn8Hz3AJilNhCg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 12, tzinfo=datetime.timezone.utc), 1, 1.2, -73.99056, 40.751267, -73.988118, 40.738507, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'dViuY8EB6FtfIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 11, 10, tzinfo=datetime.timezone.utc), 3, 1.27, -73.994325, 40.746033, -73.97994, 40.750205, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'CMiTOzbbuqg4JQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 7, 8, tzinfo=datetime.timezone.utc), 1, 1.12, -74.004708, 40.734005, -73.990263, 40.742723, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'a4MdWoCx/cUogg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 13, 28, tzinfo=datetime.timezone.utc), 5, 1.11, -73.979878, 40.775823, -73.990128, 40.762073, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'j3d1WuaND9okAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 18, 28, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 34, 5, tzinfo=datetime.timezone.utc), 4, 1.2, -73.954684, 40.783967, -73.960341, 40.770236, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'XDTafHbqwoEcpw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 19, tzinfo=datetime.timezone.utc), 1, 0.88, -73.990853, 40.755932, -73.980715, 40.759207, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'GEL8RDtn1jOKFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 53, tzinfo=datetime.timezone.utc), 5, 0.86, -73.944058, 40.776043, -73.95539, 40.77302, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'zrkT16GcQ9tcaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 36, tzinfo=datetime.timezone.utc), 1, 1.33, -73.95542, 40.779577, -73.96762, 40.762995, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'IZsrkmLPvOzZ5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 11, 54, tzinfo=datetime.timezone.utc), 1, 1.08, -73.983635, 40.721595, -73.991987, 40.730063, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'bQ5Pk6Kc7KaVlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 14, tzinfo=datetime.timezone.utc), 5, 1.38, -73.999222, 40.74429, -73.984193, 40.754817, 'Credit', 5.7, 0.0, 1.0, 0.0, 6.7, '1705685161.48292', 'nusRRdQjWaNFAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.29, -73.998673, 40.744605, -73.996835, 40.75998, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'cAGzMFc38lqCFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 35, tzinfo=datetime.timezone.utc), 1, 1.66, -73.953763, 40.782052, -73.96724, 40.761405, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'aSxUbv5O7zb4zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.33, -73.99215, 40.747377, -73.979638, 40.737408, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'jaPKFZHq64whXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.04, -73.989868, 40.762227, -73.990605, 40.750997, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', '8CxvuhVqeEYgPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 47, tzinfo=datetime.timezone.utc), 1, 1.35, -73.958557, 40.784158, -73.975348, 40.789605, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'EeMI3NlThJA4Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 3, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 3, 1, tzinfo=datetime.timezone.utc), 1, 0.0, -74.008665, 40.711695, -74.008665, 40.711695, 'Credit', 6.2, 0.0, 1.0, 0.0, 7.2, '1705685161.48292', 'dgZ1hvlfD3NgAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.13, -73.977843, 40.761317, -73.977342, 40.772553, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'NedIzUgzlXGKlg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 17, tzinfo=datetime.timezone.utc), 2, 1.08, -73.999865, 40.738277, -73.992585, 40.727167, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'VrFIAbKUIoTc+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 2, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 3, 4, tzinfo=datetime.timezone.utc), 1, 1.34, -73.978988, 40.72411, -73.999415, 40.730223, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'FksXAsnqJnUFzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 1, 27, tzinfo=datetime.timezone.utc), 1, 1.22, -73.989777, 40.734283, -73.976147, 40.741072, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'E5Rhvlg5ylpPZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 2, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 2, 29, tzinfo=datetime.timezone.utc), 1, 1.27, -73.972598, 40.796358, -73.969747, 40.783777, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'de9kyJbJ8RrHLQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 21, 38, tzinfo=datetime.timezone.utc), 2, 1.18, -73.988618, 40.73735, -73.977652, 40.75179, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'RzNa7SPxTyVh/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.05, -73.995017, 40.732525, -74.003322, 40.722892, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'XgoMAT8We8KCuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 34, tzinfo=datetime.timezone.utc), 1, 0.76, -73.980575, 40.764753, -73.96793, 40.760007, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'Acmg9DimH97tKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 29, tzinfo=datetime.timezone.utc), 1, 1.2, -73.990827, 40.724443, -73.996867, 40.737672, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'iBahFLpzc+Vv0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 37, tzinfo=datetime.timezone.utc), 2, 1.12, -74.007682, 40.725037, -74.010533, 40.714475, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'Lmpsffzq2KkPKw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 23, 44, tzinfo=datetime.timezone.utc), 1, 1.52, -73.9762, 40.755435, -73.988938, 40.742022, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', 'ie8OS7kzCHcQNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 45, tzinfo=datetime.timezone.utc), 3, 1.44, -73.96164, 40.768388, -73.947255, 40.784177, 'Credit', 5.7, 0.5, 1.0, 0.0, 7.2, '1705685161.48292', '6WvroErgfrJoow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 8, tzinfo=datetime.timezone.utc), 1, 1.46, -73.976242, 40.739945, -73.96291, 40.758185, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 'of9xpaIjyiq2NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 11, tzinfo=datetime.timezone.utc), 1, 1.46, -73.99535, 40.739483, -73.9885, 40.755008, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 't2BNtQ4uM9Imxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 5, tzinfo=datetime.timezone.utc), 1, 1.09, -73.980295, 40.73033, -73.984497, 40.718913, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 'g3EJCnU1yjL4lw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 18, tzinfo=datetime.timezone.utc), 1, 1.36, -73.974565, 40.74173, -73.962407, 40.758982, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', '0SPI5R3rdnBY1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 25, tzinfo=datetime.timezone.utc), 5, 1.42, -74.007375, 40.727275, -74.002063, 40.745102, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 'UHpWH5mGQlLGOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 45, tzinfo=datetime.timezone.utc), 1, 1.14, -73.996615, 40.747815, -73.994888, 40.76045, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 'YX4AM5hUvUookA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 14, tzinfo=datetime.timezone.utc), 5, 1.33, -74.006478, 40.749605, -74.005983, 40.7345, 'Credit', 5.7, 1.0, 1.0, 0.0, 7.7, '1705685161.48292', 'KFM9HErGYEX0Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 32, tzinfo=datetime.timezone.utc), 1, 1.71, -73.991135, 40.723955, -73.978768, 40.744907, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'vg/9qigYK2tUBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 42, tzinfo=datetime.timezone.utc), 2, 1.82, -73.982635, 40.774632, -73.997385, 40.756308, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', '53fKRhkKrCXypQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 41, tzinfo=datetime.timezone.utc), 1, 1.53, -73.97537, 40.760422, -73.989362, 40.740905, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', '+iqDkG2S5N0rnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 1, 20, tzinfo=datetime.timezone.utc), 2, 1.46, -73.991015, 40.750018, -73.97013, 40.749582, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'hHWhpJPMVxQDyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 22, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.53, -74.006963, 40.739722, -73.99227, 40.751388, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'DwMzE2ClCN5QuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 50, tzinfo=datetime.timezone.utc), 1, 1.72, -73.99498, 40.72511, -73.991937, 40.744182, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'CfT97yAF49JACA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 26, tzinfo=datetime.timezone.utc), 1, 1.82, -73.974715, 40.75258, -73.989527, 40.730063, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', '0khobYpDjhu4wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 43, tzinfo=datetime.timezone.utc), 5, 1.18, -73.985382, 40.731827, -73.99779, 40.72149, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'luWaJUNl1suhuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 48, tzinfo=datetime.timezone.utc), 1, 2.0, -73.957613, 40.769757, -73.976185, 40.744323, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'R+shM3TlYwv5iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 2, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 2, 8, tzinfo=datetime.timezone.utc), 5, 1.72, -73.998273, 40.721167, -74.001518, 40.737335, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'DKQ/lWHtK6aFMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 0, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 0, 30, tzinfo=datetime.timezone.utc), 5, 1.78, -73.97589, 40.795402, -73.95903, 40.814813, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'EOPoNwO3DGmdEg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 12, tzinfo=datetime.timezone.utc), 5, 2.14, -73.976135, 40.749118, -73.953715, 40.77083, 'Credit', 6.9, 0.5, 1.0, 0.0, 8.4, '1705685161.48292', 'E+pQcfaDlOHKrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 18, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 19, 8, tzinfo=datetime.timezone.utc), 5, 1.47, -73.97311, 40.764367, -73.9786, 40.776465, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685161.48292', '3wLBzJAD+jbHcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 1, tzinfo=datetime.timezone.utc), 6, 1.78, -73.987195, 40.738975, -73.972605, 40.761252, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685161.48292', 'eh8mIl+sV+QuoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 18, 7, tzinfo=datetime.timezone.utc), 4, 1.35, -74.000372, 40.737175, -73.98209, 40.739277, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685161.48292', 'hFDs1SPpkGn50w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 25, tzinfo=datetime.timezone.utc), 6, 2.08, -74.008338, 40.721218, -73.995882, 40.748828, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685161.48292', '/YpjryYt26L5rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 55, tzinfo=datetime.timezone.utc), 1, 1.52, -74.005712, 40.733133, -73.994302, 40.732832, 'Credit', 6.9, 1.0, 1.0, 0.0, 8.9, '1705685161.48292', 'kw4LiWtFn10jOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 8, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 8, 18, tzinfo=datetime.timezone.utc), 5, 2.42, -74.006358, 40.707967, -73.99116, 40.732948, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'Cv24euAHbemweQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 55, tzinfo=datetime.timezone.utc), 1, 1.23, -73.970063, 40.753107, -73.984092, 40.746198, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'QMr5LvcSXMou8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 59, tzinfo=datetime.timezone.utc), 1, 1.84, -73.955058, 40.766075, -73.97363, 40.747928, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', '2ha5Jqgu/Eu1+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 55, tzinfo=datetime.timezone.utc), 1, 2.68, -73.772615, 40.661502, -73.764882, 40.670598, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', '/PKzCIltoBBSAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 11, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 11, 52, tzinfo=datetime.timezone.utc), 1, 2.7, -73.961638, 40.764385, -73.991085, 40.74207, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'y0M7QRpalmb4ow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 1, tzinfo=datetime.timezone.utc), 5, 2.24, -74.007753, 40.707152, -74.00306, 40.734415, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'MVQOZ2YWa/M7EA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 15, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 15, 41, tzinfo=datetime.timezone.utc), 2, 1.96, -73.994802, 40.739828, -73.982712, 40.731507, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'F67a2iv/3qjgBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 7, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 7, 54, tzinfo=datetime.timezone.utc), 5, 2.74, -73.9756, 40.733097, -73.979162, 40.761933, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'HNHq+mGlo6lRWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 25, tzinfo=datetime.timezone.utc), 1, 1.98, -73.986173, 40.740247, -73.975308, 40.76358, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'us+zHpY/2ESWIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 34, tzinfo=datetime.timezone.utc), 3, 1.8, -73.980132, 40.785482, -73.956438, 40.778968, 'Credit', 8.9, 0.0, 1.0, 0.0, 9.9, '1705685161.48292', 'RiZLwE57/ChtNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 28, tzinfo=datetime.timezone.utc), 1, 2.68, -73.971722, 40.74416, -74.008213, 40.73551, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'eKa5XMxEoSpDAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 59, tzinfo=datetime.timezone.utc), 5, 2.72, -73.983103, 40.771102, -73.957357, 40.78601, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'WRAs94WJDGrWmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 55, tzinfo=datetime.timezone.utc), 1, 2.87, -73.979752, 40.743375, -73.953542, 40.779575, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'a9pbl6a2m8/G4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 37, tzinfo=datetime.timezone.utc), 2, 2.64, -73.988953, 40.773388, -74.007915, 40.740137, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'rgtBpSc1HVrSkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 22, tzinfo=datetime.timezone.utc), 1, 2.1, -74.00535, 40.736188, -73.979013, 40.744302, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'I4X/O+AC01TQ0A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 3, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 3, 20, tzinfo=datetime.timezone.utc), 2, 2.26, -74.005675, 40.7264, -73.994448, 40.73877, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', '+Vb+vVhFUdnhgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 17, tzinfo=datetime.timezone.utc), 1, 1.98, -73.978787, 40.745168, -74.001502, 40.734787, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'zYwWJDLBjPN6BA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 58, tzinfo=datetime.timezone.utc), 1, 2.66, -74.010505, 40.711488, -73.997928, 40.746222, 'Credit', 8.9, 0.5, 1.0, 0.0, 10.4, '1705685161.48292', 'Fo0z6FmZlXrvqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 58, tzinfo=datetime.timezone.utc), 2, 1.76, -73.97935, 40.730065, -74.008062, 40.740335, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685161.48292', '7F3ReHbMisyFHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 0, tzinfo=datetime.timezone.utc), 1, 1.83, -73.991542, 40.74983, -73.978343, 40.766573, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685161.48292', 'CrsLkSdb5szCKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 39, tzinfo=datetime.timezone.utc), 1, 1.41, -73.97221, 40.757468, -73.989037, 40.754343, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685161.48292', 'KjL9ynItqq2OJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 31, tzinfo=datetime.timezone.utc), 1, 2.27, -73.985768, 40.759922, -73.975302, 40.788672, 'Credit', 8.9, 1.0, 1.0, 0.0, 10.9, '1705685161.48292', 'MC9R/kPLhVerlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 10, tzinfo=datetime.timezone.utc), 5, 2.83, -73.94472, 40.779402, -73.972598, 40.752597, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685161.48292', 'GHvV6LHdgfz33A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 36, tzinfo=datetime.timezone.utc), 1, 2.93, -73.985315, 40.723487, -73.985955, 40.754903, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685161.48292', 'ttkjJNIf+FifsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 10, 41, tzinfo=datetime.timezone.utc), 2, 2.72, -73.98931, 40.777437, -73.96786, 40.754275, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685161.48292', 'WJRZzX+CrD/l/A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 6, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 6, 37, tzinfo=datetime.timezone.utc), 1, 3.61, -73.948768, 40.773768, -73.98203, 40.73589, 'Credit', 10.9, 0.0, 1.0, 0.0, 11.9, '1705685161.48292', 'LnNZ+K8xdlNnow', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 27, tzinfo=datetime.timezone.utc), 1, 3.43, -73.944907, 40.808742, -73.947055, 40.771803, 'Credit', 10.9, 0.5, 1.0, 0.0, 12.4, '1705685161.48292', '4iAwTIuZu0FUTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 11, tzinfo=datetime.timezone.utc), 2, 3.17, -73.972037, 40.757912, -74.002902, 40.724568, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685161.48292', '0d6Z0SI7hxdBpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 1, tzinfo=datetime.timezone.utc), 1, 3.64, -74.001735, 40.719373, -73.991673, 40.764972, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685161.48292', 'bs5XFomrpV029A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 4, tzinfo=datetime.timezone.utc), 1, 3.15, -73.979953, 40.775117, -73.941197, 40.801973, 'Credit', 10.9, 1.0, 1.0, 0.0, 12.9, '1705685161.48292', 'KUBShI2ak/rq8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 13, tzinfo=datetime.timezone.utc), 1, 3.01, -74.00594, 40.748535, -73.972598, 40.75884, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'gtVzffWQOtFFsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 11, 33, tzinfo=datetime.timezone.utc), 1, 2.77, -73.974628, 40.760658, -73.972168, 40.789837, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'eMOi9z/qtW8rgg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 0, tzinfo=datetime.timezone.utc), 1, 2.12, -74.008818, 40.731893, -73.987135, 40.748023, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'Q+wN/yCHSWSjXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), 1, 3.87, -74.00152, 40.73101, -73.961798, 40.7683, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'R1oIB3Mr5wh6hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 6, tzinfo=datetime.timezone.utc), 1, 3.49, -73.98218, 40.752877, -73.947345, 40.772682, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'FWPFlajqG8K7xQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 51, tzinfo=datetime.timezone.utc), 1, 3.64, -74.012072, 40.707522, -73.991233, 40.750262, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'mmsz7fhboR/tWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 21, tzinfo=datetime.timezone.utc), 1, 3.24, -73.968695, 40.757727, -73.997717, 40.743262, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'gRJC03gTrOmrRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 36, tzinfo=datetime.timezone.utc), 1, 2.7, -73.957055, 40.77466, -73.9838, 40.766322, 'Credit', 12.9, 0.0, 1.0, 0.0, 13.9, '1705685161.48292', 'v/rkHsI2/NEk5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 4, tzinfo=datetime.timezone.utc), 5, 3.84, -73.96019, 40.762262, -73.916547, 40.764535, 'Credit', 12.9, 0.5, 1.0, 0.0, 14.4, '1705685161.48292', 'vV7cnDrk0D+K0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 9, tzinfo=datetime.timezone.utc), 1, 3.37, -73.95304, 40.772418, -73.976853, 40.788373, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685161.48292', '6NaZmO9KHcpqDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 2, tzinfo=datetime.timezone.utc), 5, 4.8, -73.982062, 40.77067, -74.010215, 40.720008, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685161.48292', 'SdcWci7WX1nNgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 48, tzinfo=datetime.timezone.utc), 1, 3.24, -73.95856, 40.769095, -73.986995, 40.748653, 'Credit', 14.9, 0.0, 1.0, 0.0, 15.9, '1705685161.48292', 'cL/l2+aZf+lIBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 21, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 21, 35, tzinfo=datetime.timezone.utc), 5, 6.87, -73.966628, 40.757615, -74.01512, 40.714532, 'Credit', 17.3, 0.5, 1.0, 0.0, 18.8, '1705685161.48292', '6mkAUNs4rczc2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 20, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 21, 13, tzinfo=datetime.timezone.utc), 1, 5.51, -73.958888, 40.768035, -74.00315, 40.731425, 'Credit', 19.3, 0.5, 1.0, 0.0, 20.8, '1705685161.48292', '7vgIhL73pnfXUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 8, tzinfo=datetime.timezone.utc), 2, 1.75, -73.998403, 40.740443, -74.00506, 40.719073, 'Credit', 6.5, 0.0, 1.25, 0.0, 7.75, '1705685161.48292', 'FlbEvjEcKHYMxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 15, 42, tzinfo=datetime.timezone.utc), 1, 1.46, -73.971792, 40.760188, -73.95667, 40.775168, 'Credit', 6.5, 0.0, 1.25, 0.0, 7.75, '1705685161.48292', 'ibtY2topy9T2bA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 8, 45, tzinfo=datetime.timezone.utc), 5, 2.39, -73.954505, 40.78095, -73.982263, 40.76972, 'Credit', 8.5, 0.0, 1.25, 0.0, 9.75, '1705685161.48292', 'B9N4Vt3UoBq2VA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 18, 37, tzinfo=datetime.timezone.utc), 1, 1.53, -73.993557, 40.756932, -74.00845, 40.745372, 'Credit', 8.5, 1.0, 1.25, 0.0, 10.75, '1705685161.48292', 'fXmZxKO8feM1Dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 1, tzinfo=datetime.timezone.utc), 1, 4.48, -73.974567, 40.742837, -74.010978, 40.703107, 'Credit', 12.5, 0.0, 1.25, 0.0, 13.75, '1705685161.48292', 'T3j/dxGjLYalkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 35, tzinfo=datetime.timezone.utc), 5, 1.16, -73.982312, 40.774537, -73.97929, 40.788587, 'Credit', 5.3, 0.0, 1.25, 0.0, 6.55, '1705685161.48292', 'x12tetQej7fJxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 20, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 20, 50, tzinfo=datetime.timezone.utc), 1, 1.23, -73.993012, 40.744663, -74.005465, 40.737555, 'Credit', 5.3, 0.5, 1.25, 0.0, 7.05, '1705685161.48292', 'FHtD0Nre5Ujnww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 1, tzinfo=datetime.timezone.utc), 5, 1.37, -73.976338, 40.74425, -73.989907, 40.728742, 'Credit', 5.3, 1.0, 1.25, 0.0, 7.55, '1705685161.48292', 'TEkmY9td7HvlGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 13, tzinfo=datetime.timezone.utc), 1, 2.51, -73.98815, 40.732142, -73.98148, 40.76002, 'Credit', 8.1, 0.0, 1.25, 0.0, 9.35, '1705685161.48292', 'M4tP2OjDvijaLA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 12, 37, tzinfo=datetime.timezone.utc), 5, 1.55, -73.99452, 40.745018, -73.99132, 40.728023, 'Credit', 7.7, 0.0, 1.25, 0.0, 8.95, '1705685161.48292', 'HsiRR+9s+y8itw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 43, tzinfo=datetime.timezone.utc), 3, 2.03, -73.988132, 40.749363, -73.962842, 40.758607, 'Credit', 7.3, 0.0, 1.25, 0.0, 8.55, '1705685161.48292', 'AA2T2A4OOI6uYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 20, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 20, 39, tzinfo=datetime.timezone.utc), 5, 1.63, -74.003683, 40.732108, -73.989778, 40.716877, 'Credit', 7.3, 0.5, 1.25, 0.0, 9.05, '1705685161.48292', '3yhkngIl4nZDhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 35, tzinfo=datetime.timezone.utc), 1, 3.17, -73.951675, 40.825058, -73.933537, 40.79475, 'Credit', 11.3, 0.5, 1.25, 0.0, 13.05, '1705685161.48292', 'q32boR0RLnUYuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 36, tzinfo=datetime.timezone.utc), 1, 1.09, -73.982398, 40.745867, -73.994675, 40.738982, 'Credit', 4.9, 0.0, 1.25, 0.0, 6.15, '1705685161.48292', 'z30ToRSuv+tbXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 2, 49, tzinfo=datetime.timezone.utc), 1, 2.4, -74.006085, 40.734863, -74.007187, 40.71287, 'Credit', 8.9, 0.5, 1.25, 0.0, 10.65, '1705685161.48292', 'DND94SCh90N6nQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 10, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 10, 33, tzinfo=datetime.timezone.utc), 1, 3.43, -73.979902, 40.781058, -73.988263, 40.743227, 'Credit', 10.9, 0.0, 1.25, 0.0, 12.15, '1705685161.48292', '7wpnO4a8Clhbsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 11, 1, tzinfo=datetime.timezone.utc), 5, 1.09, -73.998888, 40.734203, -73.98347, 40.72619, 'Credit', 5.7, 0.0, 1.25, 0.0, 6.95, '1705685161.48292', 'Dt8SFCcfEdB+6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), 1, 0.69, -73.992643, 40.737307, -74.002877, 40.739503, 'Credit', 4.5, 0.0, 1.5, 0.0, 6.0, '1705685161.48292', 'CxySvpFI73xW3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 25, tzinfo=datetime.timezone.utc), 1, 0.69, -73.980113, 40.749078, -73.989228, 40.754633, 'Credit', 4.5, 0.0, 1.5, 0.0, 6.0, '1705685161.48292', 'xiGgKL/WjTU0Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 7, 1, 0, 3, tzinfo=datetime.timezone.utc), 1, 0.59, -73.988105, 40.720262, -73.99707, 40.72075, 'Credit', 4.5, 0.5, 1.5, 0.0, 6.5, '1705685161.48292', '8FmqRJ0y+p17/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 35, tzinfo=datetime.timezone.utc), 5, 0.71, -73.965727, 40.769625, -73.967165, 40.771948, 'Credit', 4.5, 0.5, 1.5, 0.0, 6.5, '1705685161.48292', 'HCMhTEfSzuy9gg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 19, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 57, tzinfo=datetime.timezone.utc), 2, 0.56, -73.990227, 40.740815, -73.9831, 40.742783, 'Credit', 4.5, 1.0, 1.5, 0.0, 7.0, '1705685161.48292', 'GFP7fwLexaHR3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 2, tzinfo=datetime.timezone.utc), 1, 0.84, -73.992082, 40.72588, -73.983127, 40.719155, 'Credit', 4.5, 1.0, 1.5, 0.0, 7.0, '1705685161.48292', '+nsT7PI7zUEVqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 10, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 10, 40, tzinfo=datetime.timezone.utc), 1, 0.99, -73.991365, 40.717175, -74.002552, 40.718718, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'F9qqY2ihl+/vnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 13, tzinfo=datetime.timezone.utc), 2, 1.31, -74.00027, 40.720662, -74.004648, 40.707097, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'm/ojVNYuQkvlmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 45, tzinfo=datetime.timezone.utc), 1, 1.43, -73.975702, 40.789288, -73.982113, 40.773548, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', '/ms94wyjympRpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 7, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 7, 33, tzinfo=datetime.timezone.utc), 1, 1.64, -74.000703, 40.737482, -74.004903, 40.715927, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'K5Tg7T4XgyvdFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 47, tzinfo=datetime.timezone.utc), 1, 1.81, -73.993923, 40.751502, -73.971297, 40.759555, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'RwcxTd+uK+U31g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 54, tzinfo=datetime.timezone.utc), 5, 0.88, -73.993137, 40.731727, -74.008813, 40.732678, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 't/Hw2L3Nc+iDaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 39, tzinfo=datetime.timezone.utc), 1, 0.84, -73.980633, 40.733877, -73.98907, 40.744515, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'ULm4KJi0SBfhSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 59, tzinfo=datetime.timezone.utc), 1, 1.34, -73.978097, 40.783105, -73.959115, 40.775115, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'XIPfsLkAzOEKuQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 28, tzinfo=datetime.timezone.utc), 1, 1.35, -74.01452, 40.718157, -74.012678, 40.702537, 'Credit', 6.5, 0.0, 1.5, 0.0, 8.0, '1705685161.48292', 'utXeRw/l4iTbGQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 20, tzinfo=datetime.timezone.utc), 5, 1.43, -73.983975, 40.7423, -73.988093, 40.756657, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685161.48292', 'u9FqCZAHOzL22w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 49, tzinfo=datetime.timezone.utc), 1, 1.52, -73.987853, 40.750532, -73.989582, 40.768045, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685161.48292', 'qcaWT+ksYGL51Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 1, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 29, tzinfo=datetime.timezone.utc), 3, 1.59, -73.973153, 40.748113, -73.986813, 40.735758, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685161.48292', 'Tn1pTRcuZ2jeTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 3, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 3, 23, tzinfo=datetime.timezone.utc), 1, 1.74, -73.992432, 40.728095, -74.006518, 40.743297, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685161.48292', '6wHfpvo2BXnzDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 20, 7, tzinfo=datetime.timezone.utc), 2, 1.61, -73.975135, 40.752807, -73.959592, 40.770912, 'Credit', 6.5, 0.5, 1.5, 0.0, 8.5, '1705685161.48292', 'jV9sNS39OsdpYQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 8, tzinfo=datetime.timezone.utc), 1, 1.83, -74.001988, 40.74044, -74.007213, 40.717973, 'Credit', 6.5, 1.0, 1.5, 0.0, 9.0, '1705685161.48292', 'HED5hYxczFAVAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 42, tzinfo=datetime.timezone.utc), 5, 1.9, -73.955288, 40.773445, -73.972512, 40.749647, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'WWSchpdnh8i4Yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 47, tzinfo=datetime.timezone.utc), 1, 2.34, -73.985972, 40.735445, -73.979503, 40.76151, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', '2UjURxJQ1gKVtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 46, tzinfo=datetime.timezone.utc), 5, 2.01, -73.965313, 40.759142, -73.990497, 40.751297, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'ks8HApsqUFyzvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 25, 15, 1, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 16, 7, tzinfo=datetime.timezone.utc), 2, 1.1, -73.973543, 40.743967, -73.987399, 40.74963, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'U42HsAuwjtdXnA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 3, tzinfo=datetime.timezone.utc), 1, 1.97, -73.984835, 40.769262, -73.979218, 40.749762, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', '4C9+nXWdypNL9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 59, tzinfo=datetime.timezone.utc), 2, 2.15, -73.982762, 40.72283, -73.982133, 40.746058, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'Tci7G24rEntUJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 10, 57, tzinfo=datetime.timezone.utc), 1, 1.95, -73.96299, 40.762553, -73.976822, 40.738952, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'ftpHGgPr4cRhlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 4, tzinfo=datetime.timezone.utc), 2, 2.37, -73.991605, 40.77031, -73.991933, 40.744613, 'Credit', 8.5, 0.0, 1.5, 0.0, 10.0, '1705685161.48292', 'hBDuErXteZNB2g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 23, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 11, tzinfo=datetime.timezone.utc), 1, 2.84, -73.945713, 40.777995, -73.971593, 40.746363, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685161.48292', 'UFxVJv1+8YXkyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 36, tzinfo=datetime.timezone.utc), 4, 2.63, -73.96135, 40.764677, -73.988588, 40.739532, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685161.48292', 'cxBruwaN1YRLVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 1, 8, tzinfo=datetime.timezone.utc), 1, 1.86, -73.983548, 40.738093, -74.002515, 40.718935, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685161.48292', 'BVDgIZOsZ/CdRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 20, 22, tzinfo=datetime.timezone.utc), 5, 2.15, -73.97686, 40.758877, -73.954117, 40.775487, 'Credit', 8.5, 0.5, 1.5, 0.0, 10.5, '1705685161.48292', 'NJbHWH2udSb/iw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 17, 40, tzinfo=datetime.timezone.utc), 1, 2.54, -74.00837, 40.720782, -73.995515, 40.753112, 'Credit', 8.5, 1.0, 1.5, 0.0, 11.0, '1705685161.48292', 'spPrv9IVrrTrqg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 45, tzinfo=datetime.timezone.utc), 1, 2.01, -73.991412, 40.72968, -73.979268, 40.755207, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685161.48292', 'sW5mXJ0mIfEYBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 58, tzinfo=datetime.timezone.utc), 1, 3.12, -73.990092, 40.756905, -73.956597, 40.783925, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685161.48292', 'jFxi0LofESXcCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 41, tzinfo=datetime.timezone.utc), 5, 2.07, -73.98637, 40.767113, -73.993555, 40.743212, 'Credit', 10.5, 0.0, 1.5, 0.0, 12.0, '1705685161.48292', 'Q9Leu9Oc/w6EUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 7, tzinfo=datetime.timezone.utc), 1, 2.5, -73.972397, 40.765048, -74.000732, 40.747983, 'Credit', 10.5, 1.0, 1.5, 0.0, 13.0, '1705685161.48292', 'iliYihGTtQmipA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), 1, 3.17, -73.970058, 40.748387, -73.981812, 40.771407, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685161.48292', 'uLho3XRIhfAtOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 28, tzinfo=datetime.timezone.utc), 1, 2.96, -73.94533, 40.778577, -73.985608, 40.778747, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685161.48292', 'oYyd1iU5KWl2cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 5, tzinfo=datetime.timezone.utc), 5, 2.28, -73.990268, 40.741858, -73.987983, 40.728115, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685161.48292', 'JYzuCwkM2sQN0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 27, tzinfo=datetime.timezone.utc), 2, 4.39, -73.958127, 40.776035, -74.002495, 40.733692, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685161.48292', 'mTiGAcVOf82Xjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 8, tzinfo=datetime.timezone.utc), 6, 3.9, -73.982302, 40.740232, -73.974283, 40.783197, 'Credit', 12.5, 0.0, 1.5, 0.0, 14.0, '1705685161.48292', 'p9Licvzz20n7iQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 22, 3, tzinfo=datetime.timezone.utc), 1, 4.02, -73.951488, 40.769643, -73.995622, 40.744033, 'Credit', 12.5, 0.5, 1.5, 0.0, 14.5, '1705685161.48292', 'gbqU6ObfrWY/xg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 59, tzinfo=datetime.timezone.utc), 1, 2.76, -73.992968, 40.768165, -73.995473, 40.739078, 'Credit', 12.5, 1.0, 1.5, 0.0, 15.0, '1705685161.48292', '9EjrhM5AgV0mJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 44, tzinfo=datetime.timezone.utc), 2, 3.93, -74.015843, 40.711312, -74.000995, 40.761882, 'Credit', 14.5, 0.0, 1.5, 0.0, 16.0, '1705685161.48292', '/0vWRnGCMIU9IA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 46, tzinfo=datetime.timezone.utc), 1, 3.14, -73.981085, 40.733945, -74.010333, 40.72021, 'Credit', 14.5, 0.0, 1.5, 0.0, 16.0, '1705685161.48292', 'kp2xYoNSFy4SiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 17, 32, tzinfo=datetime.timezone.utc), 2, 4.19, -73.971382, 40.75837, -74.010307, 40.720175, 'Credit', 14.5, 1.0, 1.5, 0.0, 17.0, '1705685161.48292', '2ozxLknZSQmfcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 28, tzinfo=datetime.timezone.utc), 1, 2.57, -73.978892, 40.744537, -73.987483, 40.770427, 'Credit', 14.5, 1.0, 1.5, 0.0, 17.0, '1705685161.48292', 'k9nrLmSzDXwN5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 7, 31, tzinfo=datetime.timezone.utc), 1, 6.15, -73.968672, 40.786423, -74.009915, 40.721342, 'Credit', 16.5, 0.0, 1.5, 0.0, 18.0, '1705685161.48292', 'xKO6P4VcYLRn/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 40, tzinfo=datetime.timezone.utc), 1, 6.79, -73.961528, 40.768803, -74.010543, 40.701975, 'Credit', 18.5, 0.0, 1.5, 0.0, 20.0, '1705685161.48292', 'Z1XPH6sT0ldIVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 24, tzinfo=datetime.timezone.utc), 1, 4.92, -73.982228, 40.771388, -74.014815, 40.718053, 'Credit', 14.5, 0.5, 1.5, 0.0, 16.5, '1705685161.48292', 'HmHkEpZA5RqHVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 20, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 47, tzinfo=datetime.timezone.utc), 1, 5.41, -73.972545, 40.786035, -73.990967, 40.723873, 'Credit', 16.5, 0.5, 1.5, 0.0, 18.5, '1705685161.48292', 'rSHXlwd0bOKANQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 41, tzinfo=datetime.timezone.utc), 1, 0.36, -73.983672, 40.762065, -73.985608, 40.759232, 'Credit', 3.3, 0.0, 1.5, 0.0, 4.8, '1705685161.48292', 'ZE0kL/j6zuZWzA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 15, tzinfo=datetime.timezone.utc), 1, 0.27, -73.988943, 40.734097, -73.988967, 40.731067, 'Credit', 3.3, 0.5, 1.5, 0.0, 5.3, '1705685161.48292', 'HPBJ0pkmj5q58w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 13, tzinfo=datetime.timezone.utc), 1, 0.89, -73.975152, 40.741858, -73.982117, 40.749665, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685161.48292', 'serN2CmBBvTcvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 13, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 13, 32, tzinfo=datetime.timezone.utc), 2, 0.66, -74.016332, 40.715383, -74.006142, 40.713998, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685161.48292', 'wfWIvbGNdRlRDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 58, tzinfo=datetime.timezone.utc), 1, 0.68, -74.006487, 40.738175, -74.002093, 40.73143, 'Credit', 5.3, 0.0, 1.5, 0.0, 6.8, '1705685161.48292', 'lnV5dlTjrlAalQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 23, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 23, 13, tzinfo=datetime.timezone.utc), 5, 1.15, -73.958722, 40.802403, -73.958722, 40.802403, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685161.48292', 'ef2xVl6VokXGPw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 7, tzinfo=datetime.timezone.utc), 3, 0.63, -73.999995, 40.732975, -74.005228, 40.739898, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685161.48292', 'dbEspUKJF73c5w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 43, tzinfo=datetime.timezone.utc), 5, 1.25, -74.007538, 40.743082, -73.989255, 40.740488, 'Credit', 5.3, 0.5, 1.5, 0.0, 7.3, '1705685161.48292', 'w5b+sasFelde4g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 18, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 22, tzinfo=datetime.timezone.utc), 1, 1.05, -73.964405, 40.768825, -73.955895, 40.781893, 'Credit', 5.3, 1.0, 1.5, 0.0, 7.8, '1705685161.48292', 'z+8YjU5+lE3/zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 43, tzinfo=datetime.timezone.utc), 1, 1.23, -73.967768, 40.76906, -73.953818, 40.77855, 'Credit', 5.3, 1.0, 1.5, 0.0, 7.8, '1705685161.48292', 'RgyHShwZRlJwOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 21, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 21, 39, tzinfo=datetime.timezone.utc), 2, 1.64, -73.992522, 40.745123, -73.971462, 40.751647, 'Credit', 6.1, 0.5, 1.5, 0.0, 8.1, '1705685161.48292', 'wmGbM3Xl0AegxA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 54, tzinfo=datetime.timezone.utc), 1, 1.36, -74.005143, 40.719045, -74.006962, 40.735012, 'Credit', 6.1, 1.0, 1.5, 0.0, 8.6, '1705685161.48292', 'y+/h//jlaRg/zA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 59, tzinfo=datetime.timezone.utc), 1, 0.17, -73.96111, 40.760715, -73.945365, 40.782202, 'Credit', 6.1, 1.0, 1.5, 0.0, 8.6, '1705685161.48292', 'L01NihfV/u1jAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 15, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 43, tzinfo=datetime.timezone.utc), 2, 2.51, -73.976205, 40.757035, -73.95147, 40.782127, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', '80YnYJuPcXU7gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 3, tzinfo=datetime.timezone.utc), 5, 2.23, -73.981425, 40.780907, -73.990133, 40.751668, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', 'Hc7R2EFp6/4p0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 38, tzinfo=datetime.timezone.utc), 5, 1.15, -73.963568, 40.761982, -73.982523, 40.766335, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', 'WdGTJBhfD1HWUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 20, 0, tzinfo=datetime.timezone.utc), 1, 2.06, -73.986978, 40.729087, -74.000795, 40.747412, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', 'c4T7WzoiRu6c5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 13, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 45, tzinfo=datetime.timezone.utc), 2, 1.67, -73.993503, 40.727595, -74.006375, 40.739587, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', 'ildpBu6ZF6dddQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 58, tzinfo=datetime.timezone.utc), 3, 1.4, -73.97393, 40.747662, -73.99185, 40.749922, 'Credit', 8.1, 0.0, 1.5, 0.0, 9.6, '1705685161.48292', 'R9Ya1K9fXYefFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 23, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 23, 44, tzinfo=datetime.timezone.utc), 4, 1.91, -73.995482, 40.755732, -73.973088, 40.75867, 'Credit', 8.1, 0.5, 1.5, 0.0, 10.1, '1705685161.48292', 'Ft0uQsyqKaVBYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 4, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 4, 25, tzinfo=datetime.timezone.utc), 5, 2.49, -74.000093, 40.738802, -73.988028, 40.763053, 'Credit', 8.1, 0.5, 1.5, 0.0, 10.1, '1705685161.48292', 'VKULX6jQAPJfng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 11, 50, tzinfo=datetime.timezone.utc), 1, 1.92, -73.984708, 40.769352, -73.982505, 40.749023, 'Credit', 10.1, 0.0, 1.5, 0.0, 11.6, '1705685161.48292', 'I8WfWxGsNj6Qkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 52, tzinfo=datetime.timezone.utc), 1, 2.72, -73.975832, 40.76049, -73.969002, 40.788557, 'Credit', 10.1, 0.5, 1.5, 0.0, 12.1, '1705685161.48292', 'E7g1F3LJftz2cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 9, tzinfo=datetime.timezone.utc), 1, 3.19, -74.006175, 40.739757, -73.981713, 40.778478, 'Credit', 10.1, 0.5, 1.5, 0.0, 12.1, '1705685161.48292', 'rdgXqYuAWfA0kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 16, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 17, 12, tzinfo=datetime.timezone.utc), 1, 2.39, -73.983913, 40.780505, -73.95122, 40.770273, 'Credit', 10.1, 1.0, 1.5, 0.0, 12.6, '1705685161.48292', 'sdsaL1Zc4emNbQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 17, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 17, 43, tzinfo=datetime.timezone.utc), 1, 2.79, -73.983772, 40.729575, -73.98339, 40.72993, 'Credit', 10.1, 1.0, 1.5, 0.0, 12.6, '1705685161.48292', '5kgg2XcNIidbKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 9, tzinfo=datetime.timezone.utc), 2, 2.28, -73.996253, 40.723507, -73.987197, 40.75001, 'Credit', 12.1, 0.0, 1.5, 0.0, 13.6, '1705685161.48292', 'Aup/QoekwXZ8Mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 26, tzinfo=datetime.timezone.utc), 2, 3.16, 0.0, 0.0, 0.0, 0.0, 'Credit', 12.1, 0.0, 1.5, 0.0, 13.6, '1705685161.48292', 'LhrgOFiS+ao4+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 20, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 6, tzinfo=datetime.timezone.utc), 5, 3.43, -74.006388, 40.751182, -74.008105, 40.709005, 'Credit', 12.1, 0.5, 1.5, 0.0, 14.1, '1705685161.48292', 'O9x5jm2KYHfJlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 15, 8, tzinfo=datetime.timezone.utc), 1, 2.84, -73.996498, 40.75333, -74.005943, 40.715462, 'Credit', 14.1, 0.0, 1.5, 0.0, 15.6, '1705685161.48292', 'xGhlEgA/hXjeDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 20, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 1, tzinfo=datetime.timezone.utc), 5, 4.79, -73.955148, 40.78577, -73.994698, 40.727, 'Credit', 15.7, 0.5, 1.5, 0.0, 17.7, '1705685161.48292', 'YNL2ApmTW05uAA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 47, tzinfo=datetime.timezone.utc), 3, 5.99, -73.962187, 40.767773, -73.992965, 40.726058, 'Credit', 17.7, 0.5, 1.5, 0.0, 19.7, '1705685161.48292', 'ImPfjmWq7yHsMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 1, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 1, 25, tzinfo=datetime.timezone.utc), 1, 0.53, -73.983945, 40.725857, -73.991915, 40.724092, 'Credit', 4.1, 0.5, 1.5, 0.0, 6.1, '1705685161.48292', 'eCOIF7dNTQBiAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 12, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 12, 31, tzinfo=datetime.timezone.utc), 1, 1.0, -74.006283, 40.751, -73.992298, 40.744235, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685161.48292', 'xYVHmRblXckocA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 18, 47, tzinfo=datetime.timezone.utc), 1, 1.11, -73.996655, 40.737287, -73.979585, 40.733185, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685161.48292', 'zzNQ0cX7LFA0TA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 7, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 8, 4, tzinfo=datetime.timezone.utc), 2, 1.23, -73.977917, 40.749165, -73.989612, 40.752465, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685161.48292', 'wIa9Hl3VGIVyyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 59, tzinfo=datetime.timezone.utc), 1, 1.15, -73.999062, 40.723132, -73.984982, 40.715373, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685161.48292', 'ImhukztogWmNDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 7, 56, tzinfo=datetime.timezone.utc), 2, 0.92, -73.964797, 40.756228, -73.978713, 40.76369, 'Credit', 6.1, 0.0, 1.5, 0.0, 7.6, '1705685161.48292', 'JRAzpASKQbJUcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 11, 11, tzinfo=datetime.timezone.utc), 5, 1.68, -73.967492, 40.75028, -73.981337, 40.774512, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685161.48292', 'tAeX7/jlSI2ndA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 46, tzinfo=datetime.timezone.utc), 5, 1.68, -73.973783, 40.792212, -73.982345, 40.769422, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685161.48292', 'N92fsvlyAP/7hQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 40, tzinfo=datetime.timezone.utc), 1, 2.35, -73.983405, 40.730125, -73.967467, 40.758575, 'Credit', 7.7, 0.0, 1.5, 0.0, 9.2, '1705685161.48292', 'OGO2cDVQ2nTDHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 20, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 21, tzinfo=datetime.timezone.utc), 1, 2.04, -73.993005, 40.727947, -73.998363, 40.750167, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685161.48292', 'IDyWqL+CUcW3ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 22, 43, tzinfo=datetime.timezone.utc), 1, 2.55, -73.977937, 40.745702, -73.954838, 40.774677, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685161.48292', 'ju6bQlxDXg5LmA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 34, tzinfo=datetime.timezone.utc), 5, 1.56, -73.997825, 40.721187, -74.004762, 40.738193, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685161.48292', 'B3DIfaRyDD0lJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 0, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 1, 3, tzinfo=datetime.timezone.utc), 1, 2.24, -73.955447, 40.764357, -73.97439, 40.783128, 'Credit', 7.7, 0.5, 1.5, 0.0, 9.7, '1705685161.48292', 'vemfDRNlsxubAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 18, 19, tzinfo=datetime.timezone.utc), 3, 2.02, -73.975873, 40.760617, -73.986955, 40.736538, 'Credit', 7.7, 1.0, 1.5, 0.0, 10.2, '1705685161.48292', 'ruVbWI58dYLmOg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 12, 40, tzinfo=datetime.timezone.utc), 1, 1.07, -73.973443, 40.750573, -73.98005, 40.76083, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685161.48292', 'Rr+kis+o+v50hw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 14, 58, tzinfo=datetime.timezone.utc), 1, 2.17, -73.983052, 40.761878, -73.97616, 40.786075, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685161.48292', 'B3+4pCbOUaggGw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 49, tzinfo=datetime.timezone.utc), 1, 2.4, -73.974583, 40.753677, -73.998738, 40.732238, 'Credit', 9.7, 0.0, 1.5, 0.0, 11.2, '1705685161.48292', 'E2idALKktenGgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 24, tzinfo=datetime.timezone.utc), 1, 2.21, -74.006242, 40.714208, -73.986997, 40.72959, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685161.48292', 'sBHqBZ2Xjjufpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 57, tzinfo=datetime.timezone.utc), 4, 3.08, -73.990635, 40.755943, -73.982517, 40.72508, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685161.48292', 'Hlo+Ud9tRbXiEA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 0, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 11, tzinfo=datetime.timezone.utc), 5, 2.49, -73.988272, 40.748282, -73.984703, 40.720423, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685161.48292', '7q/Qtzr5eL9BVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 21, 24, tzinfo=datetime.timezone.utc), 2, 2.61, -73.966933, 40.753, -73.99082, 40.723468, 'Credit', 9.7, 0.5, 1.5, 0.0, 11.7, '1705685161.48292', 'TZpKu/CsMNoAlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 11, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 11, tzinfo=datetime.timezone.utc), 5, 2.02, -74.004977, 40.747863, -73.982728, 40.731367, 'Credit', 11.7, 0.0, 1.5, 0.0, 13.2, '1705685161.48292', 'ido10l2ksm4G8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 12, 1, tzinfo=datetime.timezone.utc), 3, 6.83, -74.015333, 40.709005, -73.96515, 40.759157, 'Credit', 18.9, 0.0, 1.5, 0.0, 20.4, '1705685161.48292', '7pM1fruf1OoPgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 2, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 2, 25, tzinfo=datetime.timezone.utc), 1, 5.46, -73.978248, 40.729097, -73.973357, 40.690723, 'Credit', 14.9, 0.5, 1.5, 0.0, 16.9, '1705685161.48292', '0i7GnluB4ssaWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 7, tzinfo=datetime.timezone.utc), 2, 0.76, -73.99108, 40.723488, -73.978678, 40.720015, 'Credit', 4.9, 0.0, 1.5, 0.0, 6.4, '1705685161.48292', 'Fh4xhbhE98qIYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 14, 32, tzinfo=datetime.timezone.utc), 1, 0.9, -73.983763, 40.749663, -73.99491, 40.745303, 'Credit', 4.9, 0.0, 1.5, 0.0, 6.4, '1705685161.48292', '2/LAi1JVrb+cvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 16, 31, tzinfo=datetime.timezone.utc), 1, 1.04, -73.978123, 40.748667, -73.989927, 40.741048, 'Credit', 4.9, 1.0, 1.5, 0.0, 7.4, '1705685161.48292', 's0StwHM6QK2OIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 16, 28, tzinfo=datetime.timezone.utc), 2, 0.69, -73.976288, 40.780675, -73.974453, 40.7883, 'Credit', 4.9, 1.0, 1.5, 0.0, 7.4, '1705685161.48292', 'gh8WV/Gw+tT9tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 27, tzinfo=datetime.timezone.utc), 5, 1.08, -73.973695, 40.76409, -73.98492, 40.755422, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685161.48292', 'h+doxWqsfq9wHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 8, 59, tzinfo=datetime.timezone.utc), 2, 2.07, -74.007115, 40.743487, -73.985077, 40.761862, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685161.48292', 'Q+DulpAJWkS2cQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 1, tzinfo=datetime.timezone.utc), 1, 1.76, -73.969657, 40.7847, -73.9652, 40.804305, 'Credit', 7.3, 0.0, 1.5, 0.0, 8.8, '1705685161.48292', 'N1rJFoCCCcm08w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 1, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 1, 17, tzinfo=datetime.timezone.utc), 1, 1.67, -73.957785, 40.717862, -73.941403, 40.707502, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685161.48292', 'OvgWzsm/GVq+RQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 22, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 22, 58, tzinfo=datetime.timezone.utc), 1, 1.37, -73.997227, 40.746843, -73.982043, 40.768073, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685161.48292', 'AHvTUpwGzA+qpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 20, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 20, 11, tzinfo=datetime.timezone.utc), 1, 2.15, -73.939408, 40.751875, -73.956433, 40.767092, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685161.48292', '7OpjZSQCnKq3Uw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 11, tzinfo=datetime.timezone.utc), 1, 2.21, -74.000697, 40.73708, -74.015035, 40.71088, 'Credit', 7.3, 0.5, 1.5, 0.0, 9.3, '1705685161.48292', 'sj4LK1iSY9bebw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 18, 52, tzinfo=datetime.timezone.utc), 5, 1.53, -73.993967, 40.751563, -73.995425, 40.740038, 'Credit', 7.3, 1.0, 1.5, 0.0, 9.8, '1705685161.48292', 'Ohqe2gC8Jl1y7A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 57, tzinfo=datetime.timezone.utc), 1, 2.06, -73.982128, 40.769473, -73.993812, 40.747428, 'Credit', 9.3, 0.0, 1.5, 0.0, 10.8, '1705685161.48292', 'aHKxqxowZ5zdiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 51, tzinfo=datetime.timezone.utc), 1, 2.71, -73.982172, 40.77305, -73.956093, 40.787348, 'Credit', 9.3, 0.5, 1.5, 0.0, 11.3, '1705685161.48292', 'KHme0QheRydj7g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 19, tzinfo=datetime.timezone.utc), 1, 2.98, -73.994477, 40.761032, -73.954208, 40.764093, 'Credit', 11.3, 0.0, 1.5, 0.0, 12.8, '1705685161.48292', 'ULmnoeGrVRTQ/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 18, 27, tzinfo=datetime.timezone.utc), 1, 3.1, -73.961178, 40.764933, -73.991352, 40.731978, 'Credit', 11.3, 0.0, 1.5, 0.0, 12.8, '1705685161.48292', 'PsD8bUKPmv7lSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 21, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 30, tzinfo=datetime.timezone.utc), 1, 3.64, -73.982073, 40.766287, -73.990322, 40.72735, 'Credit', 11.3, 0.5, 1.5, 0.0, 13.3, '1705685161.48292', 'm+hgwZpYohA0jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 27, tzinfo=datetime.timezone.utc), 1, 3.32, -73.988775, 40.76374, -73.957305, 40.801655, 'Credit', 11.3, 1.0, 1.5, 0.0, 13.8, '1705685161.48292', 'x7KyA3Bqc2tx+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 15, 50, tzinfo=datetime.timezone.utc), 1, 3.01, -73.960638, 40.765932, -73.926082, 40.761247, 'Credit', 13.3, 0.0, 1.5, 0.0, 14.8, '1705685161.48292', 'pPD/tnUSabc8QQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 10, 40, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 58, 21, tzinfo=datetime.timezone.utc), 1, 3.4, -73.991582, 40.760601, -74.007428, 40.727253, 'Credit', 13.3, 0.0, 1.5, 0.0, 14.8, '1705685161.48292', 'O1UmDzK/i7jJ8g', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 21, 48, tzinfo=datetime.timezone.utc), 1, 0.51, -73.983358, 40.740122, -73.987757, 40.734113, 'Credit', 3.7, 0.5, 1.5, 0.0, 5.7, '1705685161.48292', 'SYTXGVfRt9BnfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 12, 16, tzinfo=datetime.timezone.utc), 1, 0.88, -73.983797, 40.75555, -73.98773, 40.761317, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685161.48292', '85jDMfN3vN5FMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 15, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 15, 16, tzinfo=datetime.timezone.utc), 2, 0.76, -73.965407, 40.754447, -73.975168, 40.752168, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685161.48292', 'Kh6GiT6fq9xQnA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 1, tzinfo=datetime.timezone.utc), 1, 0.88, -73.954967, 40.765497, -73.945297, 40.773987, 'Credit', 5.7, 0.0, 1.5, 0.0, 7.2, '1705685161.48292', 'dKqsxXbBHpMFkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 23, tzinfo=datetime.timezone.utc), 5, 1.43, -73.987817, 40.749005, -74.003537, 40.75069, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685161.48292', '2Rq4dGxsrSZIIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 22, 33, tzinfo=datetime.timezone.utc), 5, 1.77, -73.9697, 40.757975, -73.952367, 40.777975, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685161.48292', 'C0PLZi4OX3cg4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), 1, 1.17, -73.97483, 40.787602, -73.977365, 40.774378, 'Credit', 5.7, 0.5, 1.5, 0.0, 7.7, '1705685161.48292', 'M6/zBXSSt8KdqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 3, tzinfo=datetime.timezone.utc), 5, 1.69, -73.993628, 40.752063, -73.991707, 40.770572, 'Credit', 6.9, 0.0, 1.5, 0.0, 8.4, '1705685161.48292', '4nWv0K4alJ1Pgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 41, tzinfo=datetime.timezone.utc), 1, 2.05, -73.98093, 40.7446, -74.000508, 40.72116, 'Credit', 6.9, 0.0, 1.5, 0.0, 8.4, '1705685161.48292', 'B4HpJlQqgOtLnQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 0, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 36, tzinfo=datetime.timezone.utc), 5, 1.57, -74.010063, 40.709313, -74.000007, 40.72919, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685161.48292', 'Q+UdckwfO6FvrA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 41, tzinfo=datetime.timezone.utc), 1, 1.51, -73.982053, 40.769412, -73.98107, 40.788332, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685161.48292', '6F8XeyyTy7x/NQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 21, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 21, 20, tzinfo=datetime.timezone.utc), 3, 1.46, -73.98136, 40.76826, -73.964445, 40.756235, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685161.48292', 'RMopEI9PypZsoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 0, tzinfo=datetime.timezone.utc), 5, 1.75, -73.996685, 40.715042, -73.981203, 40.72908, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685161.48292', 'BZEOFF0gdSM0Qg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 23, 5, tzinfo=datetime.timezone.utc), 5, 2.14, -73.991003, 40.73428, -74.011808, 40.708042, 'Credit', 6.9, 0.5, 1.5, 0.0, 8.9, '1705685161.48292', '0TfvuhJgWJPXzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 57, tzinfo=datetime.timezone.utc), 1, 1.54, -73.958045, 40.760848, -73.978462, 40.761815, 'Credit', 6.9, 1.0, 1.5, 0.0, 9.4, '1705685161.48292', 'WdvPAnxjJSn5Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 19, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 19, 55, tzinfo=datetime.timezone.utc), 5, 1.34, -73.99579, 40.73038, -73.996952, 40.744648, 'Credit', 6.9, 1.0, 1.5, 0.0, 9.4, '1705685161.48292', 'sYnqG45Qebo59A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 13, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 13, 43, tzinfo=datetime.timezone.utc), 1, 2.0, -74.007722, 40.74098, -73.993778, 40.724413, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685161.48292', 'HuHqo6nPoBGalQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 11, 53, tzinfo=datetime.timezone.utc), 5, 2.5, -73.969088, 40.790638, -73.992512, 40.758863, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685161.48292', 'tnI0b9Rgozuwwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 6, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 6, 34, tzinfo=datetime.timezone.utc), 1, 2.78, -73.989878, 40.756985, -73.980083, 40.788973, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685161.48292', 'FpCTu/JytdKyfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 6, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 6, 21, tzinfo=datetime.timezone.utc), 1, 3.01, -73.963247, 40.770693, -73.983082, 40.734637, 'Credit', 8.9, 0.0, 1.5, 0.0, 10.4, '1705685161.48292', '11tW51OxxqRFzg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 19, tzinfo=datetime.timezone.utc), 1, 2.65, -73.975667, 40.756017, -73.946777, 40.780353, 'Credit', 8.9, 0.5, 1.5, 0.0, 10.9, '1705685161.48292', '7gqffmPsbVT9Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 10, tzinfo=datetime.timezone.utc), 1, 2.64, -73.969337, 40.749085, -73.982417, 40.77333, 'Credit', 8.9, 1.0, 1.5, 0.0, 11.4, '1705685161.48292', 'B+OG7UceO77lqQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 35, tzinfo=datetime.timezone.utc), 2, 1.76, -73.943052, 40.789833, -73.967318, 40.788233, 'Credit', 8.9, 1.0, 1.5, 0.0, 11.4, '1705685161.48292', 'R85JQZYh6XZ9Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 0, tzinfo=datetime.timezone.utc), 1, 2.59, -73.990093, 40.732407, -73.975848, 40.763942, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685161.48292', 'KtmJwBvE4EU/nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 29, 8, 16, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 32, 47, tzinfo=datetime.timezone.utc), 1, 2.7, -73.951447, 40.770122, -73.981226, 40.753884, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685161.48292', 'bAU/yjUW8msfLg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 57, tzinfo=datetime.timezone.utc), 1, 3.02, -73.989002, 40.726815, -73.991918, 40.755167, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685161.48292', '1oF8J11hFXSx2A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 12, 34, tzinfo=datetime.timezone.utc), 2, 2.57, -73.980947, 40.747337, -73.982157, 40.774348, 'Credit', 10.9, 0.0, 1.5, 0.0, 12.4, '1705685161.48292', '1I1Ura9OW/SJKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 20, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 20, 22, tzinfo=datetime.timezone.utc), 1, 3.07, -73.978837, 40.750372, -73.973435, 40.784515, 'Credit', 10.9, 0.5, 1.5, 0.0, 12.9, '1705685161.48292', '0P15VXzlKxX/Nw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 15, 53, tzinfo=datetime.timezone.utc), 1, 3.48, -74.002078, 40.72283, -73.972018, 40.75952, 'Credit', 12.9, 0.0, 1.5, 0.0, 14.4, '1705685161.48292', 'TSmUpz1d+LyHtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 33, tzinfo=datetime.timezone.utc), 1, 4.93, -73.973315, 40.748498, -74.014155, 40.703017, 'Credit', 12.9, 0.0, 1.5, 0.0, 14.4, '1705685161.48292', 'FqfPkcUzqNJkeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 7, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 7, 22, tzinfo=datetime.timezone.utc), 5, 6.13, -73.971812, 40.744682, -74.01025, 40.721488, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685161.48292', 'O1o6ZU0E4pBEgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 11, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 11, 33, tzinfo=datetime.timezone.utc), 1, 3.86, -73.972532, 40.78675, -73.984285, 40.7434, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685161.48292', '5HH8VCJn9LITWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 1, tzinfo=datetime.timezone.utc), 1, 3.04, -73.987105, 40.771098, -73.991245, 40.739375, 'Credit', 15.3, 0.0, 1.5, 0.0, 16.8, '1705685161.48292', 'QDOKHmwnzn0W5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 19, 37, tzinfo=datetime.timezone.utc), 1, 0.98, -73.991017, 40.76071, -73.991573, 40.750323, 'Credit', 6.5, 1.0, 1.75, 0.0, 9.25, '1705685161.48292', 'MF2UKqMa2bV8Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 48, tzinfo=datetime.timezone.utc), 1, 1.52, -73.987792, 40.765095, -73.992972, 40.748278, 'Credit', 8.1, 0.0, 1.75, 0.0, 9.85, '1705685161.48292', 'zMIMKMxX6Y5q1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 45, tzinfo=datetime.timezone.utc), 3, 1.82, -74.001752, 40.739488, -73.978593, 40.745283, 'Credit', 8.1, 0.5, 1.75, 0.0, 10.35, '1705685161.48292', 'qWbaMPPAKY+e4Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 15, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 47, tzinfo=datetime.timezone.utc), 3, 2.15, -73.978405, 40.78297, -73.946485, 40.77263, 'Credit', 10.1, 0.0, 1.75, 0.0, 11.85, '1705685161.48292', 'yxT+52hemZudvA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 20, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 3, tzinfo=datetime.timezone.utc), 1, 5.13, -73.936442, 40.798858, -73.98575, 40.741612, 'Credit', 14.9, 0.5, 1.75, 0.0, 17.15, '1705685161.48292', '8+GHgFkMQzZ4vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 37, tzinfo=datetime.timezone.utc), 1, 2.17, -73.991218, 40.76045, -73.9687, 40.767438, 'Credit', 7.7, 0.5, 1.75, 0.0, 9.95, '1705685161.48292', 'MCRKOLAQwC7FaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 49, tzinfo=datetime.timezone.utc), 4, 1.4, -73.968602, 40.754413, -73.991373, 40.762893, 'Credit', 6.9, 0.5, 1.75, 0.0, 9.15, '1705685161.48292', 'q+/b7ZGWoG33/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 18, 29, tzinfo=datetime.timezone.utc), 5, 7.32, -73.972882, 40.752753, -73.925623, 40.827918, 'Credit', 26.5, 1.0, 8.25, 0.0, 35.75, '1705685161.48292', 'kBfdXWpnrjZDtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 17, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 1, tzinfo=datetime.timezone.utc), 2, 10.78, -73.862742, 40.76901, -73.940492, 40.850683, 'Credit', 26.5, 1.0, 8.25, 4.15, 39.9, '1705685161.48292', 'r7o9I3CCW1vltg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 27, tzinfo=datetime.timezone.utc), 5, 0.0, -73.999088, 40.732562, -73.999095, 40.732535, 'Credit', 45.0, 0.0, 11.25, 4.15, 60.4, '1705685161.48292', 'c5aJbZ1I8q2NlA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 16, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 17, 57, tzinfo=datetime.timezone.utc), 3, 21.39, -73.979678, 40.776167, -73.776382, 40.645152, 'Credit', 45.0, 0.0, 11.25, 4.15, 60.4, '1705685161.48292', 'sbI0Cnx1WlTY+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 5, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 5, 28, tzinfo=datetime.timezone.utc), 1, 0.0, -74.177483, 40.69527, -74.177487, 40.695272, 'Credit', 78.0, 0.0, 19.5, 0.0, 97.5, '1705685161.48292', 'wAOHQD8ZlUc/zQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 2, 32, tzinfo=datetime.timezone.utc), 1, 0.0, -73.783763, 40.912662, -73.783763, 40.912662, 'Credit', 90.0, 0.0, 22.5, 0.0, 112.5, '1705685161.48292', 'PQrJE3D+5sRYOA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 3, 17, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 17, 34, 30, tzinfo=datetime.timezone.utc), 1, 2.4, -73.985111, 40.718951, -74.006299, 40.739668, 'Credit', 10.9, 0.0, 2.38, 0.0, 13.28, '1705685161.48292', 'x9IFO12U5ImtOQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 9, 25, tzinfo=datetime.timezone.utc), 3, 6.26, -73.974957, 40.752877, -74.015187, 40.711385, 'Credit', 16.9, 0.0, 3.38, 0.0, 20.28, '1705685161.48292', 'nodg2DLEOziwjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 0, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 0, 48, tzinfo=datetime.timezone.utc), 1, 5.6, -74.005422, 40.719672, -73.957295, 40.781745, 'Credit', 18.9, 0.5, 3.88, 0.0, 23.28, '1705685161.48292', 'FaKADQ07gYCvfg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 0, 17, tzinfo=datetime.timezone.utc), 1, 7.8, -73.986265, 40.75714, -73.939342, 40.848692, 'Credit', 18.9, 0.5, 3.88, 0.0, 23.28, '1705685161.48292', 'KvhAJdUSmC7BMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 9, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 15, tzinfo=datetime.timezone.utc), 1, 8.19, -73.986988, 40.764307, -73.927187, 40.830562, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685161.48292', '9x7qU8AYhYc7AQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 17, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 17, 38, tzinfo=datetime.timezone.utc), 1, 6.32, -73.977867, 40.729552, -73.971632, 40.787102, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685161.48292', 'UVQ64g1ggXwD+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 16, 11, tzinfo=datetime.timezone.utc), 1, 4.52, -73.934082, 40.797733, -73.98368, 40.760225, 'Credit', 21.3, 0.0, 4.26, 0.0, 25.56, '1705685161.48292', 'QHgVk25ngF2t0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 33, tzinfo=datetime.timezone.utc), 2, 8.87, -73.874625, 40.774175, -73.951788, 40.766093, 'Credit', 21.3, 0.0, 4.26, 4.15, 29.71, '1705685161.48292', 'p01SasYpgfAD+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 20, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 38, tzinfo=datetime.timezone.utc), 5, 10.23, -73.976227, 40.739767, -74.026165, 40.631102, 'Credit', 23.3, 0.5, 4.76, 0.0, 28.56, '1705685161.48292', 'EqtYzhtWOLTQpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 8, 20, tzinfo=datetime.timezone.utc), 5, 12.91, -73.866557, 40.77101, -73.982155, 40.762898, 'Credit', 31.3, 0.0, 6.26, 4.15, 41.71, '1705685161.48292', 'CLUWlepANtMoOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 14, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 15, 26, tzinfo=datetime.timezone.utc), 5, 11.66, -73.985545, 40.758525, -73.862763, 40.768437, 'Credit', 31.7, 0.0, 6.26, 4.15, 42.11, '1705685161.48292', 'IqEAFTNk1loCdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 13, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 14, 19, tzinfo=datetime.timezone.utc), 1, 7.55, -74.00448, 40.72436, -73.95286, 40.783272, 'Credit', 21.7, 0.0, 6.51, 0.0, 28.21, '1705685161.48292', 'WCcHlrUkGSe2dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 21, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 21, 43, tzinfo=datetime.timezone.utc), 2, 10.06, -73.864415, 40.769638, -73.966808, 40.765193, 'Credit', 23.7, 0.5, 7.26, 4.15, 35.61, '1705685161.48292', 'upryWOpLJJiG3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 9, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 20, 30, tzinfo=datetime.timezone.utc), 2, 1.0, -73.978473, 40.745146, -73.993509, 40.752243, 'Credit', 6.5, 0.0, 0.97, 0.0, 7.47, '1705685161.48292', 'lfWSVZdTenvtng', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 16, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 16, 25, tzinfo=datetime.timezone.utc), 1, 4.64, -73.975607, 40.760513, -73.969523, 40.800398, 'Credit', 15.3, 1.0, 3.26, 0.0, 19.56, '1705685161.48292', 'PtQJNjAUs5VTHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 19, 43, tzinfo=datetime.timezone.utc), 1, 3.58, -73.952768, 40.786492, -73.989865, 40.751432, 'Credit', 15.3, 1.0, 3.26, 0.0, 19.56, '1705685161.48292', 't+26E4QdfQ8Jpg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 58, tzinfo=datetime.timezone.utc), 1, 6.24, -73.99407, 40.752047, -74.039243, 40.7436, 'Credit', 20.1, 0.0, 4.02, 0.0, 24.12, '1705685161.48292', 'c6+ZqaFAqJeGnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 13, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 13, 21, tzinfo=datetime.timezone.utc), 4, 7.97, -73.97003, 40.757167, -73.940783, 40.842458, 'Credit', 20.1, 0.0, 4.02, 0.0, 24.12, '1705685161.48292', 'nk8T5PJmN0lHng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 11, tzinfo=datetime.timezone.utc), 1, 7.95, -73.979638, 40.749567, -73.885408, 40.773172, 'Credit', 20.1, 0.0, 4.02, 4.15, 28.27, '1705685161.48292', 'wiRxLRP2hIsomw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 38, tzinfo=datetime.timezone.utc), 1, 9.07, -73.776712, 40.644977, -73.777353, 40.719723, 'Credit', 22.1, 0.5, 4.52, 0.0, 27.12, '1705685161.48292', 'Fc80Rz+hgiaCoQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 13, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 14, 22, tzinfo=datetime.timezone.utc), 1, 7.02, -73.961418, 40.76512, -73.942798, 40.84005, 'Credit', 20.1, 0.0, 5.02, 0.0, 25.12, '1705685161.48292', 'GQmYcTO2y0O9ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 12, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 47, tzinfo=datetime.timezone.utc), 1, 8.11, -73.951623, 40.793433, -73.865242, 40.770613, 'Credit', 20.1, 0.0, 5.02, 4.15, 29.27, '1705685161.48292', 'ki1lAVscOSCkZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 50, tzinfo=datetime.timezone.utc), 3, 6.79, -73.974578, 40.736383, -73.972708, 40.674987, 'Credit', 20.1, 1.0, 5.27, 0.0, 26.37, '1705685161.48292', 'NNi/49jz571woQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 23, tzinfo=datetime.timezone.utc), 1, 7.73, -73.98118, 40.773598, -73.966867, 40.683448, 'Credit', 22.1, 0.0, 5.52, 0.0, 27.62, '1705685161.48292', 'Hii+9hqTLSk0dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 54, tzinfo=datetime.timezone.utc), 5, 9.03, -73.987365, 40.75068, -73.870443, 40.773605, 'Credit', 22.1, 0.0, 5.52, 4.15, 31.77, '1705685161.48292', '1xHpxL9ihWotBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 15, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 16, 3, tzinfo=datetime.timezone.utc), 1, 12.21, -73.862613, 40.768967, -73.786213, 40.638515, 'Credit', 30.1, 0.0, 6.02, 0.0, 36.12, '1705685161.48292', 'x/o9g/aUPk2JDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 6, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 6, 42, tzinfo=datetime.timezone.utc), 2, 8.72, -73.865837, 40.771153, -73.972108, 40.748845, 'Credit', 20.9, 0.0, 6.27, 4.15, 31.32, '1705685161.48292', '2K3zP57ymHJtlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 17, tzinfo=datetime.timezone.utc), 5, 13.2, -73.99228, 40.725208, -73.914963, 40.878895, 'Credit', 32.1, 0.5, 6.52, 1.9, 41.02, '1705685161.48292', '9GDHbQGk5Jp2NA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 0, 14, tzinfo=datetime.timezone.utc), 1, 14.4, -73.87422, 40.773888, -74.004487, 40.708852, 'Credit', 32.1, 0.5, 6.52, 4.15, 43.27, '1705685161.48292', 'BVQ9kA5wMqgiAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 17, 36, tzinfo=datetime.timezone.utc), 1, 8.62, -74.00631, 40.713998, -73.97098, 40.61956, 'Credit', 26.1, 1.0, 6.77, 0.0, 33.87, '1705685161.48292', '/79swOYIUGUBZw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 30, tzinfo=datetime.timezone.utc), 1, 12.06, -74.007357, 40.715925, -73.873195, 40.774353, 'Credit', 28.1, 0.0, 7.02, 0.0, 35.12, '1705685161.48292', 'MPMrA+cAcADFeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 6, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 6, 59, tzinfo=datetime.timezone.utc), 2, 12.41, -74.00309, 40.72784, -74.183848, 40.688563, 'Credit', 42.7, 0.0, 8.54, 8.0, 59.24, '1705685161.48292', 'xAInxSygsK+JfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 34, tzinfo=datetime.timezone.utc), 2, 13.03, -73.862857, 40.769138, -74.007065, 40.70809, 'Credit', 31.3, 0.5, 9.54, 0.0, 41.34, '1705685161.48292', 'gUP1dtAlKD/fjg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 30, 18, 2, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 18, 8, 34, tzinfo=datetime.timezone.utc), 1, 0.7, -73.973581, 40.763611, -73.980968, 40.769572, 'Credit', 5.3, 0.0, 0.94, 0.0, 6.24, '1705685161.48292', 'd+Waqjvkq8m0iA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 19, 51, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 20, 3, 46, tzinfo=datetime.timezone.utc), 1, 2.9, -73.960236, 40.773748, -73.955549, 40.806636, 'Credit', 9.7, 0.0, 2.14, 0.0, 11.84, '1705685161.48292', 'EShBBz5cUt1nBA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 12, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 12, 28, tzinfo=datetime.timezone.utc), 1, 3.62, -73.971145, 40.764267, -73.966227, 40.804025, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685161.48292', 'wftYrlWdkSw3pw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 10, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 10, 51, tzinfo=datetime.timezone.utc), 5, 3.73, -73.967713, 40.802885, -73.994558, 40.754357, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685161.48292', 'drHAT5lYAU1b+A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 3, tzinfo=datetime.timezone.utc), 6, 3.87, -74.01362, 40.706985, -73.990205, 40.748682, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685161.48292', 'HmAZ3K4hxyothg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 9, 25, tzinfo=datetime.timezone.utc), 1, 3.09, -73.952018, 40.78448, -73.98243, 40.759398, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685161.48292', '1o3XVOUpm7Jvxg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.83, -73.964117, 40.807975, -73.959285, 40.760372, 'Credit', 15.7, 0.0, 3.14, 0.0, 18.84, '1705685161.48292', 'FKE8y4NjE67liQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 8, tzinfo=datetime.timezone.utc), 2, 6.02, -73.988403, 40.722755, -73.972188, 40.677892, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685161.48292', 'M+q5ivZvOELOyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 22, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 23, 4, tzinfo=datetime.timezone.utc), 1, 5.75, -73.94439, 40.794883, -74.001105, 40.740857, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685161.48292', 'G5os4Eh7NnIhMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 1, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 1, 49, tzinfo=datetime.timezone.utc), 1, 0.0, -73.93782, 40.84442, -73.93782, 40.84442, 'Credit', 18.2, 0.0, 3.64, 0.0, 21.84, '1705685161.48292', 'E5VhuQIf4/Gg9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 20, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 21, 6, tzinfo=datetime.timezone.utc), 1, 6.53, -73.967945, 40.762442, -74.004123, 40.719732, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685161.48292', '7flt6h2mtjeDZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 3, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 3, 42, tzinfo=datetime.timezone.utc), 2, 6.86, -73.984717, 40.742707, -73.991728, 40.65951, 'Credit', 17.7, 0.5, 3.64, 0.0, 21.84, '1705685161.48292', '0RTDtN/8Pf6h0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 3, 36, tzinfo=datetime.timezone.utc), 3, 7.84, -73.998313, 40.74053, -73.959243, 40.80919, 'Credit', 20.9, 0.5, 4.28, 0.0, 25.68, '1705685161.48292', 'XSKax6cSUDbcsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 9, tzinfo=datetime.timezone.utc), 1, 8.42, -73.885255, 40.772997, -73.986653, 40.739647, 'Credit', 22.9, 1.0, 4.78, 4.15, 32.83, '1705685161.48292', 'SPWKyu/M/f/6gA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 14, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 15, 34, tzinfo=datetime.timezone.utc), 1, 10.98, -73.981028, 40.770728, -73.873153, 40.774317, 'Credit', 28.9, 0.0, 5.78, 4.15, 38.83, '1705685161.48292', 'lLZVhaxteRmuVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 14, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 9, tzinfo=datetime.timezone.utc), 5, 8.49, -73.872228, 40.77399, -73.955435, 40.772787, 'Credit', 20.1, 0.0, 6.03, 5.0, 31.13, '1705685161.48292', 'otaw3m5CTdrQPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 18, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 0, tzinfo=datetime.timezone.utc), 5, 3.94, -74.003243, 40.748852, -73.961347, 40.777358, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685161.48292', 'm1hxZSkDkU266Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 18, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 1, tzinfo=datetime.timezone.utc), 1, 3.74, -73.975707, 40.754953, -73.97619, 40.79515, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685161.48292', 'W4nQgbzzqCCmUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 19, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 19, 56, tzinfo=datetime.timezone.utc), 1, 3.11, -73.973662, 40.763252, -74.006187, 40.736975, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685161.48292', 'soAa2eXfYE2CqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 16, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 17, 10, tzinfo=datetime.timezone.utc), 1, 3.42, -73.986225, 40.751708, -73.978127, 40.791982, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685161.48292', 'spymNfELTlL4Ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 59, tzinfo=datetime.timezone.utc), 1, 3.32, -73.97505, 40.76272, -74.006963, 40.730243, 'Credit', 14.1, 1.0, 3.02, 0.0, 18.12, '1705685161.48292', 'x+ZH/PrSQnZCKA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 15, tzinfo=datetime.timezone.utc), 1, 7.65, -74.007382, 40.709082, -73.953507, 40.782057, 'Credit', 19.7, 0.5, 4.04, 0.0, 24.24, '1705685161.48292', '7fN7PZ8Iv30agA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 1, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 1, 48, tzinfo=datetime.timezone.utc), 5, 7.62, -74.000158, 40.73371, -73.963557, 40.810327, 'Credit', 19.7, 0.5, 4.04, 0.0, 24.24, '1705685161.48292', 'tgjt/DpS8bGvHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 21, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 21, 18, tzinfo=datetime.timezone.utc), 2, 8.5, -73.870877, 40.77368, -73.955998, 40.772065, 'Credit', 19.7, 0.5, 4.04, 4.15, 28.39, '1705685161.48292', 'ZcX8HBVGd/694g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 16, 33, tzinfo=datetime.timezone.utc), 1, 13.96, -74.00683, 40.705243, -73.885943, 40.771773, 'Credit', 31.7, 1.0, 6.54, 5.0, 44.24, '1705685161.48292', 'oZDhFF+pNjeYTQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 17, 28, tzinfo=datetime.timezone.utc), 1, 12.91, -73.865882, 40.770007, -73.786327, 40.6395, 'Credit', 31.7, 1.0, 6.54, 0.0, 39.24, '1705685161.48292', 'mn8/4LVIpkYQ+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 19, 25, tzinfo=datetime.timezone.utc), 2, 11.51, -73.981458, 40.774022, -73.984863, 40.66303, 'Credit', 31.7, 1.0, 6.54, 0.0, 39.24, '1705685161.48292', 'U2T4pQirQ1S39g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 13, 44, tzinfo=datetime.timezone.utc), 1, 17.07, 0.0, 0.0, -73.974188, 40.751278, 'Credit', 45.0, 0.0, 9.83, 4.15, 58.98, '1705685161.48292', 'kydiPt3n26hNBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 0, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 0, 29, tzinfo=datetime.timezone.utc), 3, 4.23, -73.984212, 40.754742, -74.010848, 40.720285, 'Credit', 14.1, 0.5, 2.4, 0.0, 17.0, '1705685161.48292', 'rPP22Ug/XowuFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 7, tzinfo=datetime.timezone.utc), 1, 6.23, -73.99482, 40.739595, -73.941275, 40.808868, 'Credit', 16.1, 0.5, 2.4, 0.0, 19.0, '1705685161.48292', 'llAAKy1OGhwThw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 31, tzinfo=datetime.timezone.utc), 1, 4.88, -74.016033, 40.710985, -73.989202, 40.73002, 'Credit', 14.1, 1.0, 2.4, 0.0, 17.5, '1705685161.48292', 'rrrq7gcfC4eQrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 11, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 45, tzinfo=datetime.timezone.utc), 2, 3.68, -73.976103, 40.78055, -73.95712, 40.770665, 'Credit', 12.1, 0.0, 2.9, 0.0, 15.0, '1705685161.48292', 'RHglMHX70MRsFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 13, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 13, 43, tzinfo=datetime.timezone.utc), 1, 2.52, -73.992495, 40.749915, -73.983175, 40.766703, 'Credit', 12.1, 0.0, 2.9, 0.0, 15.0, '1705685161.48292', 'OWdGAhoKLkpiJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 57, tzinfo=datetime.timezone.utc), 2, 6.21, -73.963748, 40.798073, -73.975588, 40.72864, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685161.48292', 'g4vDKAOSO6YAjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 13, tzinfo=datetime.timezone.utc), 5, 5.78, -73.99105, 40.714652, -73.980852, 40.779827, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685161.48292', 'q4gJd4TyEyD5GA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 22, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 22, 41, tzinfo=datetime.timezone.utc), 1, 6.51, -73.977417, 40.736333, -73.976017, 40.678312, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685161.48292', 'a1CxlsOBPsTeFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 1, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 1, 54, tzinfo=datetime.timezone.utc), 3, 5.79, -73.977602, 40.76181, -73.91232, 40.780615, 'Credit', 16.5, 0.5, 3.4, 0.0, 20.4, '1705685161.48292', 'eFbbnNHMvMhy2w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 11, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 11, 44, tzinfo=datetime.timezone.utc), 5, 5.92, -73.993892, 40.748528, -73.942283, 40.822388, 'Credit', 20.1, 0.0, 3.9, 0.0, 24.0, '1705685161.48292', '7TVhdKRZf2ENOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 3, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 3, 46, tzinfo=datetime.timezone.utc), 2, 6.19, -73.988065, 40.723713, -73.972608, 40.793363, 'Credit', 15.7, 0.5, 4.05, 0.0, 20.25, '1705685161.48292', 'lr8sgJmzV8dyNg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 16, 21, 58, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 25, 13, tzinfo=datetime.timezone.utc), 1, 6.0, -74.006251, 40.733238, -73.953927, 40.786337, 'Credit', 17.7, 0.0, 4.55, 0.0, 22.25, '1705685161.48292', '7X3BiVeUsg9YSA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 21, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 21, 55, tzinfo=datetime.timezone.utc), 5, 6.58, -74.015567, 40.711453, -73.971542, 40.75567, 'Credit', 19.7, 0.5, 5.05, 0.0, 25.25, '1705685161.48292', 'AFZcdXiPF8ceog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 2, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 3, 10, tzinfo=datetime.timezone.utc), 1, 7.1, -73.983013, 40.752042, -73.974593, 40.667428, 'Credit', 19.7, 0.5, 5.05, 0.0, 25.25, '1705685161.48292', 'zJLlbUZS/5cYjw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 50, tzinfo=datetime.timezone.utc), 5, 10.52, -73.977233, 40.762318, -73.872637, 40.774435, 'Credit', 26.5, 0.0, 5.3, 4.15, 35.95, '1705685161.48292', '300V6bmiUXFekw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 12, 43, tzinfo=datetime.timezone.utc), 1, 10.08, -73.968878, 40.764482, -73.87372, 40.774228, 'Credit', 26.5, 0.0, 5.3, 4.15, 35.95, '1705685161.48292', 'cC4tMZTfhBkDJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 43, tzinfo=datetime.timezone.utc), 1, 9.02, -73.862752, 40.769017, -73.9899, 40.776505, 'Credit', 26.5, 0.0, 5.3, 0.0, 31.8, '1705685161.48292', 'tgEV6qQyNXTKxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 15, 33, tzinfo=datetime.timezone.utc), 3, 9.92, -73.991378, 40.749678, -73.87314, 40.774393, 'Credit', 26.5, 0.0, 5.55, 4.15, 36.2, '1705685161.48292', 'r5gjPQWqm0Q4Tw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 17, tzinfo=datetime.timezone.utc), 1, 16.47, -73.990713, 40.719375, -73.78255, 40.648768, 'Credit', 45.0, 0.0, 5.55, 4.15, 54.7, '1705685161.48292', 'r/5DvwXisKrT0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 23, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 19, tzinfo=datetime.timezone.utc), 1, 12.1, -73.946078, 40.781588, -73.990815, 40.668853, 'Credit', 28.5, 0.5, 5.8, 0.0, 34.8, '1705685161.48292', '1u6MHNE/hP5Wag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 10, 44, tzinfo=datetime.timezone.utc), 1, 10.88, -73.862527, 40.769607, -73.988828, 40.752968, 'Credit', 36.5, 0.0, 7.3, 0.0, 43.8, '1705685161.48292', 'egwDRhSrgpqV9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 59, tzinfo=datetime.timezone.utc), 1, 0.0, -74.04013, 40.73893, -74.04013, 40.738937, 'Credit', 53.0, 0.0, 10.6, 0.0, 63.6, '1705685161.48292', '8h1ynHhWwwlCpQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 22, 19, tzinfo=datetime.timezone.utc), 1, 0.0, -74.033033, 40.739197, -74.033022, 40.739188, 'Credit', 53.0, 0.0, 10.6, 0.0, 63.6, '1705685161.48292', '/+XyuJxivltCpw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 10, tzinfo=datetime.timezone.utc), 1, 20.47, -73.78988, 40.646433, -73.975537, 40.79034, 'Credit', 45.0, 0.0, 11.1, 4.15, 60.25, '1705685161.48292', 'v0+X0whvSExBvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 7, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 7, 39, tzinfo=datetime.timezone.utc), 1, 1.11, -73.93606, 40.799437, -73.954323, 40.805943, 'Credit', 5.7, 0.0, 0.3, 0.0, 6.0, '1705685161.48292', 'Hg1JG37ELpWFmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 10, 13, tzinfo=datetime.timezone.utc), 3, 1.39, -73.986753, 40.733873, -74.007568, 40.744247, 'Credit', 7.7, 0.0, 0.3, 0.0, 8.0, '1705685161.48292', '1BIRrErJiTJXcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 28, tzinfo=datetime.timezone.utc), 1, 0.49, -73.9793, 40.776873, -73.984358, 40.771588, 'Credit', 4.9, 0.0, 0.6, 0.0, 5.5, '1705685161.48292', '7VpYoHxBmjwyRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 23, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 23, 32, tzinfo=datetime.timezone.utc), 1, 1.1, -73.994307, 40.751185, -73.999927, 40.761232, 'Credit', 4.9, 0.5, 0.6, 0.0, 6.0, '1705685161.48292', 'Bi2t8GWegLKC8Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 20, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 20, 57, tzinfo=datetime.timezone.utc), 2, 1.75, -73.995133, 40.74185, -73.977072, 40.755757, 'Credit', 6.9, 0.5, 0.6, 0.0, 8.0, '1705685161.48292', '+lwm4b4OzTbFYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 15, 52, tzinfo=datetime.timezone.utc), 2, 0.51, -73.966955, 40.760213, -73.961093, 40.767042, 'Credit', 3.3, 0.0, 0.6, 0.0, 3.9, '1705685161.48292', 'oll0hiDimfPMeQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 6, tzinfo=datetime.timezone.utc), 1, 1.07, -73.974317, 40.751438, -73.971893, 40.76353, 'Credit', 6.5, 0.0, 0.6, 0.0, 7.1, '1705685161.48292', 'o0/Uc0Dvy3EP0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 13, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 13, 22, tzinfo=datetime.timezone.utc), 2, 0.74, -73.97911, 40.744357, -73.988853, 40.74831, 'Credit', 5.3, 0.0, 0.6, 0.0, 5.9, '1705685161.48292', '0lYrn1TPZxbl9g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 11, 15, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 22, tzinfo=datetime.timezone.utc), 1, 1.3, -73.994514, 40.746103, -73.978517, 40.752323, 'Credit', 5.7, 0.0, 0.85, 0.0, 6.55, '1705685161.48292', 'Rfn0gK31Pr6B2Q', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 34, tzinfo=datetime.timezone.utc), 1, 0.91, -74.013735, 40.70832, -74.006212, 40.706065, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685161.48292', '0kCBWjpOTZ5K8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 5, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 5, 20, tzinfo=datetime.timezone.utc), 1, 1.21, -73.9748, 40.787565, -73.959983, 40.779638, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685161.48292', '2z6ZTVtUKjPKOQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 10, tzinfo=datetime.timezone.utc), 1, 1.27, -74.002777, 40.72858, -73.99051, 40.738438, 'Credit', 5.3, 0.5, 1.2, 0.0, 7.0, '1705685161.48292', 'w7d50JwApIT91A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 8, 35, tzinfo=datetime.timezone.utc), 5, 1.88, -73.96876, 40.764158, -73.955705, 40.787047, 'Credit', 7.3, 0.0, 1.2, 0.0, 8.5, '1705685161.48292', 'wvij0W1BEQOH6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 22, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 23, 8, tzinfo=datetime.timezone.utc), 2, 1.91, -74.001295, 40.73453, -73.9788, 40.744693, 'Credit', 7.3, 0.5, 1.2, 0.0, 9.0, '1705685161.48292', 'AtPMali7mfLwTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 16, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 16, 56, tzinfo=datetime.timezone.utc), 2, 1.85, -73.954212, 40.784512, -73.97403, 40.791443, 'Credit', 7.3, 1.0, 1.2, 0.0, 9.5, '1705685161.48292', 'fS/AuH+HNRGfcw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 17, tzinfo=datetime.timezone.utc), 1, 3.28, -73.987945, 40.724058, -73.957918, 40.765338, 'Credit', 9.3, 0.5, 1.2, 0.0, 11.0, '1705685161.48292', 'BoNW7gtBuCi4hA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 24, tzinfo=datetime.timezone.utc), 1, 1.2, -74.012742, 40.702302, -74.015242, 40.715837, 'Credit', 6.1, 0.5, 1.2, 0.0, 7.8, '1705685161.48292', '5C5/82MhApVkeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 31, tzinfo=datetime.timezone.utc), 1, 1.48, -73.984712, 40.732247, -73.977492, 40.749853, 'Credit', 6.9, 0.5, 1.2, 0.0, 8.6, '1705685161.48292', 'FEnH5IA9boAJIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 14, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 14, 38, tzinfo=datetime.timezone.utc), 1, 2.27, -73.961127, 40.769793, -73.983717, 40.759963, 'Credit', 8.9, 0.0, 1.2, 0.0, 10.1, '1705685161.48292', 'kPfGQ5YBOsKIdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 15, 24, tzinfo=datetime.timezone.utc), 1, 2.25, -73.96031, 40.781772, -73.980933, 40.753537, 'Credit', 8.9, 0.0, 1.2, 0.0, 10.1, '1705685161.48292', '7b4dB0JQCyHSDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 11, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 12, 15, tzinfo=datetime.timezone.utc), 1, 2.18, -73.951532, 40.766133, -73.975252, 40.756547, 'Credit', 12.5, 0.0, 1.2, 0.0, 13.7, '1705685161.48292', '47R2eiZ5sJXhFg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 18, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 19, 5, tzinfo=datetime.timezone.utc), 6, 1.06, -73.975662, 40.75544, -73.980252, 40.74331, 'Credit', 5.7, 1.0, 1.2, 0.0, 7.9, '1705685161.48292', 'DdafPx1NiN+2Cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 32, tzinfo=datetime.timezone.utc), 1, 1.51, -73.98708, 40.725078, -73.974035, 40.744088, 'Credit', 5.7, 1.0, 1.2, 0.0, 7.9, '1705685161.48292', '7Owp/LsDppXl5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 12, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 13, 0, tzinfo=datetime.timezone.utc), 2, 1.81, -73.961477, 40.763065, -73.951463, 40.770643, 'Credit', 8.1, 0.0, 1.2, 0.0, 9.3, '1705685161.48292', 'LWKsG1+TGCbVNQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 19, tzinfo=datetime.timezone.utc), 1, 6.51, -73.9746, 40.755593, -74.015528, 40.71159, 'Credit', 18.1, 0.0, 1.2, 0.0, 19.3, '1705685161.48292', 'cw+6iSINueym5A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 56, tzinfo=datetime.timezone.utc), 5, 0.69, -73.991142, 40.739068, -74.000985, 40.739195, 'Credit', 4.5, 1.0, 1.2, 0.0, 6.7, '1705685161.48292', 'gwVtJjNt8PBHwg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 13, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 13, 37, tzinfo=datetime.timezone.utc), 1, 3.06, -73.993517, 40.7245, -73.971487, 40.761772, 'Credit', 11.7, 0.0, 1.2, 0.0, 12.9, '1705685161.48292', '9uosbCkp06kCWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 22, tzinfo=datetime.timezone.utc), 1, 0.88, -74.003337, 40.743575, -73.989668, 40.73921, 'Credit', 5.3, 0.0, 1.7, 0.0, 7.0, '1705685161.48292', 'Czc3LAin8LhbHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 8, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 21, tzinfo=datetime.timezone.utc), 5, 1.39, -73.958878, 40.764092, -73.977717, 40.763087, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685161.48292', '0Mg3rqj2CBGSKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 15, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 15, 37, tzinfo=datetime.timezone.utc), 1, 1.07, -73.969287, 40.763127, -73.981437, 40.756255, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685161.48292', 'dFAFRN0imD7etg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 9, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 9, 21, tzinfo=datetime.timezone.utc), 1, 1.54, -73.962882, 40.758472, -73.965203, 40.774243, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685161.48292', '3JSMZ1DvvanqeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 10, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 10, 56, tzinfo=datetime.timezone.utc), 1, 0.97, -73.986715, 40.757787, -73.971932, 40.755008, 'Credit', 7.3, 0.0, 1.7, 0.0, 9.0, '1705685161.48292', '7158HFJqfSqK8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 48, tzinfo=datetime.timezone.utc), 2, 1.12, -74.006108, 40.750905, -73.987037, 40.743648, 'Credit', 7.3, 1.0, 1.7, 0.0, 10.0, '1705685161.48292', '5CvFs6DnZxDVcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 18, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 18, 43, tzinfo=datetime.timezone.utc), 1, 1.71, -73.973085, 40.748992, -73.994527, 40.741978, 'Credit', 7.3, 1.0, 1.7, 0.0, 10.0, '1705685161.48292', 'oSNF5ArGYo2CRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 7, 55, tzinfo=datetime.timezone.utc), 1, 2.27, -73.950393, 40.776082, -73.976512, 40.762305, 'Credit', 9.3, 0.0, 1.7, 0.0, 11.0, '1705685161.48292', '1RLe9G6M6x0NEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 17, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 17, 50, tzinfo=datetime.timezone.utc), 1, 1.89, -74.005185, 40.741067, -73.987095, 40.729578, 'Credit', 9.3, 1.0, 1.7, 0.0, 12.0, '1705685161.48292', 'M+P5PVnGb/XQcQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 47, tzinfo=datetime.timezone.utc), 1, 4.08, -74.015213, 40.712585, -73.984133, 40.755553, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685161.48292', 'NPfoI8HXY8+jMQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 37, tzinfo=datetime.timezone.utc), 5, 2.75, -73.98943, 40.771593, -73.980613, 40.745393, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685161.48292', 'Tm7TFq/DVAc+kA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 9, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 9, 24, tzinfo=datetime.timezone.utc), 2, 1.63, -73.977723, 40.736645, -73.982203, 40.753838, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685161.48292', 'mCw20sWWiOeZuA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 13, tzinfo=datetime.timezone.utc), 1, 2.8, -73.96155, 40.768265, -73.987287, 40.744707, 'Credit', 11.3, 0.0, 1.7, 0.0, 13.0, '1705685161.48292', 'R9Vw6TvrLP3HAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 15, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 16, 7, tzinfo=datetime.timezone.utc), 2, 4.15, -73.977828, 40.72603, -73.95186, 40.773337, 'Credit', 13.3, 0.0, 1.7, 0.0, 15.0, '1705685161.48292', 'WGkG9Zj9pzqAZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 14, 43, tzinfo=datetime.timezone.utc), 1, 3.86, -73.954213, 40.774603, -73.982945, 40.739035, 'Credit', 13.3, 0.0, 1.7, 0.0, 15.0, '1705685161.48292', 'DRL4/PKwxT1Gsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 8, 9, tzinfo=datetime.timezone.utc), 1, 2.21, -73.984352, 40.775232, -73.97565, 40.752928, 'Credit', 8.9, 0.0, 1.7, 0.0, 10.6, '1705685161.48292', 'uZYpNfC/T21tBg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 28, 14, 48, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 14, 59, 13, tzinfo=datetime.timezone.utc), 1, 2.2, -73.993959, 40.75664, -73.978832, 40.737273, 'Credit', 8.5, 0.0, 1.7, 0.0, 10.2, '1705685161.48292', 'O9HGG9Xb3RcaCg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 10, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 11, 5, tzinfo=datetime.timezone.utc), 1, 1.29, -73.959918, 40.779285, -73.954718, 40.767337, 'Credit', 8.5, 0.0, 1.7, 0.0, 10.2, '1705685161.48292', 'MWwCwPtcC3CF7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 23, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 49, tzinfo=datetime.timezone.utc), 2, 14.42, -73.801155, 40.672723, -73.982273, 40.739683, 'Credit', 45.0, 0.0, 8.85, 4.15, 58.0, '1705685161.48292', 'vaRJ6mBICEOztw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 7, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 7, 53, tzinfo=datetime.timezone.utc), 5, 7.8, -73.960083, 40.77035, -74.01529, 40.711515, 'Credit', 18.9, 0.0, 3.78, 0.0, 22.68, '1705685161.48292', '8Vcy5hT8ha7aIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 38, tzinfo=datetime.timezone.utc), 1, 5.15, -73.990362, 40.771935, -74.007765, 40.708862, 'Credit', 18.9, 0.0, 3.78, 0.0, 22.68, '1705685161.48292', 'WYTnXuzAukDtQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 8, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 9, 3, tzinfo=datetime.timezone.utc), 1, 8.4, 0.0, 0.0, 0.0, 0.0, 'Credit', 25.3, 0.0, 5.06, 0.0, 30.36, '1705685161.48292', 'kzlVlvdHDXnc0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 11, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 11, 53, tzinfo=datetime.timezone.utc), 2, 10.79, -73.982007, 40.755247, -73.870915, 40.774127, 'Credit', 25.3, 0.0, 5.06, 4.15, 34.51, '1705685161.48292', 'gTBYkN+8vWMgIQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 0, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 13, tzinfo=datetime.timezone.utc), 3, 7.77, -73.981665, 40.738013, -73.930433, 40.812103, 'Credit', 27.3, 0.5, 5.56, 0.0, 33.36, '1705685161.48292', 'lCRjmUYTHUEDCQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 2, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 31, tzinfo=datetime.timezone.utc), 2, 5.21, -74.000972, 40.731712, -73.947698, 40.774663, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685161.48292', 'Vtf9cmLt2/eUZA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 22, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 22, 37, tzinfo=datetime.timezone.utc), 1, 5.22, -73.982183, 40.77476, -73.97714, 40.719403, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685161.48292', 'gigMA8hYiysn/w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 22, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 26, tzinfo=datetime.timezone.utc), 5, 5.51, -73.980423, 40.77022, -74.015202, 40.709293, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685161.48292', 'SgZaqU0FNymGeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 4, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 5, 0, tzinfo=datetime.timezone.utc), 1, 5.55, -73.997168, 40.722307, -73.976178, 40.789128, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685161.48292', 'tD4RYQPkIbszFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 23, tzinfo=datetime.timezone.utc), 1, 5.59, -73.979327, 40.77174, -74.010487, 40.71394, 'Credit', 15.3, 0.5, 3.16, 0.0, 18.96, '1705685161.48292', 'Zqdx33xqniIZTw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 18, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 0, tzinfo=datetime.timezone.utc), 1, 3.88, -74.007508, 40.716215, -73.979435, 40.76456, 'Credit', 15.3, 1.0, 4.07, 0.0, 20.37, '1705685161.48292', 'k7dp2OFGPVFJiA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 23, tzinfo=datetime.timezone.utc), 1, 4.68, -73.995475, 40.730937, -73.970293, 40.785843, 'Credit', 17.3, 0.0, 4.32, 0.0, 21.62, '1705685161.48292', '00pVEMed6kYfeA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 16, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 16, 40, tzinfo=datetime.timezone.utc), 1, 5.31, -74.0153, 40.709585, -73.977717, 40.772748, 'Credit', 17.3, 0.0, 4.32, 0.0, 21.62, '1705685161.48292', 'Pi8s/uDthAWdaQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 36, tzinfo=datetime.timezone.utc), 1, 7.19, -73.993005, 40.693008, -73.97197, 40.75849, 'Credit', 19.3, 0.0, 4.82, 0.0, 24.12, '1705685161.48292', 'L61omrrBBd0rAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 7, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 27, tzinfo=datetime.timezone.utc), 1, 9.16, -73.917273, 40.770878, -73.807647, 40.698765, 'Credit', 21.3, 0.0, 5.32, 0.0, 26.62, '1705685161.48292', 'EGaRKtYfLrfwkw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 25, tzinfo=datetime.timezone.utc), 1, 11.02, -73.98371, 40.760092, -73.840457, 40.718667, 'Credit', 26.1, 0.5, 5.32, 4.15, 36.07, '1705685161.48292', 'pTXJMWvWqIacSg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 18, tzinfo=datetime.timezone.utc), 2, 10.02, -73.862732, 40.769033, -73.986007, 40.758165, 'Credit', 26.1, 0.5, 5.32, 4.15, 36.07, '1705685161.48292', '/4tAaQpwNeTdng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 15, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 16, 18, tzinfo=datetime.timezone.utc), 1, 10.21, -73.977768, 40.761683, -73.870948, 40.77413, 'Credit', 34.1, 0.0, 6.82, 4.15, 45.07, '1705685161.48292', 'g+XiUc4k3AY/yw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 35, tzinfo=datetime.timezone.utc), 1, 12.18, -73.979192, 40.73614, -73.865062, 40.770492, 'Credit', 27.3, 0.0, 6.82, 4.15, 38.27, '1705685161.48292', '0l/QHyXbU4GW8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 9, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 9, 32, tzinfo=datetime.timezone.utc), 5, 12.16, -73.865807, 40.770335, -73.996957, 40.767082, 'Credit', 29.3, 0.0, 7.32, 4.15, 40.77, '1705685161.48292', 'IS8Pn5HePAYsXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 22, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 23, 5, tzinfo=datetime.timezone.utc), 5, 15.51, -73.998675, 40.713415, -73.904415, 40.881267, 'Credit', 36.1, 0.5, 7.32, 0.0, 43.92, '1705685161.48292', '4oJEKHUCUV9Rng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 12, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 12, 26, tzinfo=datetime.timezone.utc), 3, 8.39, -74.009952, 40.720908, -73.973965, 40.763367, 'Credit', 22.9, 0.0, 4.58, 0.0, 27.48, '1705685161.48292', 'RMhF1WM9hQN0Dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 2, tzinfo=datetime.timezone.utc), 1, 8.71, -73.885312, 40.77314, -73.962067, 40.76771, 'Credit', 22.9, 0.0, 4.58, 0.0, 27.48, '1705685161.48292', 'XXcwT1l884B9+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 1, 7, tzinfo=datetime.timezone.utc), 2, 9.88, -74.005508, 40.739348, -73.849963, 40.72424, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685161.48292', 'g4+7zPwNuNNyKg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 5, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 5, 54, tzinfo=datetime.timezone.utc), 1, 10.77, -74.007623, 40.740868, -73.87185, 40.774365, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685161.48292', 'cTePAQlvw4/NYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 47, tzinfo=datetime.timezone.utc), 3, 10.01, -73.874547, 40.774138, -73.9831, 40.784303, 'Credit', 24.9, 0.5, 5.08, 4.15, 34.63, '1705685161.48292', 'e2QCQhtbvuHD3g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 17, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 18, 44, tzinfo=datetime.timezone.utc), 1, 14.21, 0.0, 0.0, 0.0, 0.0, 'Credit', 36.9, 1.0, 7.58, 5.0, 50.48, '1705685161.48292', 'FJMG/hleUdU5Rw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 14, 18, 58, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 4, 51, tzinfo=datetime.timezone.utc), 1, 1.2, -73.975898, 40.77637, -73.987463, 40.77037, 'Credit', 6.1, 0.0, 1.52, 0.0, 7.62, '1705685161.48292', 'CTQzT0eYJALwng', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 46, tzinfo=datetime.timezone.utc), 2, 1.37, -73.994893, 40.760687, -73.997737, 40.746237, 'Credit', 6.5, 0.5, 1.77, 0.0, 8.77, '1705685161.48292', 'WrQLGjO9URcsmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 12, 7, 32, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 49, 30, tzinfo=datetime.timezone.utc), 1, 4.9, -74.007922, 40.704947, -73.994231, 40.745148, 'Credit', 14.5, 0.0, 2.17, 0.0, 16.67, '1705685161.48292', 'oNK70nzOEc9ANg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 20, 25, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 42, 24, tzinfo=datetime.timezone.utc), 1, 4.8, -74.0013, 40.73118, -73.976753, 40.787566, 'Credit', 14.1, 0.0, 2.92, 0.0, 17.02, '1705685161.48292', 'UdkjzNAfbVWTkw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 48, tzinfo=datetime.timezone.utc), 2, 5.04, -73.919247, 40.758737, -73.990978, 40.758668, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685161.48292', 'C9xS6D57DXI+mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 7, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 7, 20, tzinfo=datetime.timezone.utc), 1, 6.16, -73.863467, 40.76987, -73.923333, 40.740275, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685161.48292', 'CYbQMdXJQFfBfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 13, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 13, 45, tzinfo=datetime.timezone.utc), 1, 3.71, -73.963065, 40.755888, -73.977552, 40.791238, 'Credit', 15.7, 0.0, 3.92, 0.0, 19.62, '1705685161.48292', 'aUWG2jHbot3hSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 11, tzinfo=datetime.timezone.utc), 1, 7.99, -74.001813, 40.70947, -73.959212, 40.783258, 'Credit', 21.7, 0.0, 4.34, 0.0, 26.04, '1705685161.48292', 'KxOVXREDgRzYFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 14, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 15, 10, tzinfo=datetime.timezone.utc), 1, 8.43, -73.987303, 40.753035, -73.885568, 40.773165, 'Credit', 21.7, 0.0, 4.34, 4.15, 30.19, '1705685161.48292', 'SguXiNqkvszj8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 23, 25, tzinfo=datetime.timezone.utc), 1, 9.22, -73.987962, 40.749845, -73.932445, 40.857073, 'Credit', 23.7, 0.5, 4.84, 0.0, 29.04, '1705685161.48292', 'S3rxmxy1z5WOog', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 12, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 13, 7, tzinfo=datetime.timezone.utc), 5, 4.58, -73.987282, 40.745665, -73.978817, 40.760305, 'Credit', 25.3, 0.0, 7.59, 0.0, 32.89, '1705685161.48292', 'oL5bM3bUm2lA3A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 12, 41, tzinfo=datetime.timezone.utc), 1, 21.85, -73.945397, 40.783548, -74.177173, 40.694767, 'Credit', 65.9, 0.0, 13.18, 8.0, 87.08, '1705685161.48292', 'jdDQ7zGGDzU2LA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 23, 7, 17, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 7, 25, 1, tzinfo=datetime.timezone.utc), 1, 1.9, -73.979479, 40.78691, -73.984674, 40.759832, 'Credit', 7.3, 0.0, 1.46, 0.0, 8.76, '1705685161.48292', 'HL2kP9dTVwhygQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 16, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 20, tzinfo=datetime.timezone.utc), 1, 0.52, -73.98611, 40.756245, -73.989337, 40.74953, 'Credit', 3.7, 1.0, 2.3, 0.0, 7.0, '1705685161.48292', 'POClHgbjZnDaFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 55, tzinfo=datetime.timezone.utc), 1, 2.49, -73.951502, 40.774283, -73.976613, 40.755677, 'Credit', 9.7, 0.0, 2.3, 0.0, 12.0, '1705685161.48292', '9Xlnmxw0NEOnFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 16, 45, tzinfo=datetime.timezone.utc), 1, 12.64, -74.008363, 40.703912, -73.870688, 40.773985, 'Credit', 31.7, 1.0, 3.3, 0.0, 36.0, '1705685161.48292', 'RcAHa9mAaiDHhQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 6, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 7, 9, tzinfo=datetime.timezone.utc), 5, 6.36, -73.979823, 40.720517, -73.952457, 40.789812, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685161.48292', 'uGCgjCZa4FuWng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 8, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 9, tzinfo=datetime.timezone.utc), 1, 5.19, -74.000843, 40.680572, -73.990472, 40.73388, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685161.48292', 'hbpoLI4OC06mew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 12, 4, tzinfo=datetime.timezone.utc), 1, 5.74, -73.927535, 40.770313, -73.991145, 40.752612, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685161.48292', 'Plf4em/KQ1Ipig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 14, 17, tzinfo=datetime.timezone.utc), 2, 5.13, -74.009127, 40.711983, -73.981755, 40.773005, 'Credit', 16.5, 0.0, 3.3, 0.0, 19.8, '1705685161.48292', 'WVWD1XuD6YWvVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 51, tzinfo=datetime.timezone.utc), 1, 10.96, -73.763767, 40.763845, -73.733098, 40.760905, 'Credit', 29.7, 0.5, 3.8, 0.0, 34.0, '1705685161.48292', 'Q283Gxb8MH9ALQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 22, 39, tzinfo=datetime.timezone.utc), 1, 6.94, -73.977807, 40.75784, -73.984447, 40.702312, 'Credit', 18.5, 0.5, 3.8, 0.0, 22.8, '1705685161.48292', 'knvKMVJr/OYtYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 10, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 10, 59, tzinfo=datetime.timezone.utc), 1, 5.37, -73.973513, 40.797678, -73.995265, 40.734107, 'Credit', 20.5, 0.0, 4.1, 0.0, 24.6, '1705685161.48292', 'Zn+8R5dYD5A7dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 22, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 22, 51, tzinfo=datetime.timezone.utc), 1, 9.13, -73.86274, 40.769118, -73.969985, 40.757173, 'Credit', 22.5, 0.5, 4.6, 0.0, 27.6, '1705685161.48292', '/EYlpMqrvuCr/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 2, 0, tzinfo=datetime.timezone.utc), 2, 8.02, -73.981487, 40.7737, -73.972077, 40.67817, 'Credit', 22.5, 0.5, 4.6, 0.0, 27.6, '1705685161.48292', 'l1h3XBn1Dz32LQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 0, 16, tzinfo=datetime.timezone.utc), 1, 9.19, -73.872273, 40.774002, -73.972395, 40.783985, 'Credit', 22.5, 0.5, 4.6, 5.0, 32.6, '1705685161.48292', 'Ur9DFJii7NWnyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 2, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 2, 31, tzinfo=datetime.timezone.utc), 2, 6.6, -73.983803, 40.72615, -73.918525, 40.768832, 'Credit', 20.9, 0.5, 5.35, 0.0, 26.75, '1705685161.48292', 'Ys26tpGzajJObw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 46, tzinfo=datetime.timezone.utc), 2, 7.02, -74.003457, 40.72593, -73.919962, 40.765933, 'Credit', 20.9, 0.5, 5.35, 0.0, 26.75, '1705685161.48292', '/MjVgDzXLfe2dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 11, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 13, tzinfo=datetime.timezone.utc), 1, 12.81, -74.005742, 40.717547, -73.864888, 40.770392, 'Credit', 30.5, 0.0, 6.1, 0.0, 36.6, '1705685161.48292', 'lPt0sAaT5UCsRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 19, 53, tzinfo=datetime.timezone.utc), 1, 0.02, -73.422487, 41.156413, -73.42249, 41.156432, 'Credit', 194.0, 0.0, 38.8, 0.0, 232.8, '1705685161.48292', '0QkHBFZeeLLMLw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 18, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 18, 5, tzinfo=datetime.timezone.utc), 3, 0.43, -73.979997, 40.78101, -73.97733, 40.786087, 'Credit', 3.3, 1.0, 0.7, 0.0, 5.0, '1705685161.48292', 'Dthm/0AL+Jfn9A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 7, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 7, 52, tzinfo=datetime.timezone.utc), 5, 1.31, -73.972122, 40.757477, -73.983768, 40.740828, 'Credit', 5.3, 0.0, 0.7, 0.0, 6.0, '1705685161.48292', 'EY0GJthTooveYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 21, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 21, 53, tzinfo=datetime.timezone.utc), 1, 1.14, -73.972208, 40.75866, -73.981293, 40.74426, 'Credit', 5.3, 0.5, 0.7, 0.0, 6.5, '1705685161.48292', '7KYLa774kIN41Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 13, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 6, tzinfo=datetime.timezone.utc), 1, 1.04, -73.96599, 40.768285, -73.971135, 40.755943, 'Credit', 7.3, 0.0, 0.7, 0.0, 8.0, '1705685161.48292', '7B2n+2D8u+Xjhw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 47, tzinfo=datetime.timezone.utc), 2, 0.61, -73.99297, 40.76291, -73.985392, 40.758343, 'Credit', 7.3, 0.0, 0.7, 0.0, 8.0, '1705685161.48292', 'r6Py1LL75YPeeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 19, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 19, 43, tzinfo=datetime.timezone.utc), 1, 1.72, -73.972245, 40.752298, -73.990308, 40.766793, 'Credit', 9.3, 1.0, 0.7, 0.0, 11.0, '1705685161.48292', '05QpVXfKF1yt5g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 11, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 11, 18, tzinfo=datetime.timezone.utc), 1, 1.24, -73.96791, 40.75563, -73.982598, 40.747473, 'Credit', 6.1, 0.0, 0.7, 0.0, 6.8, '1705685161.48292', 'Nlx0IYIGjCikVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 22, 7, tzinfo=datetime.timezone.utc), 1, 1.15, -74.024338, 40.803338, -74.016603, 40.793932, 'Credit', 6.1, 0.5, 0.7, 0.0, 7.3, '1705685161.48292', 'zahZFoWeCqDYfw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 21, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 21, 14, tzinfo=datetime.timezone.utc), 1, 1.15, -73.993137, 40.748162, -74.0077, 40.742858, 'Credit', 6.9, 0.5, 0.7, 0.0, 8.1, '1705685161.48292', 'J7tFy7iXhHmQIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 12, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 12, 19, tzinfo=datetime.timezone.utc), 2, 1.08, -73.953975, 40.741767, -73.955307, 40.740105, 'Credit', 4.5, 0.0, 0.7, 0.0, 5.2, '1705685161.48292', '69Ckbey9t5GHZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 47, tzinfo=datetime.timezone.utc), 1, 0.92, -73.973532, 40.747962, -73.986188, 40.74655, 'Credit', 6.5, 0.5, 0.7, 0.0, 7.7, '1705685161.48292', 'yBk0gs3uNSxQRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 23, 20, tzinfo=datetime.timezone.utc), 5, 0.89, -73.98397, 40.73201, -73.988085, 40.722697, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685161.48292', 'gHutsXfMBYVdtQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 20, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 20, 15, tzinfo=datetime.timezone.utc), 1, 1.39, -73.970718, 40.751677, -73.962825, 40.768272, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685161.48292', 'wyEIAfwYGBxrvQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 22, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 22, 42, tzinfo=datetime.timezone.utc), 1, 1.64, -74.008365, 40.714178, -73.99789, 40.73581, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685161.48292', 'rPUfNmPtn7ja7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 22, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 36, tzinfo=datetime.timezone.utc), 5, 1.43, -73.997108, 40.747193, -73.98731, 40.736117, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685161.48292', 'RZC3fuvt0lIlRg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 1, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 1, 23, tzinfo=datetime.timezone.utc), 2, 1.84, -73.960698, 40.768572, -73.946965, 40.789113, 'Credit', 6.1, 0.5, 1.4, 0.0, 8.0, '1705685161.48292', 'Y6O296DRpR3ZAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 22, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 23, 11, tzinfo=datetime.timezone.utc), 1, 0.5, -74.005212, 40.71913, -73.959618, 40.769282, 'Credit', 14.1, 0.5, 1.4, 0.0, 16.0, '1705685161.48292', 'ajOIQhoGBgLqsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 20, 9, tzinfo=datetime.timezone.utc), 1, 1.6, -73.961777, 40.760287, -73.983233, 40.760915, 'Credit', 7.7, 0.0, 1.4, 0.0, 9.1, '1705685161.48292', 'ccPdbDMcuHBDWA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 18, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 18, 10, tzinfo=datetime.timezone.utc), 2, 1.45, -73.995918, 40.723477, -74.003317, 40.735417, 'Credit', 7.3, 0.0, 1.4, 0.0, 8.7, '1705685161.48292', 'OXgPK2tUXkhL0w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 9, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 9, 17, tzinfo=datetime.timezone.utc), 1, 1.72, -74.007542, 40.73815, -73.991092, 40.755552, 'Credit', 7.3, 0.0, 1.4, 0.0, 8.7, '1705685161.48292', '1YDNv0CHKRJu+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 21, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 21, 16, tzinfo=datetime.timezone.utc), 1, 2.21, -73.977438, 40.755713, -73.984775, 40.77667, 'Credit', 7.3, 0.5, 1.4, 0.0, 9.2, '1705685161.48292', 'Jty47yh9O/FKvg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 51, tzinfo=datetime.timezone.utc), 1, 1.71, -73.960995, 40.769992, -73.984832, 40.770223, 'Credit', 6.9, 0.5, 1.4, 0.0, 8.8, '1705685161.48292', 'L+P9BWABxiQEUg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 29, tzinfo=datetime.timezone.utc), 1, 4.57, -74.00209, 40.731375, -73.95313, 40.773903, 'Credit', 15.3, 0.5, 1.65, 0.0, 17.45, '1705685161.48292', '2y/FfcW3xYQDvw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 14, 18, tzinfo=datetime.timezone.utc), 1, 0.8, -73.977455, 40.742447, -73.975443, 40.737193, 'Credit', 4.1, 0.0, 1.9, 0.0, 6.0, '1705685161.48292', 'Bo5lrX6T3l4Wbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 17, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 17, 43, tzinfo=datetime.timezone.utc), 1, 0.09, -74.016268, 40.710188, -74.007688, 40.715497, 'Credit', 6.1, 1.0, 1.9, 0.0, 9.0, '1705685161.48292', 'sZw9P7L7Tn/cnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 6, tzinfo=datetime.timezone.utc), 1, 1.58, -73.976778, 40.775138, -73.986163, 40.757562, 'Credit', 8.1, 0.0, 1.9, 0.0, 10.0, '1705685161.48292', 'FyaDJn3WXkKTUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 18, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 7, tzinfo=datetime.timezone.utc), 2, 1.68, 0.0, 0.0, 0.0, 0.0, 'Credit', 8.1, 0.0, 1.9, 0.0, 10.0, '1705685161.48292', 'gaQLXOBu3NhrHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 14, 10, tzinfo=datetime.timezone.utc), 1, 1.14, -73.979195, 40.762028, -73.970732, 40.753015, 'Credit', 10.1, 0.0, 1.9, 0.0, 12.0, '1705685161.48292', 'ckR4MTLop5OeGA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 8, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 12, tzinfo=datetime.timezone.utc), 5, 2.37, -73.975785, 40.7638, -74.00318, 40.749102, 'Credit', 10.1, 0.0, 1.9, 0.0, 12.0, '1705685161.48292', 'BuLY/VtYORRgLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 51, tzinfo=datetime.timezone.utc), 5, 7.0, -74.01549, 40.71138, -73.967905, 40.792988, 'Credit', 20.1, 0.0, 1.9, 0.0, 22.0, '1705685161.48292', 'nvKUEJnmifBMpA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 3, tzinfo=datetime.timezone.utc), 2, 19.51, -73.776867, 40.645012, -73.993908, 40.695617, 'Credit', 43.3, 0.5, 10.95, 0.0, 54.75, '1705685161.48292', 'jtzLv2/rKZRf5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 17, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 52, tzinfo=datetime.timezone.utc), 5, 4.6, -74.006173, 40.70584, -73.99489, 40.75299, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685161.48292', 'UTC6Xfdup09oYg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 20, tzinfo=datetime.timezone.utc), 1, 4.51, -73.981632, 40.746628, -73.959203, 40.799123, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685161.48292', 'B3kMOrk+JrbCnw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 32, tzinfo=datetime.timezone.utc), 1, 1.89, -73.961143, 40.765818, -73.98229, 40.752228, 'Credit', 14.9, 1.0, 3.18, 0.0, 19.08, '1705685161.48292', 'znmCyfG/1urefA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 21, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 21, 40, tzinfo=datetime.timezone.utc), 2, 7.45, -73.984307, 40.770373, -73.977703, 40.685085, 'Credit', 21.3, 0.5, 4.36, 0.0, 26.16, '1705685161.48292', 'NaCv8alWWyHTiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 2, 20, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 2, 47, tzinfo=datetime.timezone.utc), 1, 8.1, -74.00529, 40.74028, -73.909588, 40.777025, 'Credit', 21.3, 0.5, 4.36, 0.0, 26.16, '1705685161.48292', '74QnV5vSt+2Z5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 18, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 19, 15, tzinfo=datetime.timezone.utc), 3, 4.82, -73.962827, 40.778258, -73.997162, 40.722367, 'Credit', 29.3, 0.0, 5.86, 0.0, 35.16, '1705685161.48292', 'Pzup78JKutEeqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 14, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 15, 22, tzinfo=datetime.timezone.utc), 3, 9.66, -73.983152, 40.765467, -73.87161, 40.774313, 'Credit', 29.3, 0.0, 5.86, 4.15, 39.31, '1705685161.48292', 'B3IzpnPi33wrUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 3, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 18, tzinfo=datetime.timezone.utc), 3, 12.29, -73.94928, 40.711072, -73.913497, 40.763193, 'Credit', 31.3, 0.5, 6.36, 0.0, 38.16, '1705685161.48292', 'ee4OubWFd48x1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 14, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 15, 26, tzinfo=datetime.timezone.utc), 1, 12.97, -73.98077, 40.757403, -73.896847, 40.669188, 'Credit', 39.3, 0.0, 7.86, 0.0, 47.16, '1705685161.48292', 'dwiGZQWPPkjCCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 4, 18, 5, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 18, 20, 57, tzinfo=datetime.timezone.utc), 1, 3.3, -73.959411, 40.783021, -73.961051, 40.780029, 'Credit', 11.3, 0.0, 1.84, 0.0, 13.14, '1705685161.48292', 'v+nd7tqo66jtKg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 20, 3, tzinfo=datetime.timezone.utc), 1, 4.03, -73.989798, 40.757712, -73.983238, 40.72197, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685161.48292', 'VWEXV4n9KFkbgQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 16, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 5, tzinfo=datetime.timezone.utc), 3, 3.28, -73.960253, 40.778857, -73.974185, 40.765235, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685161.48292', 'J7uGgkVyA+O42w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 15, 39, tzinfo=datetime.timezone.utc), 1, 4.28, -73.995618, 40.724395, -73.965743, 40.67486, 'Credit', 15.3, 0.0, 3.06, 0.0, 18.36, '1705685161.48292', 'lK+nS0kNyYIN8A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 1, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 2, 7, tzinfo=datetime.timezone.utc), 2, 5.87, -73.984522, 40.767562, -74.016477, 40.704977, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685161.48292', 'JDGOAFrYtB9RkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 23, 24, tzinfo=datetime.timezone.utc), 1, 6.05, -73.98535, 40.749738, -73.978617, 40.679208, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685161.48292', 'S1gjTPHcbMyI9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 20, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 21, 21, tzinfo=datetime.timezone.utc), 1, 4.09, -73.994943, 40.725968, -73.980633, 40.761958, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685161.48292', 'f/rLWDCBwkD/aw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 0, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 1, 13, tzinfo=datetime.timezone.utc), 1, 6.0, -73.988498, 40.763882, -73.918218, 40.774358, 'Credit', 17.3, 0.5, 3.56, 0.0, 21.36, '1705685161.48292', 'M7I9JWZ4lSk3Pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 23, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 23, 33, tzinfo=datetime.timezone.utc), 1, 5.97, -73.994673, 40.72659, -73.924963, 40.745362, 'Credit', 20.1, 0.5, 4.12, 0.0, 24.72, '1705685161.48292', 'nh67+52RyC0puQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 5, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 5, 29, tzinfo=datetime.timezone.utc), 2, 8.92, -73.987923, 40.722652, -73.854965, 40.732143, 'Credit', 20.1, 0.5, 4.12, 0.0, 24.72, '1705685161.48292', 'mIwtoLvTaIsYDg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 13, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 14, 12, tzinfo=datetime.timezone.utc), 2, 10.85, -73.86272, 40.768983, -74.00425, 40.72186, 'Credit', 28.1, 0.0, 5.62, 0.0, 33.72, '1705685161.48292', 'gjvlBK20BSvLSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 10, tzinfo=datetime.timezone.utc), 5, 9.81, -73.977465, 40.772735, -73.905455, 40.88744, 'Credit', 24.5, 1.0, 6.37, 1.9, 33.77, '1705685161.48292', 'J3A4PqEOztWVWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 46, tzinfo=datetime.timezone.utc), 2, 1.89, -73.986673, 40.71592, -73.99339, 40.735063, 'Credit', 8.1, 0.5, 0.02, 0.0, 8.62, '1705685161.48292', 'F3CneBNN5bmypA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 16, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 16, 58, tzinfo=datetime.timezone.utc), 1, 3.58, -73.986795, 40.764308, -73.967892, 40.772837, 'Credit', 25.7, 1.0, 8.01, 0.0, 34.71, '1705685161.48292', '68rcz134nprUAg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 14, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 1, tzinfo=datetime.timezone.utc), 2, 6.0, -73.98024, 40.759312, -74.005678, 40.706112, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685161.48292', 'MAGkAPE8f65UfQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 9, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 9, 41, tzinfo=datetime.timezone.utc), 2, 7.43, -73.961255, 40.796405, -74.01005, 40.72099, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685161.48292', '3sSqQaDx/qBOfA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 14, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 14, 50, tzinfo=datetime.timezone.utc), 1, 4.21, -73.969082, 40.79862, -73.977355, 40.75011, 'Credit', 19.7, 0.0, 3.94, 0.0, 23.64, '1705685161.48292', 'TmPeOwlYhNtsyQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 17, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 17, 36, tzinfo=datetime.timezone.utc), 2, 5.66, -73.98034, 40.771422, -73.988625, 40.71949, 'Credit', 20.9, 1.0, 4.38, 0.0, 26.28, '1705685161.48292', 'RnDGbrLy10irmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 11, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 11, 35, tzinfo=datetime.timezone.utc), 1, 10.34, -73.87443, 40.774058, -73.980483, 40.766387, 'Credit', 26.9, 0.0, 5.38, 5.0, 37.28, '1705685161.48292', 'dZR7kIp9s0LoVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 1, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 1, 37, tzinfo=datetime.timezone.utc), 2, 12.4, -73.985703, 40.674245, -73.974457, 40.78845, 'Credit', 28.9, 0.5, 5.88, 0.0, 35.28, '1705685161.48292', 'Zv27v4vnhcbOaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 22, 29, tzinfo=datetime.timezone.utc), 1, 12.06, -73.97528, 40.752647, -74.021418, 40.632668, 'Credit', 29.3, 0.5, 5.88, 0.0, 35.68, '1705685161.48292', 'HgPoMdVQs4kJkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 4, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 5, 19, tzinfo=datetime.timezone.utc), 1, 10.58, -73.987215, 40.759275, -73.873227, 40.774307, 'Credit', 24.1, 0.5, 7.38, 0.0, 31.98, '1705685161.48292', 'u3Nbcid6eZXv9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 8, 8, 58, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 6, 39, tzinfo=datetime.timezone.utc), 1, 1.2, -73.993386, 40.733274, -73.982439, 40.745537, 'Credit', 6.1, 0.0, 1.22, 0.0, 7.32, '1705685161.48292', 'd3qZrCCFaA/xXQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 26, 4, 55, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 5, 5, 52, tzinfo=datetime.timezone.utc), 1, 2.8, -73.984441, 40.728727, -73.984412, 40.759028, 'Credit', 9.3, 0.0, 1.47, 0.0, 10.77, '1705685161.48292', 'PlSE3ETjtwtgkg', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 22, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 23, 14, tzinfo=datetime.timezone.utc), 1, 6.06, -73.947993, 40.78278, -73.98821, 40.720095, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685161.48292', '1Q26gNwMLW6iMw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 22, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 22, 19, tzinfo=datetime.timezone.utc), 1, 6.21, -73.977655, 40.75089, -73.883733, 40.722383, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685161.48292', 'lwjyFEs9uJBJ+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 5, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 5, 53, tzinfo=datetime.timezone.utc), 1, 5.93, -73.998002, 40.740928, -73.998063, 40.682248, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685161.48292', 'vHsMitjpSTgJQA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 23, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 23, 54, tzinfo=datetime.timezone.utc), 5, 5.94, -73.97999, 40.714003, -74.002997, 40.74951, 'Credit', 16.1, 0.5, 3.32, 0.0, 19.92, '1705685161.48292', 'aNjnaVRuvPya+w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 19, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 19, 51, tzinfo=datetime.timezone.utc), 2, 7.42, -73.862733, 40.769037, -73.807545, 40.700117, 'Credit', 18.1, 1.0, 3.82, 0.0, 22.92, '1705685161.48292', 'ZgTVhoS5XAu76Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 9, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 22, tzinfo=datetime.timezone.utc), 1, 9.85, -73.872418, 40.773905, -73.999573, 40.719517, 'Credit', 25.7, 0.0, 5.14, 0.0, 30.84, '1705685161.48292', 'JIxbiSn/vQRUhA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 0, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 0, 27, tzinfo=datetime.timezone.utc), 1, 17.4, -73.968753, 40.754633, -73.74429, 40.668085, 'Credit', 37.7, 0.5, 9.55, 4.15, 51.9, '1705685161.48292', '6ujjRvBbSXzwUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 1, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 1, 49, tzinfo=datetime.timezone.utc), 1, 6.5, -73.98845, 40.722985, -73.981288, 40.675195, 'Credit', 17.3, 0.5, 2.2, 0.0, 20.0, '1705685161.48292', 'FBceSdSyd9qNYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 23, 0, tzinfo=datetime.timezone.utc), 1, 7.13, -74.014335, 40.714508, -73.961545, 40.762758, 'Credit', 17.3, 0.5, 2.2, 0.0, 20.0, '1705685161.48292', 'KW/9jRm7hvSJdQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 23, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 23, 46, tzinfo=datetime.timezone.utc), 1, 3.69, -74.004663, 40.715357, -74.00061, 40.67754, 'Credit', 10.5, 0.5, 2.2, 4.15, 17.35, '1705685161.48292', '9CVtwWuUeSGjJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 22, 22, tzinfo=datetime.timezone.utc), 1, 4.36, -73.989122, 40.776777, -74.001558, 40.724363, 'Credit', 12.9, 0.5, 3.2, 0.0, 16.6, '1705685161.48292', '1kKd+rwndhKfmQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 12, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 12, 48, tzinfo=datetime.timezone.utc), 5, 5.91, -73.983668, 40.738305, -73.980413, 40.663803, 'Credit', 18.5, 0.0, 3.7, 0.0, 22.2, '1705685161.48292', '2kQV6vVQZmKKAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 9, tzinfo=datetime.timezone.utc), 5, 0.55, -73.981897, 40.768528, -73.985445, 40.765347, 'Credit', 3.7, 0.0, 3.7, 0.0, 7.4, '1705685161.48292', 'cP+hBtAQAqeePQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 9, 21, tzinfo=datetime.timezone.utc), 1, 9.27, -73.95434, 40.765735, -73.861235, 40.767943, 'Credit', 21.7, 0.0, 4.15, 4.15, 30.0, '1705685161.48292', '8PRg/GEN1qseww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 21, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 21, 35, tzinfo=datetime.timezone.utc), 1, 5.55, -74.0432, 40.762925, -74.053097, 40.75297, 'Credit', 16.1, 0.5, 4.15, 0.0, 20.75, '1705685161.48292', '9zN+f5Dgn2wnQg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 1, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 1, 53, tzinfo=datetime.timezone.utc), 5, 7.16, -73.986507, 40.721917, -73.878472, 40.742492, 'Credit', 18.1, 0.5, 4.65, 0.0, 23.25, '1705685161.48292', 'irVMjwPvebn4mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 59, tzinfo=datetime.timezone.utc), 6, 10.88, -74.003935, 40.74789, -73.861705, 40.768375, 'Credit', 30.1, 0.0, 4.9, 5.0, 40.0, '1705685161.48292', '9NHyaQphMuDAPQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 20, 16, tzinfo=datetime.timezone.utc), 3, 10.01, -73.871015, 40.773733, -74.001872, 40.71702, 'Credit', 24.5, 0.0, 4.9, 0.0, 29.4, '1705685161.48292', 'UKFzfaRSd4EhVg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 8, 40, tzinfo=datetime.timezone.utc), 1, 9.37, -73.97897, 40.77212, -73.885437, 40.773152, 'Credit', 24.5, 0.0, 4.9, 4.15, 33.55, '1705685161.48292', 'bCTloabhcOcZ1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 0, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 1, 15, tzinfo=datetime.timezone.utc), 2, 6.65, -74.008432, 40.749845, -73.939418, 40.694967, 'Credit', 20.1, 0.5, 5.15, 0.0, 25.75, '1705685161.48292', 'xPm8Mfcapr3wIA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 2, tzinfo=datetime.timezone.utc), 1, 6.63, -74.004003, 40.707595, -73.920077, 40.696265, 'Credit', 20.1, 0.5, 5.15, 0.0, 25.75, '1705685161.48292', 'mC6D3Fp1LEsIEw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 2, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 3, 6, tzinfo=datetime.timezone.utc), 1, 10.72, -74.002658, 40.739865, -73.922808, 40.868208, 'Credit', 26.5, 0.5, 5.4, 0.0, 32.4, '1705685161.48292', 'PmZ2MZupHaUNWQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 3, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 3, 57, tzinfo=datetime.timezone.utc), 1, 3.31, -74.007288, 40.740062, -73.983042, 40.756172, 'Credit', 12.5, 0.5, 0.1, 0.0, 13.1, '1705685161.48292', '3QrtoOi2ER8iuw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 15, tzinfo=datetime.timezone.utc), 2, 2.18, -73.992178, 40.759032, -74.000617, 40.728905, 'Credit', 8.1, 0.5, 0.4, 0.0, 9.0, '1705685161.48292', 'AcEjakOqdef84w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 10, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 10, 13, tzinfo=datetime.timezone.utc), 1, 0.73, -73.96223, 40.77623, -73.954715, 40.784053, 'Credit', 3.7, 0.0, 0.4, 0.0, 4.1, '1705685161.48292', 'myfcJAomdDNKIw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 10, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 11, 7, tzinfo=datetime.timezone.utc), 1, 0.56, -73.976997, 40.757057, -73.974602, 40.753493, 'Credit', 5.3, 0.0, 0.55, 0.0, 5.85, '1705685161.48292', 'lW/kuTyZT16Sdw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 15, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 15, 8, tzinfo=datetime.timezone.utc), 1, 0.42, -73.981973, 40.768867, -73.977592, 40.764208, 'Credit', 3.7, 0.0, 0.8, 0.0, 4.5, '1705685161.48292', 'o43PWWGfdJ8YVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 21, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 21, 41, tzinfo=datetime.timezone.utc), 5, 0.55, -73.962723, 40.770525, -73.965082, 40.775247, 'Credit', 3.7, 0.5, 0.8, 0.0, 5.0, '1705685161.48292', 'hZqvWJTkCRYPdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 19, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 19, 45, tzinfo=datetime.timezone.utc), 5, 1.25, -73.965228, 40.768995, -73.949412, 40.773522, 'Credit', 5.7, 0.0, 0.8, 0.0, 6.5, '1705685161.48292', 'bLAtvs5UkjOoCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 17, tzinfo=datetime.timezone.utc), 2, 0.74, -73.976317, 40.759478, -73.971133, 40.754827, 'Credit', 5.7, 0.5, 0.8, 0.0, 7.0, '1705685161.48292', 'ALGLfXkQeiT9tQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 8, 41, tzinfo=datetime.timezone.utc), 1, 1.7, -73.958228, 40.77891, -73.973625, 40.757882, 'Credit', 7.7, 0.0, 0.8, 0.0, 8.5, '1705685161.48292', 'SPNnjSOY3v1wRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 20, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 21, 2, tzinfo=datetime.timezone.utc), 2, 2.1, -73.961072, 40.760758, -73.97823, 40.745865, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685161.48292', 'kVo2CitUK57Wcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 22, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 22, 50, tzinfo=datetime.timezone.utc), 5, 2.01, -73.987642, 40.746235, -73.974773, 40.732927, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685161.48292', 'BrFRDVKSqWqmkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 2, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 42, tzinfo=datetime.timezone.utc), 3, 1.77, -74.006445, 40.73935, -73.993217, 40.727712, 'Credit', 7.7, 0.5, 0.8, 0.0, 9.0, '1705685161.48292', '2E0VcZ2K//HC0g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 1, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 1, 59, tzinfo=datetime.timezone.utc), 1, 3.34, -73.99685, 40.760105, -73.955945, 40.767515, 'Credit', 17.7, 0.5, 0.8, 0.0, 19.0, '1705685161.48292', 'ZvOtVrEC06rkLg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 8, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 8, 33, tzinfo=datetime.timezone.utc), 1, 1.52, -73.983367, 40.738845, -73.999983, 40.730352, 'Credit', 6.5, 0.0, 0.8, 0.0, 7.3, '1705685161.48292', 'MYNd56SaWs7dbg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 20, 30, tzinfo=datetime.timezone.utc), 1, 1.31, -74.010587, 40.709173, -73.999312, 40.724893, 'Credit', 6.1, 0.5, 0.8, 0.0, 7.4, '1705685161.48292', 'uplRdZPo0fygyA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 7, 24, tzinfo=datetime.timezone.utc), 1, 1.21, -73.978985, 40.744633, -73.971978, 40.759108, 'Credit', 4.9, 0.0, 0.8, 0.0, 5.7, '1705685161.48292', '6wdqAyvblMwlUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 11, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 11, 30, tzinfo=datetime.timezone.utc), 1, 1.13, -74.002227, 40.726258, -74.01017, 40.714288, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'ugChg8pmEGXcMg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 56, tzinfo=datetime.timezone.utc), 1, 1.02, -73.983087, 40.777492, -73.987358, 40.764463, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'lOLggTg9BYeTww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 11, 42, tzinfo=datetime.timezone.utc), 1, 0.63, -73.992957, 40.763045, -73.982845, 40.75919, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'ukdvtN0Oih+ohw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 6, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 6, 32, tzinfo=datetime.timezone.utc), 1, 1.17, -73.947362, 40.78441, -73.950895, 40.770958, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'jhuuvuR0Gwb1Zw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 14, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 14, 33, tzinfo=datetime.timezone.utc), 3, 0.91, -73.997023, 40.752532, -74.004997, 40.741093, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'eD5HgO1a5IB4wA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 13, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 13, 22, tzinfo=datetime.timezone.utc), 1, 0.88, -74.001647, 40.762042, -74.001098, 40.765265, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'HpS7AVhIHqOdCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 13, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 14, 4, tzinfo=datetime.timezone.utc), 5, 1.16, -73.971227, 40.787752, -73.978772, 40.774302, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', '9ZpyfKD3QyhQKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 19, 16, tzinfo=datetime.timezone.utc), 1, 1.17, -73.96036, 40.761612, -73.949785, 40.776347, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', 'OFbLQn2tm8CLeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 59, tzinfo=datetime.timezone.utc), 5, 1.06, -74.007263, 40.727607, -74.00408, 40.715887, 'Credit', 4.9, 0.0, 1.1, 0.0, 6.0, '1705685161.48292', '5PHFX7NLL62ZFw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 9, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 10, 4, tzinfo=datetime.timezone.utc), 1, 1.71, -73.998055, 40.736102, -73.999695, 40.75379, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685161.48292', '4njfImiHSXNYyw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 14, 20, tzinfo=datetime.timezone.utc), 1, 2.05, -74.007833, 40.723387, -73.994722, 40.750607, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685161.48292', '47In0fUW9962mg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 8, 30, tzinfo=datetime.timezone.utc), 1, 1.05, -73.981118, 40.747328, -73.984568, 40.735477, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685161.48292', 'CmYmDbAlkWKMJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 49, tzinfo=datetime.timezone.utc), 1, 1.32, -73.985248, 40.735793, -73.977068, 40.7518, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685161.48292', 'iBQdCsUgnA95AA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 43, tzinfo=datetime.timezone.utc), 1, 1.73, -73.95517, 40.780115, -73.977555, 40.777763, 'Credit', 6.9, 0.0, 1.1, 0.0, 8.0, '1705685161.48292', '9vMpAhKr+JKRwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 9, 44, tzinfo=datetime.timezone.utc), 1, 1.69, -74.006333, 40.723135, -74.008857, 40.704567, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685161.48292', 'Hfl6zaTCNYNUiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 16, 7, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 16, 20, tzinfo=datetime.timezone.utc), 5, 2.22, -73.976707, 40.788223, -73.950988, 40.769772, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685161.48292', 'xDH1+X+6O591Kw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 15, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.8, -74.000785, 40.710395, -73.983753, 40.729907, 'Credit', 8.9, 0.0, 1.1, 0.0, 10.0, '1705685161.48292', 'NGGdQIw7GkiWUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 22, 52, tzinfo=datetime.timezone.utc), 1, 2.24, -73.960927, 40.768962, -73.984537, 40.78226, 'Credit', 8.9, 0.5, 1.1, 0.0, 10.5, '1705685161.48292', 'roaJp1enKJLcHg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 32, tzinfo=datetime.timezone.utc), 1, 1.92, -73.966495, 40.74912, -73.967392, 40.755538, 'Credit', 10.9, 0.0, 1.1, 0.0, 12.0, '1705685161.48292', 'ec9NnQs8sPSl/g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 18, 53, tzinfo=datetime.timezone.utc), 1, 3.35, -73.9603, 40.817782, -73.959655, 40.781138, 'Credit', 10.9, 1.0, 1.1, 0.0, 13.0, '1705685161.48292', 'qeVOhp5/beDCBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 16, tzinfo=datetime.timezone.utc), 1, 3.6, -73.988835, 40.753675, -73.950872, 40.783255, 'Credit', 12.9, 0.0, 1.1, 0.0, 14.0, '1705685161.48292', 'EW01BtoR9HzdHw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 15, 36, tzinfo=datetime.timezone.utc), 5, 5.64, -74.007653, 40.705087, -73.959698, 40.761753, 'Credit', 14.9, 0.0, 1.1, 0.0, 16.0, '1705685161.48292', 'GdEdfCDmVcjvOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 1, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 1, 58, tzinfo=datetime.timezone.utc), 1, 3.61, -74.003635, 40.722288, -73.961467, 40.755247, 'Credit', 10.5, 0.5, 1.1, 0.0, 12.1, '1705685161.48292', 'hFmy6YcbXqyfYw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 10, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 10, 42, tzinfo=datetime.timezone.utc), 1, 0.62, -73.981562, 40.732807, -73.990695, 40.736612, 'Credit', 4.5, 0.0, 1.1, 0.0, 5.6, '1705685161.48292', 'qU+g10ekDrbo8g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 19, 20, tzinfo=datetime.timezone.utc), 1, 2.31, -73.97999, 40.730322, -73.96327, 40.757977, 'Credit', 7.7, 1.0, 1.1, 0.0, 9.8, '1705685161.48292', 'ai/TxpfKQTPRUQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 22, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 22, 16, tzinfo=datetime.timezone.utc), 1, 0.97, -73.980513, 40.775055, -73.978547, 40.781017, 'Credit', 4.9, 0.5, 1.6, 0.0, 7.0, '1705685161.48292', 'jMWdx78sldNw7w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 4, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 4, 46, tzinfo=datetime.timezone.utc), 2, 1.65, -74.003843, 40.746002, -74.004253, 40.72324, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685161.48292', 'f/knV1rMs+29fA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 21, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 21, 11, tzinfo=datetime.timezone.utc), 1, 1.43, -73.994242, 40.731318, -73.981752, 40.746317, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685161.48292', '2UE2EiDt8qZCkQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 20, tzinfo=datetime.timezone.utc), 3, 1.61, -73.983258, 40.755868, -73.982183, 40.774728, 'Credit', 6.9, 0.5, 1.6, 0.0, 9.0, '1705685161.48292', 'HOwW87DZYraDVA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 21, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 21, 14, tzinfo=datetime.timezone.utc), 1, 2.56, -74.008173, 40.74522, -74.006277, 40.715615, 'Credit', 8.9, 0.5, 1.6, 0.0, 11.0, '1705685161.48292', '4BQ9BpcgU9tNRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 21, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 21, 50, tzinfo=datetime.timezone.utc), 1, 4.92, -73.975007, 40.787298, -74.002727, 40.734192, 'Credit', 14.9, 0.5, 1.6, 0.0, 17.0, '1705685161.48292', 'toYMZKdcFhibwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 23, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 23, 19, tzinfo=datetime.timezone.utc), 5, 4.85, -74.003825, 40.729225, -73.98284, 40.78141, 'Credit', 14.9, 0.5, 1.6, 0.0, 17.0, '1705685161.48292', 'tuwSqki6D9boCA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 20, 17, tzinfo=datetime.timezone.utc), 1, 5.06, -73.975182, 40.763508, -74.009833, 40.718682, 'Credit', 16.9, 1.0, 1.6, 0.0, 19.5, '1705685161.48292', 'iXT4VoCTY/bxtg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 10, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 10, 36, tzinfo=datetime.timezone.utc), 1, 2.7, 0.0, 0.0, 0.0, 0.0, 'Credit', 8.5, 0.0, 1.6, 0.0, 10.1, '1705685161.48292', 'wb+r+AbrF4D1yg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 12, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 12, 58, tzinfo=datetime.timezone.utc), 1, 1.63, -73.987802, 40.744012, -73.97253, 40.756988, 'Credit', 8.5, 0.0, 1.6, 0.0, 10.1, '1705685161.48292', 'jWIwP2hcCrImIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 15, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 15, 24, tzinfo=datetime.timezone.utc), 1, 1.6, -73.962163, 40.773352, -73.978742, 40.77712, 'Credit', 8.1, 0.0, 1.6, 0.0, 9.7, '1705685161.48292', '44dnDF/2ioqAJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 22, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 23, 23, 5, tzinfo=datetime.timezone.utc), 1, 1.85, -73.987407, 40.741653, -73.986817, 40.760515, 'Credit', 8.1, 0.5, 1.6, 0.0, 10.2, '1705685161.48292', 'tuEs7vD2Nf8JXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), 1, 1.59, -73.982292, 40.768288, -73.978717, 40.785428, 'Credit', 7.7, 0.0, 1.6, 0.0, 9.3, '1705685161.48292', 'ApLlPxfVvX6OKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 23, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 0, 3, tzinfo=datetime.timezone.utc), 5, 2.05, -73.980972, 40.744475, -73.983035, 40.722593, 'Credit', 7.7, 0.5, 1.6, 0.0, 9.8, '1705685161.48292', 'vtzSDHvIoGMe1g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 21, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 21, 54, tzinfo=datetime.timezone.utc), 1, 2.25, -73.994365, 40.752743, -73.981115, 40.77938, 'Credit', 7.7, 0.5, 1.6, 0.0, 9.8, '1705685161.48292', 'TOOykXle7V/rqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 21, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 21, 35, tzinfo=datetime.timezone.utc), 1, 1.8, -73.983725, 40.757318, -73.988652, 40.774037, 'Credit', 7.3, 0.5, 1.6, 0.0, 9.4, '1705685161.48292', 'CfcyMhMtHa33Ig', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 10, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 27, tzinfo=datetime.timezone.utc), 1, 3.23, -73.961353, 40.777513, -73.97699, 40.741518, 'Credit', 12.1, 0.0, 1.85, 0.0, 13.95, '1705685161.48292', 'n/HHhwcpQeUC9Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 37, tzinfo=datetime.timezone.utc), 1, 16.64, -73.9872, 40.739605, -74.177363, 40.69506, 'Credit', 52.3, 0.0, 13.07, 8.0, 73.37, '1705685161.48292', 'Sf+OteuRumT1dg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 2, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 2, 52, tzinfo=datetime.timezone.utc), 2, 4.96, -74.005762, 40.736393, -73.954113, 40.781432, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685161.48292', 'l6Ee+3TTXXJalw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 0, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 0, 46, tzinfo=datetime.timezone.utc), 1, 5.27, -74.015663, 40.711165, -73.970998, 40.683845, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685161.48292', 'xc1KPm1KNjkfJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 20, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 21, 12, tzinfo=datetime.timezone.utc), 1, 4.67, -73.876785, 40.778372, -73.959038, 40.763765, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685161.48292', 'owqMAK4U+evj0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 1, 41, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 1, 54, tzinfo=datetime.timezone.utc), 1, 0.57, -73.983605, 40.725947, -73.948272, 40.788985, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685161.48292', 'goafUgc4YXyvHA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 22, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 22, 40, tzinfo=datetime.timezone.utc), 2, 4.91, -73.981922, 40.768917, -74.014132, 40.71697, 'Credit', 14.9, 0.5, 3.08, 0.0, 18.48, '1705685161.48292', 'eIIx3KNlRmVmNw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 18, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 7, tzinfo=datetime.timezone.utc), 5, 5.65, -73.944687, 40.787502, -73.998473, 40.745325, 'Credit', 16.9, 1.0, 3.58, 0.0, 21.48, '1705685161.48292', 'pH8lw4jqxDUv6g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 19, 54, tzinfo=datetime.timezone.utc), 2, 4.29, -73.968233, 40.767963, -74.00961, 40.726017, 'Credit', 16.9, 1.0, 3.58, 0.0, 21.48, '1705685161.48292', 'WSq0LcCwbJKDag', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 18, tzinfo=datetime.timezone.utc), 1, 9.08, -73.865798, 40.770625, -73.951588, 40.770232, 'Credit', 23.3, 0.0, 4.66, 4.15, 32.11, '1705685161.48292', 'nUrM8JESzFWwgw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 9, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 9, 52, tzinfo=datetime.timezone.utc), 1, 9.45, -73.9552, 40.780097, -73.971385, 40.695588, 'Credit', 23.3, 0.0, 4.66, 0.0, 27.96, '1705685161.48292', 'WcDnBJFSlUyhng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 14, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 14, 55, tzinfo=datetime.timezone.utc), 5, 8.03, -73.993763, 40.740617, -73.973755, 40.656293, 'Credit', 23.3, 0.0, 4.66, 0.0, 27.96, '1705685161.48292', 'qmyv0RGE/MWLFQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 0, 59, tzinfo=datetime.timezone.utc), 1, 11.11, -73.990037, 40.757057, -73.90593, 40.887513, 'Credit', 25.3, 0.5, 5.16, 2.75, 33.71, '1705685161.48292', '6btDfpklFiAA5Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 23, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 23, 30, tzinfo=datetime.timezone.utc), 1, 9.82, -73.984793, 40.736835, -73.974737, 40.648182, 'Credit', 25.3, 0.5, 5.16, 0.0, 30.96, '1705685161.48292', 'rJEpZWQW1X9Oeg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 16, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 17, 50, tzinfo=datetime.timezone.utc), 1, 13.79, -73.874622, 40.774185, -73.883128, 40.87067, 'Credit', 55.3, 1.0, 16.89, 4.15, 77.34, '1705685161.48292', '+ckB02wxEtmkKQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 7, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 8, 10, tzinfo=datetime.timezone.utc), 5, 6.13, -73.945903, 40.773522, -74.006653, 40.728715, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'cAz5Hvnfd3oREw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 18, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 19, 4, tzinfo=datetime.timezone.utc), 5, 6.13, -73.983068, 40.73076, -73.995972, 40.684542, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'UZzU0GxrkO5lAw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 14, 40, tzinfo=datetime.timezone.utc), 2, 4.44, -73.984013, 40.73765, -73.96931, 40.689502, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'dnQz2mBNSvnQsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 11, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 12, 18, tzinfo=datetime.timezone.utc), 1, 5.54, -74.004468, 40.721843, -73.978583, 40.783162, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'DLEc+UFaT8l40Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 13, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 41, tzinfo=datetime.timezone.utc), 1, 4.67, 0.0, 0.0, 0.0, 0.0, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'ngh5f5Mf9vkZBw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 12, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 13, 2, tzinfo=datetime.timezone.utc), 1, 4.78, -73.962002, 40.810832, -73.981825, 40.756372, 'Credit', 17.3, 0.0, 3.46, 0.0, 20.76, '1705685161.48292', 'yjrGD1QlhSNxrQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 0, 42, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 1, 1, tzinfo=datetime.timezone.utc), 1, 7.57, -73.870872, 40.773682, -73.95045, 40.79518, 'Credit', 19.3, 0.5, 3.96, 4.15, 27.91, '1705685161.48292', '6f/D116HRGLuiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 10, tzinfo=datetime.timezone.utc), 1, 4.97, -73.993023, 40.762767, -73.961203, 40.811028, 'Credit', 15.7, 1.0, 4.17, 0.0, 20.87, '1705685161.48292', '/bQfLE7j+mxaqA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 11, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 11, 27, tzinfo=datetime.timezone.utc), 1, 7.99, -73.99119, 40.697038, -73.967865, 40.763578, 'Credit', 22.1, 0.0, 4.42, 0.0, 26.52, '1705685161.48292', 'Bab0sNGqfn7YGg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 7, 45, tzinfo=datetime.timezone.utc), 1, 8.59, -73.978915, 40.749355, -73.873105, 40.774387, 'Credit', 22.1, 0.0, 4.42, 4.15, 30.67, '1705685161.48292', 'a3h+Qb+4N3OtoA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 20, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 20, 51, tzinfo=datetime.timezone.utc), 5, 10.04, -73.86345, 40.769622, -73.99259, 40.737615, 'Credit', 24.1, 0.5, 4.92, 4.15, 33.67, '1705685161.48292', 'S79x9cnktwAiyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 15, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 16, 7, tzinfo=datetime.timezone.utc), 1, 9.03, -73.983032, 40.742112, -73.872293, 40.774497, 'Credit', 21.7, 0.0, 5.42, 0.0, 27.12, '1705685161.48292', 'zIZsax2edRc6Jw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 13, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 13, 22, tzinfo=datetime.timezone.utc), 1, 10.03, -73.885467, 40.773123, -73.930003, 40.866107, 'Credit', 23.7, 0.0, 5.92, 4.15, 33.77, '1705685161.48292', 'nOBZhmpwHkxGJw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 12, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 13, 19, tzinfo=datetime.timezone.utc), 1, 10.05, -73.874542, 40.773947, -74.0056, 40.746285, 'Credit', 25.7, 0.0, 6.42, 4.15, 36.27, '1705685161.48292', 'wwddVfA1f/G2+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 13, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 14, 20, tzinfo=datetime.timezone.utc), 1, 11.53, -73.902217, 40.742863, -73.91662, 40.760453, 'Credit', 27.7, 0.0, 6.92, 5.0, 39.62, '1705685161.48292', 'f/SzSWonpwe7dQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 10, 18, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 11, 0, tzinfo=datetime.timezone.utc), 2, 17.43, -73.776707, 40.645367, -73.968602, 40.76443, 'Credit', 45.0, 0.0, 11.11, 4.15, 60.26, '1705685161.48292', 'SnnQ0qjmqhnrmg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 16, 45, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 17, 10, tzinfo=datetime.timezone.utc), 2, 3.58, -74.011988, 40.714055, -73.986683, 40.742615, 'Credit', 15.7, 1.0, 3.34, 0.0, 20.04, '1705685161.48292', 'zvjiwJ9yVW2zrg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 12, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 13, 39, tzinfo=datetime.timezone.utc), 1, 5.06, -73.980807, 40.780003, -73.99362, 40.724438, 'Credit', 20.9, 0.0, 4.18, 0.0, 25.08, '1705685161.48292', 'X+cB+gq3WXzqlw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 30, tzinfo=datetime.timezone.utc), 1, 7.21, -73.99428, 40.69468, -73.974812, 40.75634, 'Credit', 20.9, 0.0, 4.18, 0.0, 25.08, '1705685161.48292', 'y6mdSBfQRk8c+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 22, 35, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 23, 0, tzinfo=datetime.timezone.utc), 1, 8.78, -73.870633, 40.773513, -73.969565, 40.800322, 'Credit', 22.9, 0.5, 4.68, 4.15, 32.23, '1705685161.48292', '3eKEYB7Uow8osQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 18, 37, tzinfo=datetime.timezone.utc), 1, 9.75, -73.88537, 40.773075, -74.005953, 40.734468, 'Credit', 24.9, 1.0, 5.18, 4.15, 35.23, '1705685161.48292', 'zldtc8AQM4EZ6A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 14, 0, tzinfo=datetime.timezone.utc), 1, 12.28, -74.004025, 40.711187, -73.865272, 40.770682, 'Credit', 30.9, 0.0, 6.18, 0.0, 37.08, '1705685161.48292', '7v5HoTuMX07J2Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 56, tzinfo=datetime.timezone.utc), 2, 13.21, -73.776712, 40.645347, -73.790095, 40.763657, 'Credit', 30.9, 0.0, 6.18, 0.0, 37.08, '1705685161.48292', 'DjZ7aD0fpp7ZQw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 56, tzinfo=datetime.timezone.utc), 2, 12.39, -73.863632, 40.769997, -73.974108, 40.759793, 'Credit', 30.9, 0.0, 6.18, 4.15, 41.23, '1705685161.48292', 'rD1S8/P2gXc/EA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 4, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 4, 34, tzinfo=datetime.timezone.utc), 1, 14.31, -73.991817, 40.75958, -74.036728, 40.617115, 'Credit', 32.9, 0.5, 6.68, 0.0, 40.08, '1705685161.48292', 'xLQn37GN0lAoww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 17, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 17, 54, tzinfo=datetime.timezone.utc), 1, 13.85, -73.863657, 40.769625, -74.008473, 40.734952, 'Credit', 34.9, 1.0, 7.18, 4.15, 47.23, '1705685161.48292', 'xzd16PWVtcQjQQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 11, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 12, 10, tzinfo=datetime.timezone.utc), 1, 1.21, 0.0, 0.0, 0.0, 0.0, 'Credit', 29.3, 0.0, 10.86, 0.0, 40.16, '1705685161.48292', 'p+EChYhZkFV7ng', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 18, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 18, 52, tzinfo=datetime.timezone.utc), 1, 9.8, -73.989018, 40.735103, -73.873028, 40.774417, 'Credit', 26.1, 1.0, 8.13, 4.15, 39.38, '1705685161.48292', 'hSlauY4G7+4TJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 18, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 18, 47, tzinfo=datetime.timezone.utc), 5, 5.05, -74.005302, 40.721108, -73.983675, 40.664563, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685161.48292', 'FBNjiZPLXz1ffA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 14, 44, tzinfo=datetime.timezone.utc), 1, 2.76, -73.959373, 40.763212, -73.991362, 40.749803, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685161.48292', 'xvFauMT/Zibn7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 11, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 11, 56, tzinfo=datetime.timezone.utc), 2, 5.39, -74.00685, 40.705703, -73.97434, 40.756857, 'Credit', 16.1, 0.0, 3.22, 0.0, 19.32, '1705685161.48292', 'Nnl5E1KpIVq8PA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 22, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 22, 24, tzinfo=datetime.timezone.utc), 1, 6.22, -73.993557, 40.749792, -73.981875, 40.677787, 'Credit', 18.1, 0.5, 3.72, 0.0, 22.32, '1705685161.48292', 'GaGqNcOPMqN/Lg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 23, 23, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 0, 3, tzinfo=datetime.timezone.utc), 1, 6.53, -73.98951, 40.739632, -73.907872, 40.775678, 'Credit', 18.1, 0.5, 3.72, 0.0, 22.32, '1705685161.48292', 'qJAwdbp6Usk9dA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 13, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 13, 53, tzinfo=datetime.timezone.utc), 1, 13.2, -74.011603, 40.70368, -73.872672, 40.774277, 'Credit', 29.7, 0.0, 5.94, 4.15, 39.79, '1705685161.48292', 'VrY2e5yGsjaaJQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 2, 39, 38, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 2, 46, 56, tzinfo=datetime.timezone.utc), 1, 1.8, -74.006268, 40.744273, -73.979829, 40.737366, 'Credit', 6.9, 0.0, 1.11, 0.0, 8.01, '1705685161.48292', 'dzT6SHM6+vLlWQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 7, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 7, 49, tzinfo=datetime.timezone.utc), 1, 1.64, -73.981467, 40.741125, -73.969488, 40.761063, 'Credit', 6.1, 0.0, 1.11, 0.0, 7.21, '1705685161.48292', 'plV3hRiFUhhGyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 4, 9, 16, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 30, tzinfo=datetime.timezone.utc), 4, 2.0, -73.980937, 40.769594, -73.958876, 40.781024, 'Credit', 9.3, 0.0, 1.86, 0.0, 11.16, '1705685161.48292', 'XcAApVED7Vfxcw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 8, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 8, 15, tzinfo=datetime.timezone.utc), 5, 1.51, -73.998765, 40.71986, -73.99049, 40.73193, 'Credit', 6.9, 0.0, 2.1, 0.0, 9.0, '1705685161.48292', 'mNvCCZozK9DbIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 10, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 10, 20, tzinfo=datetime.timezone.utc), 1, 3.58, -73.97186, 40.750988, -73.976922, 40.780125, 'Credit', 12.9, 0.0, 2.1, 0.0, 15.0, '1705685161.48292', 'ppQtsL5zZXS1cg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 9, 47, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 10, 9, tzinfo=datetime.timezone.utc), 2, 4.75, -73.973715, 40.784617, -74.00841, 40.73456, 'Credit', 14.9, 0.0, 2.1, 0.0, 17.0, '1705685161.48292', 'ocrtj/1c3/ihOw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 32, tzinfo=datetime.timezone.utc), 5, 3.91, -73.982793, 40.761472, -74.008493, 40.711742, 'Credit', 14.9, 1.0, 2.1, 0.0, 18.0, '1705685161.48292', 'L+D3m91RC+sFBA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 51, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 10, 8, tzinfo=datetime.timezone.utc), 1, 3.16, -73.967442, 40.80318, -73.976578, 40.763255, 'Credit', 11.7, 0.0, 2.35, 0.0, 14.05, '1705685161.48292', '5xPS8Ux9gtHllQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 9, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 9, 13, tzinfo=datetime.timezone.utc), 1, 5.99, -73.979137, 40.747125, -73.988573, 40.693463, 'Credit', 15.3, 0.0, 2.85, 0.0, 18.15, '1705685161.48292', 'OmaGL7ZbvQvl1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 30, tzinfo=datetime.timezone.utc), 5, 8.55, -73.782083, 40.64476, -73.759592, 40.599705, 'Credit', 20.9, 0.5, 3.1, 0.0, 24.5, '1705685161.48292', 'xh7OKHJHYXx4BQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 17, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 18, 19, tzinfo=datetime.timezone.utc), 1, 2.99, 0.0, 0.0, 0.0, 0.0, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685161.48292', 'HLg/LjtcevZKdA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 19, 44, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 20, 6, tzinfo=datetime.timezone.utc), 1, 4.14, -73.996185, 40.756292, -73.942667, 40.795982, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685161.48292', 'YJlvKvCxmVzPHQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 16, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 16, 37, tzinfo=datetime.timezone.utc), 1, 4.96, -73.947845, 40.771327, -73.98773, 40.719875, 'Credit', 14.5, 1.0, 3.1, 0.0, 18.6, '1705685161.48292', 'Uo54mrh20GMRsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 20, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 20, 54, tzinfo=datetime.timezone.utc), 1, 5.27, -73.994788, 40.750388, -73.939678, 40.798337, 'Credit', 14.9, 0.5, 3.85, 0.0, 19.25, '1705685161.48292', 'EshwwtMr7P8QsQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 21, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 22, 20, tzinfo=datetime.timezone.utc), 1, 7.91, -73.865587, 40.771065, -73.956163, 40.746045, 'Credit', 20.5, 0.5, 4.2, 0.0, 25.2, '1705685161.48292', 'XZXmiLQLKvHiPg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 19, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 49, tzinfo=datetime.timezone.utc), 1, 11.3, -73.991792, 40.690948, -73.871065, 40.77422, 'Credit', 27.7, 1.0, 4.2, 0.0, 32.9, '1705685161.48292', 'jQ2h/iop/I94RA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 12, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 19, 46, tzinfo=datetime.timezone.utc), 1, 7.55, -73.987433, 40.702505, -73.9841, 40.764583, 'Credit', 22.5, 1.0, 4.7, 0.0, 28.2, '1705685161.48292', 'LEkY8OW7hjRBTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 19, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 20, 9, tzinfo=datetime.timezone.utc), 1, 9.23, -74.001925, 40.715408, -74.033752, 40.614565, 'Credit', 22.5, 1.0, 4.7, 0.0, 28.2, '1705685161.48292', 'dNoOxXBygnDQIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 16, 29, tzinfo=datetime.timezone.utc), 1, 16.63, -73.968263, 40.755302, -73.782878, 40.643997, 'Credit', 45.0, 0.0, 5.45, 4.15, 54.6, '1705685161.48292', '3yAk95oGCPfV4A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 2, 15, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 2, 16, 47, tzinfo=datetime.timezone.utc), 1, 9.42, -73.994883, 40.739808, -73.937498, 40.847928, 'Credit', 28.5, 0.0, 5.7, 0.0, 34.2, '1705685161.48292', 'Q8lKKFHfPiCR7Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 0, 4, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 0, 27, tzinfo=datetime.timezone.utc), 1, 9.2, -73.871, 40.773658, -73.99713, 40.756397, 'Credit', 23.3, 0.5, 5.95, 4.15, 33.9, '1705685161.48292', 'oTD3UGjFtnj8Cw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 5, 39, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 6, 5, tzinfo=datetime.timezone.utc), 1, 16.16, -73.989273, 40.757522, -74.181695, 40.687712, 'Credit', 49.9, 0.5, 7.7, 8.0, 66.1, '1705685161.48292', 'oPU7CRaZBIx38w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 8, 55, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.81, -73.955512, 40.77678, -73.955997, 40.78548, 'Credit', 4.1, 0.0, 0.65, 0.0, 4.75, '1705685161.48292', '/+qOA/sxe1Cyxw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 10, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 10, 34, tzinfo=datetime.timezone.utc), 5, 0.58, -73.97627, 40.756452, -73.970012, 40.7617, 'Credit', 4.1, 0.0, 0.9, 0.0, 5.0, '1705685161.48292', '250jD9nyhAaJDA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 13, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 13, 19, 16, tzinfo=datetime.timezone.utc), 1, 0.87, -73.966697, 40.78446, -73.966697, 40.78446, 'Credit', 4.1, 0.0, 0.9, 0.0, 5.0, '1705685161.48292', 'ylLuutRhqyY9qQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 8, 59, tzinfo=datetime.timezone.utc), 1, 0.77, -73.984797, 40.760127, -73.971795, 40.75521, 'Credit', 6.1, 0.0, 0.9, 0.0, 7.0, '1705685161.48292', '44Sx93t+yeaq+Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 9, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 30, tzinfo=datetime.timezone.utc), 1, 1.96, -73.98051, 40.745218, -74.001165, 40.727683, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685161.48292', 'OH0zQCid3vueMA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 15, 6, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 15, 6, 38, tzinfo=datetime.timezone.utc), 1, 2.38, -73.990523, 40.755907, -73.99383, 40.729163, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685161.48292', 'ocbApBv6SSQRlQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 8, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 8, 27, tzinfo=datetime.timezone.utc), 5, 1.45, -73.966198, 40.756123, -73.976723, 40.743827, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685161.48292', 'T0PcdKxUkmCIsw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 8, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 9, 7, tzinfo=datetime.timezone.utc), 2, 1.22, -73.961537, 40.774468, -73.970107, 40.759705, 'Credit', 8.1, 0.0, 0.9, 0.0, 9.0, '1705685161.48292', 'vcVJXpZ6B2cS6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 17, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 17, 22, tzinfo=datetime.timezone.utc), 1, 1.51, -73.964202, 40.761388, -73.980487, 40.751237, 'Credit', 8.1, 1.0, 0.9, 0.0, 10.0, '1705685161.48292', 'IZJ7rtcaOsLu6Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 11, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 11, 41, tzinfo=datetime.timezone.utc), 1, 1.98, -73.991448, 40.75131, -73.991107, 40.728718, 'Credit', 10.1, 0.0, 0.9, 0.0, 11.0, '1705685161.48292', 'EcfgvxTWhQTZ0Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 19, 2, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 19, 16, tzinfo=datetime.timezone.utc), 1, 2.61, -73.956073, 40.778302, -73.988293, 40.769622, 'Credit', 10.1, 0.0, 0.9, 0.0, 11.0, '1705685161.48292', 'ekeprTI7FKJ2OQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 11, 59, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 12, 15, tzinfo=datetime.timezone.utc), 2, 4.1, -73.95894, 40.774775, -73.996357, 40.725382, 'Credit', 12.1, 0.0, 0.9, 0.0, 13.0, '1705685161.48292', 'JYySJIdgpwq7Zg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 15, 53, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 16, 14, tzinfo=datetime.timezone.utc), 1, 2.96, -73.99308, 40.692842, -74.000922, 40.723352, 'Credit', 12.1, 0.0, 0.9, 0.0, 13.0, '1705685161.48292', 'Mr0yT54zACCLVQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 14, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 14, 39, tzinfo=datetime.timezone.utc), 1, 1.11, -73.990555, 40.734965, -74.008013, 40.734198, 'Credit', 9.3, 0.0, 0.9, 0.0, 10.2, '1705685161.48292', 'H1Ky+id5DPDxVw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 11, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 44, tzinfo=datetime.timezone.utc), 1, 0.67, -73.984752, 40.759505, -73.990375, 40.751585, 'Credit', 4.1, 0.0, 1.05, 0.0, 5.15, '1705685161.48292', 'Sd+grXZ+4UjbBQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 19, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 19, 9, tzinfo=datetime.timezone.utc), 2, 0.46, -73.958503, 40.780918, -73.950963, 40.777725, 'Credit', 3.7, 0.0, 1.3, 0.0, 5.0, '1705685161.48292', 'hr6hd4bUAqfAwQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 22, 9, 14, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 9, 16, tzinfo=datetime.timezone.utc), 1, 0.55, -74.00743, 40.726672, -74.005173, 40.73392, 'Credit', 3.7, 0.0, 1.3, 0.0, 5.0, '1705685161.48292', 'BeRpWToKixArXw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 8, 16, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 8, 21, tzinfo=datetime.timezone.utc), 1, 1.41, -73.97882, 40.736578, -73.977095, 40.751788, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685161.48292', 'ZX0ajcn78DZL+g', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 9, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 9, 45, tzinfo=datetime.timezone.utc), 5, 0.51, -73.999718, 40.730018, -74.000057, 40.731542, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685161.48292', 'gPitxcR1pmipTg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 8, 30, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 8, 37, tzinfo=datetime.timezone.utc), 5, 1.12, -73.958513, 40.76867, -73.970495, 40.758892, 'Credit', 5.7, 0.0, 1.3, 0.0, 7.0, '1705685161.48292', 'wgYZYfApIMNhRA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 20, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 20, 28, tzinfo=datetime.timezone.utc), 1, 1.21, -73.992742, 40.743675, -74.00219, 40.739712, 'Credit', 5.7, 0.5, 1.3, 0.0, 7.5, '1705685161.48292', 'blizV307YXdYsA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 28, 21, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 28, 21, 40, tzinfo=datetime.timezone.utc), 1, 1.25, -73.979373, 40.724285, -73.997742, 40.733672, 'Credit', 5.7, 0.5, 1.3, 0.0, 7.5, '1705685161.48292', 'P4Vq9J42ZqJMSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 19, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 19, 29, tzinfo=datetime.timezone.utc), 1, 1.04, -73.973942, 40.756408, -73.972545, 40.74624, 'Credit', 5.7, 1.0, 1.3, 0.0, 8.0, '1705685161.48292', 'UfENgDe5MGJOzQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 17, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 17, 13, tzinfo=datetime.timezone.utc), 5, 1.75, -73.998865, 40.724867, -74.006875, 40.742567, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685161.48292', 'bcXlmyI/HfN/9w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 15, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 15, 42, tzinfo=datetime.timezone.utc), 1, 2.44, -73.99365, 40.742857, -73.988655, 40.769422, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685161.48292', 'j3eSoD7fjn8ztQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 9, 21, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 9, 29, tzinfo=datetime.timezone.utc), 1, 2.2, -73.994385, 40.690082, -74.003282, 40.713675, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685161.48292', 'vbLOlsM5Qdb0Dw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 8, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 8, 24, tzinfo=datetime.timezone.utc), 1, 2.69, -73.978477, 40.762567, -73.949168, 40.785243, 'Credit', 7.7, 0.0, 1.3, 0.0, 9.0, '1705685161.48292', 'WAs15K2uVf4Lww', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 4, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 4, 18, tzinfo=datetime.timezone.utc), 1, 1.83, -73.98861, 40.737128, -73.988703, 40.737162, 'Credit', 7.7, 0.5, 1.3, 0.0, 9.5, '1705685161.48292', 'LmMpyVwghjpPSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 22, 27, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 22, 38, tzinfo=datetime.timezone.utc), 1, 1.79, -74.010217, 40.720483, -74.001258, 40.741513, 'Credit', 7.7, 0.5, 1.3, 0.0, 9.5, '1705685161.48292', 'kBuhXkkrv5jPUA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 19, 6, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 20, tzinfo=datetime.timezone.utc), 1, 1.11, -73.975687, 40.761228, -73.982053, 40.770297, 'Credit', 7.7, 1.0, 1.3, 0.0, 10.0, '1705685161.48292', 'JUkaPEhyTf3DXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 8, 58, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 9, 16, tzinfo=datetime.timezone.utc), 1, 1.58, -73.993723, 40.75149, -73.972625, 40.753523, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685161.48292', '8dAXXbrf+cfZdg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 11, 49, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 12, 4, tzinfo=datetime.timezone.utc), 1, 1.99, -73.949722, 40.77673, -73.968125, 40.79405, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685161.48292', 'cYcqvv5GolFDZQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 7, 19, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 7, 31, tzinfo=datetime.timezone.utc), 1, 3.01, -73.954827, 40.773038, -73.98493, 40.763278, 'Credit', 9.7, 0.0, 1.3, 0.0, 11.0, '1705685161.48292', 'kpQ5/henlGSB4w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 14, 46, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 15, 13, tzinfo=datetime.timezone.utc), 5, 1.94, -73.990088, 40.751705, -73.972055, 40.763685, 'Credit', 13.7, 0.0, 1.3, 0.0, 15.0, '1705685161.48292', '9+InzmNzFeIAmw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 16, 15, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 16, 15, 31, tzinfo=datetime.timezone.utc), 1, 1.47, -73.955978, 40.785505, -73.96579, 40.769435, 'Credit', 6.5, 0.0, 1.3, 0.0, 7.8, '1705685161.48292', 'Mt8MZ0OF4eH42Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 10, 56, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 11, 4, tzinfo=datetime.timezone.utc), 1, 1.88, -73.98818, 40.731925, -73.994698, 40.750515, 'Credit', 7.3, 0.0, 1.3, 0.0, 8.6, '1705685161.48292', 'LUlNk6frbaUR1w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 3, 36, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 3, 43, tzinfo=datetime.timezone.utc), 1, 2.26, -73.990047, 40.73512, -74.001873, 40.709398, 'Credit', 7.3, 0.5, 1.3, 0.0, 9.1, '1705685161.48292', 'FjA+LsFNyKLopA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 30, 20, 0, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 30, 20, 15, tzinfo=datetime.timezone.utc), 1, 2.03, -73.981822, 40.77045, -73.98583, 40.749977, 'Credit', 9.3, 0.5, 1.3, 0.0, 11.1, '1705685161.48292', 'NZ4uvT0AwI+sRQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 6, 0, 22, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 0, 32, tzinfo=datetime.timezone.utc), 1, 2.84, -73.95233, 40.783878, -73.986202, 40.767293, 'Credit', 8.9, 0.5, 1.3, 0.0, 10.7, '1705685161.48292', 'OyvYmL57WLrgtw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 23, 37, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 23, 41, tzinfo=datetime.timezone.utc), 2, 1.61, -73.980415, 40.734237, -73.968015, 40.753417, 'Credit', 5.7, 0.5, 1.8, 0.0, 8.0, '1705685161.48292', 'SQk2yTg+ng5jkA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 9, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 18, tzinfo=datetime.timezone.utc), 5, 1.96, -74.004212, 40.742713, -73.977102, 40.744185, 'Credit', 7.7, 0.5, 1.8, 0.0, 10.0, '1705685161.48292', '6RqbSRbmuzTvew', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 14, 14, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 14, 14, 18, tzinfo=datetime.timezone.utc), 1, 2.54, -73.981773, 40.768482, -73.972663, 40.798345, 'Credit', 9.7, 0.0, 1.8, 0.0, 11.5, '1705685161.48292', 'UB50jQ9yCFrklA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 25, 0, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 25, 0, 30, tzinfo=datetime.timezone.utc), 1, 2.91, -73.980943, 40.76541, -73.993657, 40.730517, 'Credit', 9.7, 0.5, 1.8, 0.0, 12.0, '1705685161.48292', 'hQqWLotX06fjYA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 7, 23, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 7, 23, 29, tzinfo=datetime.timezone.utc), 1, 2.77, -73.968937, 40.801532, -73.981492, 40.768593, 'Credit', 9.7, 0.5, 1.8, 0.0, 12.0, '1705685161.48292', 'ckGp3n6rn8qnJg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 23, 31, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 23, 47, tzinfo=datetime.timezone.utc), 2, 4.28, -73.981867, 40.729413, -73.946178, 40.727848, 'Credit', 13.7, 0.5, 1.8, 0.0, 16.0, '1705685161.48292', '4FSOOWHBsxG1/Q', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 3, 1, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 3, 27, tzinfo=datetime.timezone.utc), 1, 11.6, -73.98823, 40.719975, -73.937877, 40.845157, 'Credit', 27.7, 0.5, 1.8, 0.0, 30.0, '1705685161.48292', 'AHs/Hxy9JIc/jg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 10, 9, 24, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 10, 9, 43, tzinfo=datetime.timezone.utc), 1, 2.43, -73.971285, 40.798025, -73.96223, 40.773562, 'Credit', 10.9, 0.0, 1.8, 0.0, 12.7, '1705685161.48292', '1uhzSQu+SJpprQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 19, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 19, 17, tzinfo=datetime.timezone.utc), 1, 1.05, -74.001585, 40.746113, -74.008532, 40.733433, 'Credit', 8.1, 1.0, 1.8, 0.0, 10.9, '1705685161.48292', 'RXywnFoSwqhlUw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 9, 0, 8, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 9, 0, 28, tzinfo=datetime.timezone.utc), 5, 5.73, -73.934643, 40.79742, -73.939625, 40.748895, 'Credit', 16.9, 0.5, 3.48, 0.0, 20.88, '1705685161.48292', 'dxBrT2xEU7hKzw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 19, 13, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 19, 39, tzinfo=datetime.timezone.utc), 2, 5.84, -74.015898, 40.711177, -73.94722, 40.709877, 'Credit', 18.9, 1.0, 3.98, 0.0, 23.88, '1705685161.48292', 'YhWyyOoi0Bfpyg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 23, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 23, 37, tzinfo=datetime.timezone.utc), 5, 5.31, -73.98692, 40.745372, -73.939802, 40.707465, 'Credit', 17.7, 0.5, 5.46, 0.0, 23.66, '1705685161.48292', 'y65gBrJG2sJbZg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 27, 9, 26, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 27, 9, 50, tzinfo=datetime.timezone.utc), 5, 11.33, -73.865727, 40.76886, -73.98444, 40.68685, 'Credit', 27.3, 0.0, 5.46, 0.0, 32.76, '1705685161.48292', 'exho9nPrPs0PDQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 6, 4, 5, 28, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 6, 4, 22, 46, tzinfo=datetime.timezone.utc), 1, 6.3, -74.000644, 40.72983, -73.964923, 40.65195, 'Credit', 16.9, 0.0, 2.61, 0.0, 19.51, '1705685161.48292', 'B/W0RCJ9gtiTmA', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 10, 34, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 10, 58, tzinfo=datetime.timezone.utc), 1, 6.5, -74.008862, 40.713838, -73.969212, 40.78611, 'Credit', 19.3, 0.0, 3.86, 0.0, 23.16, '1705685161.48292', 'NAZOPYbl2KXR1A', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 4, 18, 29, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 4, 19, 6, tzinfo=datetime.timezone.utc), 1, 4.45, -73.992278, 40.724198, -73.982395, 40.77182, 'Credit', 20.1, 1.0, 4.22, 0.0, 25.32, '1705685161.48292', 'ude5NZbL/bc+qw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 19, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 20, 20, tzinfo=datetime.timezone.utc), 1, 6.59, -73.966763, 40.803992, -73.90217, 40.77659, 'Credit', 20.1, 1.0, 4.22, 4.15, 29.47, '1705685161.48292', '4n6RnLgxGueB3w', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 29, 7, 33, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 29, 8, 6, tzinfo=datetime.timezone.utc), 1, 9.19, -73.954047, 40.774757, -73.972683, 40.698102, 'Credit', 26.1, 0.0, 5.22, 0.0, 31.32, '1705685161.48292', 'Vyrh6dZDYBjkWw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 3, 0, 40, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 3, 1, 13, tzinfo=datetime.timezone.utc), 1, 10.25, -73.98174, 40.67921, -73.973077, 40.797845, 'Credit', 28.1, 0.5, 5.72, 0.0, 34.32, '1705685161.48292', 'hEPMQAgrgoCLsg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 11, 13, 23, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 11, 13, 45, tzinfo=datetime.timezone.utc), 1, 11.5, -73.974245, 40.748962, -73.865098, 40.770528, 'Credit', 25.7, 0.0, 5.97, 4.15, 35.82, '1705685161.48292', 'PQeW0BqfIP7Lcg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 24, 18, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 24, 19, 3, tzinfo=datetime.timezone.utc), 1, 5.44, -73.979862, 40.76165, -74.015665, 40.70951, 'Credit', 26.9, 1.0, 6.97, 0.0, 34.87, '1705685161.48292', 'PVAgIasDEFS3pg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 1, 17, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 1, 36, tzinfo=datetime.timezone.utc), 2, 5.68, -73.988, 40.744093, -73.922827, 40.766527, 'Credit', 15.7, 0.5, 3.24, 0.0, 19.44, '1705685161.48292', 'Vc/0uOXd7J9oXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 19, 22, 25, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 19, 22, 40, tzinfo=datetime.timezone.utc), 1, 6.03, -73.949558, 40.780593, -73.98754, 40.719948, 'Credit', 15.7, 0.5, 3.24, 0.0, 19.44, '1705685161.48292', 'U1bkBbY8nJYMIg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 48, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 21, tzinfo=datetime.timezone.utc), 1, 8.64, -73.870963, 40.77384, -73.992653, 40.74763, 'Credit', 24.9, 0.0, 4.98, 4.15, 34.03, '1705685161.48292', '51tcO5tAh4k4Vg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 17, 43, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 18, 5, tzinfo=datetime.timezone.utc), 1, 6.45, -74.007137, 40.70373, -73.975978, 40.76566, 'Credit', 18.1, 1.0, 5.73, 0.0, 24.83, '1705685161.48292', '8JfzaXfcqf5xiQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 26, 19, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 26, 19, 43, tzinfo=datetime.timezone.utc), 1, 11.49, -73.874532, 40.774163, -73.982805, 40.75586, 'Credit', 28.9, 1.0, 5.98, 4.15, 40.03, '1705685161.48292', '6wA8kdosk32PXA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 18, 8, 10, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 18, 8, 58, tzinfo=datetime.timezone.utc), 1, 11.98, -73.872347, 40.773807, -73.981275, 40.756152, 'Credit', 34.9, 0.0, 6.98, 4.15, 46.03, '1705685161.48292', '76Kp+vsj5t1GXQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 21, 11, 45, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 11, 59, 21, tzinfo=datetime.timezone.utc), 1, 4.3, -73.981307, 40.724954, -73.959148, 40.774587, 'Credit', 12.5, 0.0, 1.87, 0.0, 14.37, '1705685161.48292', '229Ux2a+b3CUhw', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 21, 16, 50, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 21, 17, 20, tzinfo=datetime.timezone.utc), 2, 15.47, -73.794193, 40.657042, -73.964097, 40.584617, 'Credit', 34.9, 0.0, 8.73, 0.0, 43.63, '1705685161.48292', '3jIqTrcxdnJWFA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 17, 9, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 17, 10, 7, tzinfo=datetime.timezone.utc), 1, 14.13, -73.866008, 40.769452, -74.016063, 40.715197, 'Credit', 34.1, 0.0, 10.23, 4.15, 48.48, '1705685161.48292', '4XRMdMGFPiYcaA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 14, 57, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 15, 26, tzinfo=datetime.timezone.utc), 1, 5.21, -73.994482, 40.734678, -73.988418, 40.667672, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685161.48292', '7T1Y29pI3dMDAQ', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 12, 7, 15, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 12, 7, 40, tzinfo=datetime.timezone.utc), 2, 6.36, -74.011645, 40.707945, -73.9736, 40.76117, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685161.48292', 'h/O0o8A3z2JdSw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 1, 14, 11, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 1, 14, 25, tzinfo=datetime.timezone.utc), 5, 7.09, -73.989213, 40.765628, -73.942962, 40.847323, 'Credit', 18.1, 0.0, 3.62, 0.0, 21.72, '1705685161.48292', '2L0wPhwKeilpJA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 2, 3, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 2, 20, tzinfo=datetime.timezone.utc), 1, 5.78, -73.98289, 40.738928, -73.902377, 40.745582, 'Credit', 15.3, 0.5, 4.74, 0.0, 20.54, '1705685161.48292', 'TlVg7dp+P2pddA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 5, 11, 32, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 5, 12, 1, tzinfo=datetime.timezone.utc), 1, 9.03, -74.015842, 40.715382, -73.959378, 40.78108, 'Credit', 23.7, 0.0, 4.74, 0.0, 28.44, '1705685161.48292', '+d2WGf4X6byjqw', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 20, 13, 52, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 20, 14, 20, tzinfo=datetime.timezone.utc), 2, 8.82, -73.871898, 40.77393, -73.962298, 40.775457, 'Credit', 23.7, 0.0, 4.74, 4.15, 32.59, '1705685161.48292', '3h6FepSDzd7wcA', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('VTS', datetime.datetime(2009, 6, 8, 16, 54, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 8, 17, 24, tzinfo=datetime.timezone.utc), 2, 10.5, -73.87245, 40.774232, -73.978793, 40.760852, 'Credit', 27.7, 1.0, 5.74, 5.0, 39.44, '1705685161.48292', 'LEUsdVAYcbfrXg', None), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n",
            "Row(('CMT', datetime.datetime(2009, 6, 22, 13, 32, 5, tzinfo=datetime.timezone.utc), datetime.datetime(2009, 6, 22, 13, 36, 43, tzinfo=datetime.timezone.utc), 1, 1.1, -73.960316, 40.77629, -73.974731, 40.785031, 'Credit', 5.3, 0.0, 1.06, 0.0, 6.36, '1705685161.48292', 'kGUncXysKwpyvQ', 0.0), {'vendor_name': 0, 'trip_pickup_date_time': 1, 'trip_dropoff_date_time': 2, 'passenger_count': 3, 'trip_distance': 4, 'start_lon': 5, 'start_lat': 6, 'end_lon': 7, 'end_lat': 8, 'payment_type': 9, 'fare_amt': 10, 'surcharge': 11, 'tip_amt': 12, 'tolls_amt': 13, 'total_amt': 14, '_dlt_load_id': 15, '_dlt_id': 16, 'store_and_forward': 17})\n"
          ]
        }
      ]
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Other demos\n",
        "Find more demos in this repo, or look on our blog for multiple community demos\n",
        "* https://github.com/dlt-hub/dlt_demos\n",
        "* https://dlthub.com/docs/blog"
      ],
      "metadata": {
        "id": "bftPmKJYS_7J"
      }
    },
    {
      "cell_type": "markdown",
      "source": [
        "## Docs Links\n",
        "\n",
        "You will find more info about advanced capabilities of dlt [in this build a pipeline guide](**https**://dlthub.com/docs/build-a-pipeline-tutorial)\n",
        "\n",
        "If you would like to join our community, find the slack join link at the top of the docs.\n",
        "\n"
      ],
      "metadata": {
        "id": "5aPjk0O3S_Ag"
      }
    }
  ]
}